summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla46458.cs
blob: 2fde0e0dfd80a44f9fccb548ad4f64b3a31fe046 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
using Xamarin.Forms.CustomAttributes;
using Xamarin.Forms.Internals;

#if UITEST
using Xamarin.Forms.Core.UITests;
using Xamarin.UITest;
using NUnit.Framework;
#endif

namespace Xamarin.Forms.Controls.Issues
{
#if UITEST
	[Category(UITestCategories.InputTransparent)]
	[Category(UITestCategories.IsEnabled)]
#endif

	[Preserve(AllMembers = true)]
	[Issue(IssueTracker.Bugzilla, 46458, "Grid.IsEnabled property is not working", PlatformAffected.Android)]
	public class Bugzilla46458 : TestContentPage 
	{
		protected override void Init()
		{
			var parentGrid = new Grid
			{
				BackgroundColor = Color.Yellow
			};
			parentGrid.RowDefinitions.Add(new RowDefinition());
			parentGrid.RowDefinitions.Add(new RowDefinition());

			var grid = new Grid
			{
				IsEnabled = false,
				BackgroundColor = Color.Red
			};

			grid.RowDefinitions.Add(new RowDefinition());
			grid.RowDefinitions.Add(new RowDefinition());
			grid.RowDefinitions.Add(new RowDefinition());

			var label = new Label
			{
				HorizontalOptions = LayoutOptions.Center,
				Text = "Success"
			};
			Grid.SetRow(label, 0);
			grid.Children.Add(label);

			var entry = new Entry
			{
				HorizontalOptions = LayoutOptions.Center,
				HeightRequest = 50,
				WidthRequest = 250,
				Placeholder = "Placeholder",
				AutomationId = "entry"
			};
			Grid.SetRow(entry, 1);
			entry.Focused += (sender, args) => { label.Text = "Fail"; };
			grid.Children.Add(entry);

			var button = new Button
			{
				WidthRequest = 250,
				HeightRequest = 50,
				BackgroundColor = Color.Black,
				TextColor = Color.White,
				Text = "Click",
				HorizontalOptions = LayoutOptions.Center,
				Command = new Command(() => { label.Text = "Fail"; }),
				AutomationId = "button"
			};
			Grid.SetRow(button, 2);
			grid.Children.Add(button);

			parentGrid.Children.Add(grid);
			Grid.SetRow(grid, 1);

			var button1 = new Button
			{
				WidthRequest = 250,
				HeightRequest = 50,
				BackgroundColor = Color.Black,
				TextColor = Color.White,
				Text = "Test transparency",
				HorizontalOptions = LayoutOptions.Center,
				AutomationId = "button1"
			};
			button1.Command = new Command((sender) =>
			{
				grid.IsEnabled = true;
				grid.InputTransparent = true;
				button1.Text = "Clicked";
			});
			Grid.SetRow(button1, 0);
			parentGrid.Children.Add(button1);

			Content = parentGrid;
		}

#if UITEST
		[Test]
		public void GridIsEnabled()
		{
			RunningApp.WaitForElement(q => q.Marked("entry"));
			RunningApp.Tap(q => q.Marked("entry"));
			RunningApp.WaitForElement(q => q.Marked("Success"));

			RunningApp.WaitForElement(q => q.Marked("button"));
			RunningApp.Tap(q => q.Marked("button"));
			RunningApp.WaitForElement(q => q.Marked("Success"));

			RunningApp.WaitForElement(q => q.Marked("button1"));
			RunningApp.Tap(q => q.Marked("button1"));
			RunningApp.WaitForElement(q => q.Marked("Clicked"));

			RunningApp.WaitForElement(q => q.Marked("entry"));
			RunningApp.Tap(q => q.Marked("entry"));
			RunningApp.WaitForElement(q => q.Marked("Success"));

			RunningApp.WaitForElement(q => q.Marked("button"));
			RunningApp.Tap(q => q.Marked("button"));
			RunningApp.WaitForElement(q => q.Marked("Success"));
		}
#endif
	}
}