forked from microsoft/WindowsAppSDK
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFunctionalTests.cpp
More file actions
430 lines (344 loc) · 17.6 KB
/
Copy pathFunctionalTests.cpp
File metadata and controls
430 lines (344 loc) · 17.6 KB
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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
// Copyright (c) Microsoft Corporation and Contributors.
// Licensed under the MIT License.
#include "pch.h"
#include <testdef.h>
#include "Shared.h"
using namespace WEX::Common;
using namespace WEX::Logging;
using namespace WEX::TestExecution;
using namespace winrt;
using namespace winrt::Microsoft::Windows::AppLifecycle;
using namespace winrt::Windows::ApplicationModel::Activation;
using namespace winrt::Windows::Foundation;
using namespace winrt::Windows::Foundation::Collections;
using namespace winrt::Windows::Management::Deployment;
using namespace winrt::Windows::Storage;
using namespace winrt::Windows::System;
namespace Test::AppLifecycle
{
static const std::wstring c_runKeyPath = LR"(Software\Microsoft\Windows\CurrentVersion\Run\)";
class FunctionalTests
{
private:
wil::unique_event m_failed;
std::wstring m_testName;
const std::wstring c_testDataFileName = L"testfile" + c_testFileExtension;
const std::wstring c_testDataFileName_Unicode = L"你好&世界" + c_testFileExtension;
const std::wstring c_testDataFileName_Packaged = L"testfile" + c_testFileExtension_Packaged;
const std::wstring c_testPackageFile = g_deploymentDir + L"AppLifecycleTestPackage.msix";
const std::wstring c_testVCLibsPackageFile = g_deploymentDir + L"VCLibs.appx";
const std::wstring c_testPackageFullName = L"AppLifecycleTestPackage_1.0.0.0_" WINDOWSAPPRUNTIME_TEST_PACKAGE_DDLM_ARCHITECTURE L"__8wekyb3d8bbwe";
public:
BEGIN_TEST_CLASS(FunctionalTests)
TEST_CLASS_PROPERTY(L"ThreadingModel", L"MTA")
TEST_CLASS_PROPERTY(L"RunAs:Class", L"RestrictedUser")
END_TEST_CLASS()
TEST_CLASS_SETUP(ClassInit)
{
::Test::Bootstrap::Setup();
m_failed = CreateTestEvent(c_testFailureEventName);
// Deploy packaged app to register handler through the manifest.
InstallPackage(c_testPackageFile);
// Write out some test content.
WriteContentFile(c_testDataFileName);
WriteContentFile(c_testDataFileName_Unicode);
WriteContentFile(c_testDataFileName_Packaged);
return true;
}
TEST_CLASS_CLEANUP(ClassUninit)
{
// Swallow errors in cleanup.
try
{
DeleteContentFile(c_testDataFileName_Packaged);
DeleteContentFile(c_testDataFileName_Unicode);
DeleteContentFile(c_testDataFileName);
UninstallPackage(c_testPackageFullName);
}
catch (const std::exception&)
{
}
catch (const winrt::hresult_error&)
{
}
::Test::Bootstrap::Cleanup();
return true;
}
TEST_METHOD(GetActivatedEventArgsIsNotNull)
{
VERIFY_IS_NOT_NULL(AppInstance::GetCurrent().GetActivatedEventArgs());
}
TEST_METHOD(GetActivatedEventArgsForLaunch)
{
auto args = AppInstance::GetCurrent().GetActivatedEventArgs();
VERIFY_IS_NOT_NULL(args);
VERIFY_ARE_EQUAL(args.Kind(), ExtendedActivationKind::Launch);
auto launchArgs = args.Data().as<LaunchActivatedEventArgs>();
VERIFY_IS_NOT_NULL(launchArgs);
}
TEST_METHOD(GetActivatedEventArgsForFile_Win32)
{
// Create a named event for communicating with test app.
auto event = CreateTestEvent(c_testFilePhaseEventName);
// Cleanup any leftover data from previous runs i.e. ensure we running with a clean slate
try
{
Execute(L"AppLifecycleTestApp.exe", L"/UnregisterFile", g_deploymentDir);
WaitForEvent(event, m_failed);
}
catch (...)
{
//TODO:Unregister should not fail if ERROR_FILE_NOT_FOUND | ERROR_PATH_NOT_FOUND
}
// Launch the test app to register for protocol launches.
Execute(L"AppLifecycleTestApp.exe", L"/RegisterFile", g_deploymentDir);
// Wait for the register event.
WaitForEvent(event, m_failed);
// Launch the file and wait for the event to fire.
auto file = OpenDocFile(c_testDataFileName);
auto launchResult = Launcher::LaunchFileAsync(file).get();
VERIFY_IS_TRUE(launchResult);
// Wait for the file activation.
WaitForEvent(event, m_failed);
Execute(L"AppLifecycleTestApp.exe", L"/UnregisterFile", g_deploymentDir);
// Wait for the unregister event.
WaitForEvent(event, m_failed);
}
TEST_METHOD(GetActivatedEventArgsForUnicodeNamedFile_Win32)
{
// Create a named event for communicating with test app.
auto event = CreateTestEvent(c_testFilePhaseEventName);
// Cleanup any leftover data from previous runs i.e. ensure we running with a clean slate
try
{
Execute(L"AppLifecycleTestApp.exe", L"/UnregisterFile", g_deploymentDir);
WaitForEvent(event, m_failed);
}
catch (...)
{
//TODO:Unregister should not fail if ERROR_FILE_NOT_FOUND | ERROR_PATH_NOT_FOUND
}
// Launch the test app to register for protocol launches.
Execute(L"AppLifecycleTestApp.exe", L"/RegisterFile", g_deploymentDir);
// Wait for the register event.
WaitForEvent(event, m_failed);
// Launch the file and wait for the event to fire.
auto file = OpenDocFile(c_testDataFileName_Unicode);
auto launchResult = Launcher::LaunchFileAsync(file).get();
VERIFY_IS_TRUE(launchResult);
// Wait for the file activation.
WaitForEvent(event, m_failed);
Execute(L"AppLifecycleTestApp.exe", L"/UnregisterFile", g_deploymentDir);
// Wait for the unregister event.
WaitForEvent(event, m_failed);
}
TEST_METHOD(GetActivatedEventArgsForFile_PackagedWin32)
{
// Create a named event for communicating with test app.
auto event = CreateTestEvent(c_testFilePhaseEventName);
// Launch the file and wait for the event to fire.
auto file = OpenDocFile(c_testDataFileName_Packaged);
auto launchResult = Launcher::LaunchFileAsync(file).get();
VERIFY_IS_TRUE(launchResult);
// Wait for the protocol activation.
WaitForEvent(event, m_failed);
}
TEST_METHOD(GetActivatedEventArgsForProtocol_Win32)
{
// Create a named event for communicating with test app.
auto event{ CreateTestEvent(c_testProtocolPhaseEventName) };
// Cleanup any leftover data from previous runs i.e. ensure we running with a clean slate
try
{
Execute(L"AppLifecycleTestApp.exe", L"/UnregisterProtocol", g_deploymentDir);
WaitForEvent(event, m_failed);
}
catch (...)
{
//TODO:Unregister should not fail if ERROR_FILE_NOT_FOUND | ERROR_PATH_NOT_FOUND
}
// Register the protocol
Execute(L"AppLifecycleTestApp.exe", L"/RegisterProtocol", g_deploymentDir);
WaitForEvent(event, m_failed);
// Launch a URI with the protocol schema and wait for the app to fire the event
Uri launchUri{ c_testProtocolScheme + L"://" + c_genericTestMoniker + L"?TestName=" + TESTNAME() };
auto launchResult{ Launcher::LaunchUriAsync(launchUri).get() };
VERIFY_IS_TRUE(launchResult);
WaitForEvent(event, m_failed);
// Deregister the protocol
Execute(L"AppLifecycleTestApp.exe", L"/UnregisterProtocol", g_deploymentDir);
WaitForEvent(event, m_failed);
}
TEST_METHOD(GetActivatedEventArgsForProtocol_PackagedWin32)
{
// Create a named event for communicating with test app.
auto event = CreateTestEvent(c_testProtocolPhaseEventName);
// Launch a URI with the protocol schema and wait for the app to fire the event
Uri launchUri{ c_testProtocolScheme_Packaged + L"://" + c_genericTestMoniker + L"?TestName=" + TESTNAME() };
auto launchResult{ Launcher::LaunchUriAsync(launchUri).get() };
VERIFY_IS_TRUE(launchResult);
// Wait for the protocol activation.
WaitForEvent(event, m_failed);
}
TEST_METHOD(GetActivatedEventArgsForPush_Win32)
{
// Create a named event for communicating with test app.
auto event = CreateTestEvent(c_testPushPhaseEventName);
// Launch the test app using the push activationprotocol.
Execute(L"AppLifecycleTestApp.exe", L"----WindowsAppRuntimePushServer:-Payload:\"<toast></toast>\"", g_deploymentDir);
// Wait for the protocol activation.
WaitForEvent(event, m_failed);
}
TEST_METHOD(GetActivatedEventArgsForStartup_Win32)
{
// Create a named event for communicating with test app.
auto event = CreateTestEvent(c_testStartupPhaseEventName);
// Launch the test app to register for protocol launches.
Execute(L"AppLifecycleTestApp.exe", L"/RegisterStartup", g_deploymentDir);
// Wait for the register event.
WaitForEvent(event, m_failed);
// Instead of managing a reboot during a test, validate the registration was
// written correctly. This is done by reading the registration, splitting the
// command line parameters into a separate string, running the command, and
// waiting for the success event to be signaled.
DWORD size{ 0 };
std::wstring command;
auto result = RegGetValue(HKEY_CURRENT_USER, c_runKeyPath.c_str(), c_genericTestMoniker.c_str(),
RRF_RT_REG_SZ, nullptr, command.data(), &size);
if (result == ERROR_MORE_DATA)
{
command.resize(size);
result = RegGetValue(HKEY_CURRENT_USER, c_runKeyPath.c_str(), c_genericTestMoniker.c_str(),
RRF_RT_REG_SZ, nullptr, command.data(), &size);
}
THROW_IF_WIN32_ERROR(result);
auto argsStart = command.rfind(L"\"----");
auto exe = command.substr(0, argsStart);
auto params = command.substr(argsStart);
Execute(exe, params, g_deploymentDir);
// Wait for the protocol activation.
WaitForEvent(event, m_failed);
Execute(L"AppLifecycleTestApp.exe", L"/UnregisterStartup", g_deploymentDir);
auto protEvent = CreateTestEvent(c_testStartupPhaseEventName);
// Wait for the unregister event.
WaitForEvent(protEvent, m_failed);
}
TEST_METHOD(SingleInstanceTest_Win32)
{
// Create a named event for communicating with test app.
auto protocolActivationEvent{ CreateTestEvent(c_testProtocolPhaseEventName) };
auto redirectedEvent{ CreateTestEvent(c_testInstanceRedirectedPhaseEventName) };
// Cleanup any leftover data from previous runs i.e. ensure we running with a clean slate
try
{
Execute(L"AppLifecycleTestApp.exe", L"/UnregisterProtocol", g_deploymentDir);
WaitForEvent(protocolActivationEvent, m_failed);
}
catch (...)
{
//TODO:Unregister should not fail if ERROR_FILE_NOT_FOUND | ERROR_PATH_NOT_FOUND
}
// Register the protocol
Execute(L"AppLifecycleTestApp.exe", L"/RegisterProtocol", g_deploymentDir);
WaitForEvent(protocolActivationEvent, m_failed);
// Launch a URI with the protocol schema and wait for the app to fire the event
Uri launchUri{ c_testProtocolScheme + L"://" + c_genericTestMoniker + L"?TestName=" + TESTNAME() };
auto launchResult{ Launcher::LaunchUriAsync(launchUri).get() };
VERIFY_IS_TRUE(launchResult);
WaitForEvent(protocolActivationEvent, m_failed);
WaitForEvent(redirectedEvent, m_failed);
// Deregister the protocol
Execute(L"AppLifecycleTestApp.exe", L"/UnregisterProtocol", g_deploymentDir);
WaitForEvent(protocolActivationEvent, m_failed);
}
TEST_METHOD(SingleInstanceTest_PackagedWin32)
{
// Create a named event for communicating with test app.
auto protocolActivationEvent{ CreateTestEvent(c_testProtocolPhaseEventName) };
auto redirectedEvent{ CreateTestEvent(c_testInstanceRedirectedPhaseEventName) };
// Launch a URI with the protocol schema and wait for the app to fire the event
Uri launchUri{ c_testProtocolScheme_Packaged + L"://" + c_genericTestMoniker + L"?TestName=" + TESTNAME() };
auto launchResult{ Launcher::LaunchUriAsync(launchUri).get() };
VERIFY_IS_TRUE(launchResult);
WaitForEvent(protocolActivationEvent, m_failed);
WaitForEvent(redirectedEvent, m_failed);
}
TEST_METHOD(RequestRestart_Win32)
{
// Create a named event for communicating with test app.
auto event{ CreateTestEvent(c_testProtocolPhaseEventName) };
// Cleanup any leftover data from previous runs i.e. ensure we running with a clean slate
try
{
Execute(L"AppLifecycleTestApp.exe", L"/UnregisterProtocol", g_deploymentDir);
WaitForEvent(event, m_failed);
}
catch (...)
{
//TODO:Unregister should not fail if ERROR_FILE_NOT_FOUND | ERROR_PATH_NOT_FOUND
}
// Register the protocol
Execute(L"AppLifecycleTestApp.exe", L"/RegisterProtocol", g_deploymentDir);
WaitForEvent(event, m_failed);
auto restartNowEvent{ CreateTestEvent(c_testRequestRestartNowPhaseEventName) };
auto restartNowRestartedEvent{ CreateTestEvent(c_testRequestRestartNowRestartedPhaseEventName) };
// Launch a URI with the protocol schema and wait for the app to fire the event
Uri launchUri{ c_testProtocolScheme + L"://" + c_genericTestMoniker + L"?TestName=" + TESTNAME() };
auto launchResult{ Launcher::LaunchUriAsync(launchUri).get() };
VERIFY_IS_TRUE(launchResult);
// Wait for Restart code path in caller.
WaitForEvent(restartNowEvent, m_failed);
// Wait for the restarted process with args!
WaitForEvent(restartNowRestartedEvent, m_failed);
// Deregister the protocol
Execute(L"AppLifecycleTestApp.exe", L"/UnregisterProtocol", g_deploymentDir);
WaitForEvent(event, m_failed);
}
TEST_METHOD(RequestRestart_PackagedWin32)
{
// Create a named event for communicating with test app.
auto event{ CreateTestEvent(c_testProtocolPhaseEventName) };
// Cleanup any leftover data from previous runs i.e. ensure we running with a clean slate
try
{
Execute(L"AppLifecycleTestApp.exe", L"/UnregisterProtocol", g_deploymentDir);
WaitForEvent(event, m_failed);
}
catch (...)
{
//TODO:Unregister should not fail if ERROR_FILE_NOT_FOUND | ERROR_PATH_NOT_FOUND
}
// Register the protocol
Execute(L"AppLifecycleTestApp.exe", L"/RegisterProtocol", g_deploymentDir);
WaitForEvent(event, m_failed);
auto restartNowEvent{ CreateTestEvent(c_testRequestRestartNowPhaseEventName) };
auto restartNowRestartedEvent{ CreateTestEvent(c_testRequestRestartNowRestartedPhasePackagedEventName) };
// Launch a URI with the protocol schema and wait for the app to fire the event
Uri launchUri{ c_testProtocolScheme_Packaged + L"://" + c_genericTestMoniker + L"?TestName=" + TESTNAME() };
auto launchResult{ Launcher::LaunchUriAsync(launchUri).get() };
VERIFY_IS_TRUE(launchResult);
// Wait for Restart code path in caller.
WaitForEvent(restartNowEvent, m_failed);
// Wait for the restarted process with args!
WaitForEvent(restartNowRestartedEvent, m_failed);
// Deregister the protocol
Execute(L"AppLifecycleTestApp.exe", L"/UnregisterProtocol", g_deploymentDir);
WaitForEvent(event, m_failed);
}
TEST_METHOD(FileTypeActivation_CaseInsensitivity)
{
// This test verifies that ComputeAppId is case-insensitive for file paths
// by checking that two paths that differ only by case produce the same AppId
// Get implementation namespace to access ComputeAppId
using namespace winrt::Microsoft::Windows::AppLifecycle::implementation;
// Test paths with different case
std::wstring path1 = L"C:\\Users\\user\\App\\app.exe";
std::wstring path2 = L"C:\\Users\\user\\App\\App.exe";
// Verify that the AppIds calculated from the paths are the same
auto appId1 = ComputeAppId(path1);
auto appId2 = ComputeAppId(path2);
// The AppIds should be identical regardless of the case
VERIFY_ARE_EQUAL(appId1, appId2);
}
};
}