summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls/TestCases.cs
blob: fc601024d8ec7562dc112e2a9580374933598871 (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
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Threading.Tasks;
using Xamarin.Forms.Controls.TestCasesPages;
using Xamarin.Forms.CustomAttributes;

namespace Xamarin.Forms.Controls
{
	public static class TestCases
	{
		public class TestCaseScreen : TableView
		{
			public static Dictionary<string, Action> PageToAction = new Dictionary<string, Action> ();

			static TextCell MakeIssueCell (string text, string detail, Action tapped)
			{
				PageToAction[text] = tapped;
				if (detail != null)
					PageToAction[detail] = tapped;

				var cell = new TextCell { Text = text, Detail = detail };
				cell.Tapped += (s, e) => tapped();
				return cell;
			}

			Action ActivatePageAndNavigate (IssueAttribute issueAttribute, Type type)
			{
				Action navigationAction = null;

				if (issueAttribute.NavigationBehavior == NavigationBehavior.PushAsync) {
					return async () => {
						var page = ActivatePage (type);
						TrackOnInsights (page);
						await Navigation.PushAsync (page);
					};
				}

				if (issueAttribute.NavigationBehavior == NavigationBehavior.PushModalAsync) {
					return async () => {
						var page = ActivatePage (type);
						TrackOnInsights (page);
						await Navigation.PushModalAsync (page);
					};
				}

				if (issueAttribute.NavigationBehavior == NavigationBehavior.Default) {
					return async () => {
						var page = ActivatePage (type);
						TrackOnInsights (page);
						if (page is ContentPage || page is CarouselPage) {
							
							await Navigation.PushAsync (page);

						} else {
							await Navigation.PushModalAsync (page);
						}
					}; 
				}

				if (issueAttribute.NavigationBehavior == NavigationBehavior.SetApplicationRoot) {
					return () => {
						var page = ActivatePage (type);
						TrackOnInsights (page);
						Application.Current.MainPage = page;
					};
				}

				return navigationAction;
			}

			static void TrackOnInsights (Page page)
			{
				if (Insights.IsInitialized) {
					Insights.Track ("Navigation", new Dictionary<string, string> {
						{
							"Pushing",
							page.GetType ().Name
						}
					});
				}
			}

			Page ActivatePage (Type type)
			{
				var page = Activator.CreateInstance (type) as Page;
				if (page == null) {
					throw new InvalidCastException ("Issue must be of type Page");
				}
				return page;
			}

			public TestCaseScreen ()
			{
				AutomationId = "TestCasesIssueList";

				Intent = TableIntent.Settings;

				var assembly = typeof (TestCases).GetTypeInfo ().Assembly;

				var issueModels = 
					from typeInfo in assembly.DefinedTypes.Select (o => o.AsType ().GetTypeInfo ())
					where typeInfo.GetCustomAttribute<IssueAttribute> () != null
					let attribute = (IssueAttribute)typeInfo.GetCustomAttribute<IssueAttribute> ()
					select new {
						IssueTracker = attribute.IssueTracker,
						IssueNumber = attribute.IssueNumber,
						Name = attribute.IssueTracker.ToString ().Substring(0, 1) + attribute.IssueNumber.ToString (),
						Description = attribute.Description,
						Action = ActivatePageAndNavigate (attribute, typeInfo.AsType ())
					};

				var root = new TableRoot ();
				var section = new TableSection ("Bug Repro");
				root.Add (section);

				var duplicates = new HashSet<string> ();
				issueModels.ForEach (im => {
					if (duplicates.Contains (im.Name) && !IsExempt (im.Name)) {
						throw new NotSupportedException ("Please provide unique tracker + issue number combo: " + im.IssueTracker.ToString () + im.IssueNumber.ToString ());
					} else {
						duplicates.Add (im.Name);
					}
				});

				var githubIssueCells = 
					from issueModel in issueModels
					where issueModel.IssueTracker == IssueTracker.Github
					orderby issueModel.IssueNumber descending
					select MakeIssueCell (issueModel.Name, issueModel.Description, issueModel.Action);

				var bugzillaIssueCells = 
					from issueModel in issueModels
					where issueModel.IssueTracker == IssueTracker.Bugzilla
					orderby issueModel.IssueNumber descending
					select MakeIssueCell (issueModel.Name, issueModel.Description, issueModel.Action);

				var untrackedIssueCells = 
					from issueModel in issueModels
					where issueModel.IssueTracker == IssueTracker.None
					orderby issueModel.Description 
					select MakeIssueCell (issueModel.Name, issueModel.Description, issueModel.Action);

				var issueCells = bugzillaIssueCells.Concat (githubIssueCells).Concat (untrackedIssueCells);

				foreach (var issueCell in issueCells) {
					section.Add (issueCell);
				} 

				Root = root;
			}

			// Legacy reasons, do not add to this list
			// Going forward, make sure only one Issue attribute exist for a Tracker + Issue number pair
			bool IsExempt (string name)
			{
				if (name == "G1461" || 
					name == "G342" || 
					name == "G1305" || 
					name == "G1653" || 
					name == "N0")
					return true;
				else
					return false;
			}
		}

		public static NavigationPage GetTestCases ()
		{
			var rootLayout = new StackLayout ();
			
			var testCasesRoot = new ContentPage {
				Title = "Bug Repro's",
				Content = rootLayout
			};

			var searchBar = new SearchBar() {
				AutomationId = "SearchBarGo"
			};

			var searchButton = new Button () {
				Text = "Search And Go To Issue",
				AutomationId = "SearchButton",
				Command = new Command (() => {
					try {
						TestCaseScreen.PageToAction[searchBar.Text] ();
					} catch (Exception e) {
						System.Diagnostics.Debug.WriteLine (e.Message);
					}
					 
				})
			};

			var leaveTestCasesButton = new Button {
				AutomationId = "GoBackToGalleriesButton",
				Text = "Go Back to Galleries",
				Command = new Command (() => testCasesRoot.Navigation.PopModalAsync ())
			};

			rootLayout.Children.Add (leaveTestCasesButton);
			rootLayout.Children.Add (searchBar);
			rootLayout.Children.Add (searchButton);
			rootLayout.Children.Add (new TestCaseScreen ());

			return new NavigationPage (testCasesRoot) {
				Title = Device.OnPlatform ("Test Cases", "Test Cases", "Tests")
			};
		}
	}

}