This repository was archived by the owner on May 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathApp.cs
251 lines (203 loc) · 6.77 KB
/
App.cs
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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.IO;
using System.Reflection;
using System.Threading.Tasks;
using Xamarin.Forms.Controls.GalleryPages.RadioButtonGalleries;
using Xamarin.Forms.Controls.Issues;
using Xamarin.Forms.Internals;
using Xamarin.Forms.PlatformConfiguration;
using Xamarin.Forms.PlatformConfiguration.iOSSpecific;
using Xamarin.Forms.PlatformConfiguration.WindowsSpecific;
namespace Xamarin.Forms.Controls
{
public class App : Application
{
public const string AppName = "XamarinFormsControls";
// ReSharper disable once InconsistentNaming
public static int IOSVersion = -1;
public static List<string> AppearingMessages = new List<string>();
static Dictionary<string, string> s_config;
readonly ITestCloudService _testCloudService;
public const string DefaultMainPageId = "ControlGalleryMainPage";
public static bool PreloadTestCasesIssuesList { get; set; } = true;
public App()
{
_testCloudService = DependencyService.Get<ITestCloudService>();
SetMainPage(CreateDefaultMainPage());
//TestMainPageSwitches();
//SetMainPage(new ImageSourcesGallery());
}
protected override void OnStart()
{
//TestIssue2393();
}
async Task TestBugzilla44596()
{
await Task.Delay(50);
// verify that there is no gray screen displayed between the blue splash and red FlyoutPage.
SetMainPage(new Bugzilla44596SplashPage(async () =>
{
var newTabbedPage = new TabbedPage();
newTabbedPage.Children.Add(new ContentPage { BackgroundColor = Color.Red, Content = new Label { Text = "Success" } });
MainPage = new FlyoutPage
{
Flyout = new ContentPage { Title = "Flyout", BackgroundColor = Color.Red },
Detail = newTabbedPage
};
await Task.Delay(50);
SetMainPage(CreateDefaultMainPage());
}));
}
async Task TestBugzilla45702()
{
await Task.Delay(50);
// verify that there is no crash when switching MainPage from MDP inside NavPage
SetMainPage(new Bugzilla45702());
}
void TestIssue2393()
{
MainPage = new NavigationPage();
// Hand off to website for sign in process
var view = new WebView { Source = new Uri("http://google.com") };
view.Navigated += (s, e) => MainPage.DisplayAlert("Navigated", $"If this popup appears multiple times, this test has failed", "ok");
;
MainPage.Navigation.PushAsync(new ContentPage { Content = view, Title = "Issue 2393" });
//// Uncomment to verify that there is no gray screen displayed between the blue splash and red FlyoutPage.
//SetMainPage(new Bugzilla44596SplashPage(() =>
//{
// var newTabbedPage = new TabbedPage();
// newTabbedPage.Children.Add(new ContentPage { BackgroundColor = Color.Red, Content = new Label { Text = "yay" } });
// MainPage = new FlyoutPage
// {
// Flyout = new ContentPage { Title = "Flyout", BackgroundColor = Color.Red },
// Detail = newTabbedPage
// };
//}));
//// Uncomment to verify that there is no crash when switching MainPage from MDP inside NavPage
//SetMainPage(new Bugzilla45702());
//// Uncomment to verify that there is no crash when rapidly switching pages that contain lots of buttons
//SetMainPage(new Issues.Issue2004());
}
async Task TestMainPageSwitches()
{
await TestBugzilla45702();
await TestBugzilla44596();
}
public Page CreateDefaultMainPage()
{
var mdp = new FlyoutPage
{
AutomationId = DefaultMainPageId,
Flyout = CoreGallery.GetFlyoutPage(),
Detail = CoreGallery.GetMainPage()
};
mdp.SetAutomationPropertiesName("Main page");
mdp.SetAutomationPropertiesHelpText("Main page help text");
mdp.Flyout.IconImageSource.SetAutomationPropertiesHelpText("This as MDP icon");
mdp.Flyout.IconImageSource.SetAutomationPropertiesName("MDPICON");
return mdp;
//return new XamStore.StoreShell();
}
protected override void OnAppLinkRequestReceived(Uri uri)
{
var appDomain = "http://" + AppName.ToLowerInvariant() + "/";
if (!uri.ToString().ToLowerInvariant().StartsWith(appDomain))
return;
var url = uri.ToString().Replace(appDomain, "");
var parts = url.Split('/');
if (parts.Length == 2)
{
var isPage = parts[0].Trim().ToLower() == "gallery";
if (isPage)
{
string page = parts[1].Trim();
var pageForms = Activator.CreateInstance(Type.GetType(page));
if (pageForms is AppLinkPageGallery appLinkPageGallery)
{
appLinkPageGallery.ShowLabel = true;
(MainPage as FlyoutPage)?.Detail.Navigation.PushAsync((pageForms as Page));
}
}
}
base.OnAppLinkRequestReceived(uri);
}
public static Dictionary<string, string> Config
{
get
{
if (s_config == null)
LoadConfig();
return s_config;
}
}
public static ContentPage MenuPage { get; set; }
public void SetMainPage(Page rootPage)
{
MainPage = rootPage;
}
static Assembly GetAssembly(out string assemblystring)
{
assemblystring = typeof(App).AssemblyQualifiedName.Split(',')[1].Trim();
var assemblyname = new AssemblyName(assemblystring);
return Assembly.Load(assemblyname);
}
static void LoadConfig()
{
s_config = new Dictionary<string, string>();
string keyData = LoadResource("controlgallery.config").Result;
string[] entries = keyData.Split("\n\r".ToCharArray(), StringSplitOptions.RemoveEmptyEntries);
foreach (string entry in entries)
{
string[] parts = entry.Split(':');
if (parts.Length < 2)
continue;
s_config.Add(parts[0].Trim(), parts[1].Trim());
}
}
static async Task<string> LoadResource(string filename)
{
Assembly assembly = GetAssembly(out string assemblystring);
Stream stream = assembly.GetManifestResourceStream($"{assemblystring}.{filename}");
string text;
using (var reader = new StreamReader(stream))
text = await reader.ReadToEndAsync();
return text;
}
public bool NavigateToTestPage(string test)
{
try
{
// Create an instance of the main page
var root = CreateDefaultMainPage();
// Set up a delegate to handle the navigation to the test page
EventHandler toTestPage = null;
toTestPage = async delegate (object sender, EventArgs e)
{
await Current.MainPage.Navigation.PushModalAsync(TestCases.GetTestCases());
TestCases.TestCaseScreen.PageToAction[test]();
Current.MainPage.Appearing -= toTestPage;
};
// And set that delegate to run once the main page appears
root.Appearing += toTestPage;
SetMainPage(root);
return true;
}
catch (Exception ex)
{
Log.Warning("UITests", $"Error attempting to navigate directly to {test}: {ex}");
}
return false;
}
public void Reset()
{
SetMainPage(CreateDefaultMainPage());
}
public void PlatformTest()
{
SetMainPage(new GalleryPages.PlatformTestsGallery.PlatformTestsConsole());
}
}
}