diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2021-04-16 10:44:11 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2021-04-19 23:12:55 -0500 |
commit | e09a129ee276457d02d19a6444657cf3a2c73905 (patch) | |
tree | 0c12325e67a5e60aadfcfee5e14cda66b9868abe /src/test | |
parent | acf86637a6350d269e1ae1aa907e38f5138a0fa9 (diff) | |
download | wix-e09a129ee276457d02d19a6444657cf3a2c73905.tar.gz wix-e09a129ee276457d02d19a6444657cf3a2c73905.tar.bz2 wix-e09a129ee276457d02d19a6444657cf3a2c73905.zip |
UX payloads are never external.
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/BurnUnitTest/RegistrationTest.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/test/BurnUnitTest/RegistrationTest.cpp b/src/test/BurnUnitTest/RegistrationTest.cpp index 2cb66c3f..7b126f61 100644 --- a/src/test/BurnUnitTest/RegistrationTest.cpp +++ b/src/test/BurnUnitTest/RegistrationTest.cpp | |||
@@ -112,7 +112,7 @@ namespace Bootstrapper | |||
112 | TestThrowOnFailure(hr, L"Failed to get current process path."); | 112 | TestThrowOnFailure(hr, L"Failed to get current process path."); |
113 | 113 | ||
114 | // write registration | 114 | // write registration |
115 | hr = RegistrationSessionBegin(sczCurrentProcess, ®istration, &variables, &userExperience, BURN_REGISTRATION_ACTION_OPERATIONS_CACHE_BUNDLE | BURN_REGISTRATION_ACTION_OPERATIONS_WRITE_REGISTRATION, BURN_DEPENDENCY_REGISTRATION_ACTION_REGISTER, 0); | 115 | hr = RegistrationSessionBegin(sczCurrentProcess, ®istration, &variables, BURN_REGISTRATION_ACTION_OPERATIONS_CACHE_BUNDLE | BURN_REGISTRATION_ACTION_OPERATIONS_WRITE_REGISTRATION, BURN_DEPENDENCY_REGISTRATION_ACTION_REGISTER, 0); |
116 | TestThrowOnFailure(hr, L"Failed to register bundle."); | 116 | TestThrowOnFailure(hr, L"Failed to register bundle."); |
117 | 117 | ||
118 | // verify that registration was created | 118 | // verify that registration was created |
@@ -205,7 +205,7 @@ namespace Bootstrapper | |||
205 | // | 205 | // |
206 | 206 | ||
207 | // write registration | 207 | // write registration |
208 | hr = RegistrationSessionBegin(sczCurrentProcess, ®istration, &variables, &userExperience, BURN_REGISTRATION_ACTION_OPERATIONS_WRITE_REGISTRATION, BURN_DEPENDENCY_REGISTRATION_ACTION_REGISTER, 0); | 208 | hr = RegistrationSessionBegin(sczCurrentProcess, ®istration, &variables, BURN_REGISTRATION_ACTION_OPERATIONS_WRITE_REGISTRATION, BURN_DEPENDENCY_REGISTRATION_ACTION_REGISTER, 0); |
209 | TestThrowOnFailure(hr, L"Failed to register bundle."); | 209 | TestThrowOnFailure(hr, L"Failed to register bundle."); |
210 | 210 | ||
211 | // verify that registration was created | 211 | // verify that registration was created |
@@ -226,7 +226,7 @@ namespace Bootstrapper | |||
226 | // | 226 | // |
227 | 227 | ||
228 | // write registration | 228 | // write registration |
229 | hr = RegistrationSessionBegin(sczCurrentProcess, ®istration, &variables, &userExperience, BURN_REGISTRATION_ACTION_OPERATIONS_WRITE_REGISTRATION, BURN_DEPENDENCY_REGISTRATION_ACTION_UNREGISTER, 0); | 229 | hr = RegistrationSessionBegin(sczCurrentProcess, ®istration, &variables, BURN_REGISTRATION_ACTION_OPERATIONS_WRITE_REGISTRATION, BURN_DEPENDENCY_REGISTRATION_ACTION_UNREGISTER, 0); |
230 | TestThrowOnFailure(hr, L"Failed to register bundle."); | 230 | TestThrowOnFailure(hr, L"Failed to register bundle."); |
231 | 231 | ||
232 | // verify that registration was updated | 232 | // verify that registration was updated |
@@ -316,7 +316,7 @@ namespace Bootstrapper | |||
316 | // | 316 | // |
317 | 317 | ||
318 | // write registration | 318 | // write registration |
319 | hr = RegistrationSessionBegin(sczCurrentProcess, ®istration, &variables, &userExperience, BURN_REGISTRATION_ACTION_OPERATIONS_WRITE_REGISTRATION, BURN_DEPENDENCY_REGISTRATION_ACTION_REGISTER, 0); | 319 | hr = RegistrationSessionBegin(sczCurrentProcess, ®istration, &variables, BURN_REGISTRATION_ACTION_OPERATIONS_WRITE_REGISTRATION, BURN_DEPENDENCY_REGISTRATION_ACTION_REGISTER, 0); |
320 | TestThrowOnFailure(hr, L"Failed to register bundle."); | 320 | TestThrowOnFailure(hr, L"Failed to register bundle."); |
321 | 321 | ||
322 | // verify that registration was created | 322 | // verify that registration was created |
@@ -427,7 +427,7 @@ namespace Bootstrapper | |||
427 | // | 427 | // |
428 | 428 | ||
429 | // write registration | 429 | // write registration |
430 | hr = RegistrationSessionBegin(sczCurrentProcess, ®istration, &variables, &userExperience, BURN_REGISTRATION_ACTION_OPERATIONS_WRITE_REGISTRATION, BURN_DEPENDENCY_REGISTRATION_ACTION_REGISTER, 0); | 430 | hr = RegistrationSessionBegin(sczCurrentProcess, ®istration, &variables, BURN_REGISTRATION_ACTION_OPERATIONS_WRITE_REGISTRATION, BURN_DEPENDENCY_REGISTRATION_ACTION_REGISTER, 0); |
431 | TestThrowOnFailure(hr, L"Failed to register bundle."); | 431 | TestThrowOnFailure(hr, L"Failed to register bundle."); |
432 | 432 | ||
433 | // verify that registration was created | 433 | // verify that registration was created |
@@ -460,7 +460,7 @@ namespace Bootstrapper | |||
460 | // | 460 | // |
461 | 461 | ||
462 | // write registration | 462 | // write registration |
463 | hr = RegistrationSessionBegin(sczCurrentProcess, ®istration, &variables, &userExperience, BURN_REGISTRATION_ACTION_OPERATIONS_WRITE_REGISTRATION, BURN_DEPENDENCY_REGISTRATION_ACTION_UNREGISTER, 0); | 463 | hr = RegistrationSessionBegin(sczCurrentProcess, ®istration, &variables, BURN_REGISTRATION_ACTION_OPERATIONS_WRITE_REGISTRATION, BURN_DEPENDENCY_REGISTRATION_ACTION_UNREGISTER, 0); |
464 | TestThrowOnFailure(hr, L"Failed to register bundle."); | 464 | TestThrowOnFailure(hr, L"Failed to register bundle."); |
465 | 465 | ||
466 | // verify that registration was updated | 466 | // verify that registration was updated |
@@ -560,7 +560,7 @@ namespace Bootstrapper | |||
560 | Assert::Equal((int)BOOTSTRAPPER_RESUME_TYPE_NONE, (int)resumeType); | 560 | Assert::Equal((int)BOOTSTRAPPER_RESUME_TYPE_NONE, (int)resumeType); |
561 | 561 | ||
562 | // begin session | 562 | // begin session |
563 | hr = RegistrationSessionBegin(sczCurrentProcess, ®istration, &variables, &userExperience, BURN_REGISTRATION_ACTION_OPERATIONS_WRITE_REGISTRATION, BURN_DEPENDENCY_REGISTRATION_ACTION_REGISTER, 0); | 563 | hr = RegistrationSessionBegin(sczCurrentProcess, ®istration, &variables, BURN_REGISTRATION_ACTION_OPERATIONS_WRITE_REGISTRATION, BURN_DEPENDENCY_REGISTRATION_ACTION_REGISTER, 0); |
564 | TestThrowOnFailure(hr, L"Failed to register bundle."); | 564 | TestThrowOnFailure(hr, L"Failed to register bundle."); |
565 | 565 | ||
566 | hr = RegistrationSaveState(®istration, rgbData, sizeof(rgbData)); | 566 | hr = RegistrationSaveState(®istration, rgbData, sizeof(rgbData)); |