diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2022-11-10 22:48:05 -0600 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2022-11-10 23:49:10 -0600 |
commit | 209c92111928a98972d7f0f9d6d620ab566564d9 (patch) | |
tree | fd13d81105b02e63cc61c7819dba6f5c6c7e936e /src/test/burn/WixToolsetTest.BurnE2E/BAFunctionsTests.cs | |
parent | 3f6a633769a9c732db765411ef9b810133ad3957 (diff) | |
download | wix-209c92111928a98972d7f0f9d6d620ab566564d9.tar.gz wix-209c92111928a98972d7f0f9d6d620ab566564d9.tar.bz2 wix-209c92111928a98972d7f0f9d6d620ab566564d9.zip |
Automate the test for GetRelatedBundleVariable.
Diffstat (limited to '')
-rw-r--r-- | src/test/burn/WixToolsetTest.BurnE2E/BAFunctionsTests.cs | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/test/burn/WixToolsetTest.BurnE2E/BAFunctionsTests.cs b/src/test/burn/WixToolsetTest.BurnE2E/BAFunctionsTests.cs new file mode 100644 index 00000000..5ca3d452 --- /dev/null +++ b/src/test/burn/WixToolsetTest.BurnE2E/BAFunctionsTests.cs | |||
@@ -0,0 +1,31 @@ | |||
1 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. | ||
2 | |||
3 | namespace WixToolsetTest.BurnE2E | ||
4 | { | ||
5 | using WixTestTools; | ||
6 | using Xunit; | ||
7 | using Xunit.Abstractions; | ||
8 | |||
9 | public class BAFunctionsTests : BurnE2ETests | ||
10 | { | ||
11 | public BAFunctionsTests(ITestOutputHelper testOutputHelper) : base(testOutputHelper) { } | ||
12 | |||
13 | [RuntimeFact] | ||
14 | public void LogsPersistedRelatedBundleVariables() | ||
15 | { | ||
16 | this.CreatePackageInstaller("PackageAv1"); | ||
17 | this.CreatePackageInstaller("PackageAv2"); | ||
18 | var bundleAv1 = this.CreateBundleInstaller("BundleAv1"); | ||
19 | var bundleAv2 = this.CreateBundleInstaller("BundleAv2"); | ||
20 | |||
21 | bundleAv1.Install(); | ||
22 | bundleAv1.VerifyRegisteredAndInPackageCache(); | ||
23 | |||
24 | var bundleAv2InstallLogFilePath = bundleAv2.Install(); | ||
25 | bundleAv2.VerifyRegisteredAndInPackageCache(); | ||
26 | |||
27 | Assert.True(LogVerifier.MessageInLogFileRegex(bundleAv2InstallLogFilePath, @"Retrieved related bundle variable with BAFunctions: ANumber = 42")); | ||
28 | Assert.True(LogVerifier.MessageInLogFileRegex(bundleAv2InstallLogFilePath, @"Retrieved related bundle variable with BAFunctions: AString = This is a test")); | ||
29 | } | ||
30 | } | ||
31 | } | ||