summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla30317.cs
blob: 00a6a8841d2dd36812441797f378c7d2f61615d9 (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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
using System;

using Xamarin.Forms.CustomAttributes;
using Xamarin.Forms.Internals;
#if UITEST
using Xamarin.UITest;
using NUnit.Framework;
using Xamarin.UITest.Android;
using System.Collections.Generic;
#endif

namespace Xamarin.Forms.Controls
{
	[Preserve (AllMembers = true)]
	[Issue (IssueTracker.Bugzilla, 30317, "https://bugzilla.xamarin.com/show_bug.cgi?id=30137")]
	public class Bugzilla30317 : TestNavigationPage // or TestMasterDetailPage, etc ...
	{
		[Preserve (AllMembers = true)]
		public class Bugzilla30317ListItem 
		{
			public string Label { get; set; }
		}

		[Preserve (AllMembers = true)]
		public class Bugzilla30317ListCell : ViewCell
		{
			public Bugzilla30317ListCell()
			{
				var label = new Label (); ;
				label.SetBinding(Label.TextProperty, "Label");
				View = label;
			}
		}

		[Preserve (AllMembers = true)]
		public class Bugzilla30317Page1 : ContentPage
		{
			ListView _listView;

			public Bugzilla30317Page1 ()
			{
				AutomationId = "PageOne";
				Title = "Set ItemSource On Appearing";

				_listView = new ListView ();

				_listView.ItemTemplate = new DataTemplate(typeof(Bugzilla30317ListCell));

				var nextPageButton = new Button {
					AutomationId = "GoToPageTwoButton",
					Text = "Go Page 2",
					Command = new Command (async () => {
						await Navigation.PushAsync (new Bugzilla30317Page2 ());
					})
				};

				Content =  new StackLayout { Children = { nextPageButton, _listView } };
			}

			protected override void OnAppearing ()
			{
				base.OnAppearing ();

				_listView.ItemsSource = new Bugzilla30317ListItem[] {
					new Bugzilla30317ListItem { Label = "PageOneItem1" },
					new Bugzilla30317ListItem { Label = "PageOneItem2" },
					new Bugzilla30317ListItem { Label = "PageOneItem3" },
					new Bugzilla30317ListItem { Label = "PageOneItem4" },
					new Bugzilla30317ListItem { Label = "PageOneItem5" },
				};
			}
		}

		[Preserve (AllMembers = true)]
		public class Bugzilla30317Page2 : ContentPage
		{
			public Bugzilla30317Page2 ()
			{
				AutomationId = "PageTwo";
				Title = "Set ItemSource in ctor";

				var listView = new ListView ();

				listView.ItemTemplate = new DataTemplate(typeof(Bugzilla30317ListCell));
				listView.ItemsSource = new Bugzilla30317ListItem[] {
					new Bugzilla30317ListItem { Label = "PageTwoItem1" },
					new Bugzilla30317ListItem { Label = "PageTwoItem2" },
					new Bugzilla30317ListItem { Label = "PageTwoItem3" },
					new Bugzilla30317ListItem { Label = "PageTwoItem4" },
					new Bugzilla30317ListItem { Label = "PageTwoItem5" },
				};

				var nextPageButton = new Button {
					AutomationId = "GoToPageThreeButton",
					Text = "Go Page 3",
					Command = new Command (async () => {
						await Navigation.PushModalAsync (new Bugzilla30317Page3 ());
					})
				};

				Content =  new StackLayout { Children = { nextPageButton, listView } };
			}
		}

		[Preserve (AllMembers = true)]
		public class Bugzilla30317Page3TabOne : ContentPage
		{
			public Bugzilla30317Page3TabOne ()
			{
				AutomationId = "TabbedPageOne";
				Title = "TabOneCtor";

				var listView = new ListView ();

				listView.ItemTemplate = new DataTemplate(typeof(Bugzilla30317ListCell));
				listView.ItemsSource = new Bugzilla30317ListItem[] {
					new Bugzilla30317ListItem { Label = "PageThreeTabOneItem1" },
					new Bugzilla30317ListItem { Label = "PageThreeTabOneItem2" },
					new Bugzilla30317ListItem { Label = "PageThreeTabOneItem3" },
					new Bugzilla30317ListItem { Label = "PageThreeTabOneItem4" },
					new Bugzilla30317ListItem { Label = "PageThreeTabOneItem5" },
				};

				Content = listView;
			}
		}

		[Preserve (AllMembers = true)]
		public class Bugzilla30317Page3TabTwo : ContentPage
		{
			ListView _listView;

			public Bugzilla30317Page3TabTwo ()
			{
				AutomationId = "TabbedPageTwo";
				Title = "TabTwoOnAppearing";

				_listView = new ListView ();

				_listView.ItemTemplate = new DataTemplate(typeof(Bugzilla30317ListCell));
				

				Content = _listView;

			}

			protected override void OnAppearing ()
			{
				base.OnAppearing ();

				_listView.ItemsSource = new Bugzilla30317ListItem[] {
					new Bugzilla30317ListItem { Label = "PageThreeTabTwoItem1" },
					new Bugzilla30317ListItem { Label = "PageThreeTabTwoItem2" },
					new Bugzilla30317ListItem { Label = "PageThreeTabTwoItem3" },
					new Bugzilla30317ListItem { Label = "PageThreeTabTwoItem4" },
					new Bugzilla30317ListItem { Label = "PageThreeTabTwoItem5" },
				};
			}
		}

		[Preserve (AllMembers = true)]
		public class Bugzilla30317Page3 : TabbedPage
		{
			public Bugzilla30317Page3 ()
			{
				Children.Add (new Bugzilla30317Page3TabOne ());
				Children.Add (new Bugzilla30317Page3TabTwo ());
			}
		}

		protected override void Init ()
		{
			Navigation.PushAsync (new Bugzilla30317Page1 ());
		}

#if UITEST
		[Test]
		public void Bugzilla30317ItemSourceOnAppearingContentPage ()
		{
			if (RunningApp is AndroidApp) {
				RunningApp.Screenshot ("I am at Bugzilla30317");
				RunningApp.WaitForElement (q => q.Marked ("PageOne"));
				RunningApp.Screenshot ("I see Page 1");
	
				RunningApp.WaitForElement (q => q.Marked ("PageOneItem1"));
				RunningApp.TouchAndHold (q => q.Marked ("PageOneItem1"));
		
				RunningApp.WaitForElement (q => q.Marked ("PageOneItem5"));
				RunningApp.TouchAndHold (q => q.Marked ("PageOneItem5"));

				RunningApp.Screenshot ("I did not crash");
			} else {
				Assert.Inconclusive ("Not run on iOS");	
			}
		}

		[Test]
		public void Bugzilla30317ItemSourceCtorContentPage ()
		{
			if (RunningApp is AndroidApp) {
				RunningApp.WaitForElement (q => q.Marked ("GoToPageTwoButton"));
				RunningApp.Tap (q => q.Marked ("GoToPageTwoButton"));

				RunningApp.WaitForElement (q => q.Marked ("PageTwo"));
				RunningApp.Screenshot ("I see Page 2");
				
				RunningApp.WaitForElement (q => q.Marked ("PageTwoItem1"));
				RunningApp.TouchAndHold (q => q.Marked ("PageTwoItem1"));
				
				RunningApp.WaitForElement (q => q.Marked ("PageTwoItem5"));
				RunningApp.TouchAndHold (q => q.Marked ("PageTwoItem5"));
				
				RunningApp.Screenshot ("I did not crash");
			} else {
				Assert.Inconclusive ("Not run on iOS");	
			}
		}

		[Test]
		public void Bugzilla30317ItemSourceTabbedPage ()
		{
			if (RunningApp is AndroidApp) {
				RunningApp.WaitForElement (q => q.Marked ("GoToPageTwoButton"));
				RunningApp.Tap (q => q.Marked ("GoToPageTwoButton"));

				RunningApp.Screenshot ("I see Page 2");
				RunningApp.WaitForElement (q => q.Marked ("PageTwo"));

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

				RunningApp.Screenshot ("I see TabbedPage One");
				RunningApp.WaitForElement (q => q.Marked ("TabOneCtor"));

				RunningApp.WaitForElement (q => q.Marked ("PageThreeTabOneItem1"));
				RunningApp.TouchAndHold (q => q.Marked ("PageThreeTabOneItem1"));
				RunningApp.WaitForElement (q => q.Marked ("PageThreeTabOneItem1"));

				RunningApp.WaitForElement (q => q.Marked ("PageThreeTabOneItem5"));
				RunningApp.TouchAndHold (q => q.Marked ("PageThreeTabOneItem5"));
				RunningApp.WaitForElement (q => q.Marked ("PageThreeTabOneItem5"));

				RunningApp.Screenshot ("I see TabbedPage Two");
				RunningApp.WaitForElement (q => q.Marked ("TabTwoOnAppearing"));
				RunningApp.Tap (q => q.Marked ("TabTwoOnAppearing"));

				RunningApp.WaitForElement (q => q.Marked ("PageThreeTabTwoItem1"));
				RunningApp.TouchAndHold (q => q.Marked ("PageThreeTabTwoItem1"));
				RunningApp.WaitForElement (q => q.Marked ("PageThreeTabTwoItem1"));

				RunningApp.WaitForElement (q => q.Marked ("PageThreeTabTwoItem5"));
				RunningApp.TouchAndHold (q => q.Marked ("PageThreeTabTwoItem5"));
				RunningApp.WaitForElement (q => q.Marked ("PageThreeTabTwoItem5"));
			} else {
				Assert.Inconclusive ("Not run on iOS");	
			}
		}
#endif
	}
}