aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2021-12-10 14:28:11 -0600
committerSean Hall <r.sean.hall@gmail.com>2021-12-11 20:03:13 -0600
commit0b8f7ca9eb4156d8a4d1321c978aa362c03e2c96 (patch)
treeab6745b56758c9709f6325bdf2587ebe22dc977e /src
parentfc30db9fa3aa1d25a6ef078452864673caa67ec5 (diff)
downloadwix-0b8f7ca9eb4156d8a4d1321c978aa362c03e2c96.tar.gz
wix-0b8f7ca9eb4156d8a4d1321c978aa362c03e2c96.tar.bz2
wix-0b8f7ca9eb4156d8a4d1321c978aa362c03e2c96.zip
Clean up some E2E tests.
Diffstat (limited to 'src')
-rw-r--r--src/test/burn/TestData/LayoutTests/BundleA/BundleA.wxs6
-rw-r--r--src/test/burn/TestData/RollbackBoundaryTests/BundleA/BundleA.wxs1
-rw-r--r--src/test/burn/TestData/TestData.proj2
-rw-r--r--src/test/burn/WixToolsetTest.BurnE2E/DependencyTests.cs8
-rw-r--r--src/test/burn/WixToolsetTest.BurnE2E/PatchTests.cs2
-rw-r--r--src/test/burn/WixToolsetTest.BurnE2E/SlipstreamTests.cs2
6 files changed, 7 insertions, 14 deletions
diff --git a/src/test/burn/TestData/LayoutTests/BundleA/BundleA.wxs b/src/test/burn/TestData/LayoutTests/BundleA/BundleA.wxs
index ea46c5b2..a9dac352 100644
--- a/src/test/burn/TestData/LayoutTests/BundleA/BundleA.wxs
+++ b/src/test/burn/TestData/LayoutTests/BundleA/BundleA.wxs
@@ -7,20 +7,14 @@
7 <MsiPackage Id="PackageA" SourceFile="$(var.PackageA.TargetPath)" /> 7 <MsiPackage Id="PackageA" SourceFile="$(var.PackageA.TargetPath)" />
8 </PackageGroup> 8 </PackageGroup>
9 9
10 <!-- Reenable when fixed
11 <Container Id="PackagesContainer" Name="packages.cab" DownloadUrl="$(var.WebServerBaseUrl)BundleA/{2}"> 10 <Container Id="PackagesContainer" Name="packages.cab" DownloadUrl="$(var.WebServerBaseUrl)BundleA/{2}">
12 -->
13 <Container Id="PackagesContainer" Name="packages.cab" DownloadUrl="$(var.WebServerBaseUrl)BundleA/packages.cab">
14 <PackageGroupRef Id="BundlePackages" /> 11 <PackageGroupRef Id="BundlePackages" />
15 </Container> 12 </Container>
16 </Fragment> 13 </Fragment>
17 14
18 <Fragment> 15 <Fragment>
19 <PayloadGroup Id="LayoutOnlyPayloads"> 16 <PayloadGroup Id="LayoutOnlyPayloads">
20 <Payload Id="LayoutOnlyPayload" SourceFile="$(sys.SOURCEFILEPATH)" Compressed="no" DownloadUrl="$(var.WebServerBaseUrl)BundleA/LayoutOnlyPayload" />
21 <!-- Reenable when fixed
22 <Payload Id="LayoutOnlyPayload" SourceFile="$(sys.SOURCEFILEPATH)" Compressed="no" DownloadUrl="$(var.WebServerBaseUrl)BundleA/{1}" /> 17 <Payload Id="LayoutOnlyPayload" SourceFile="$(sys.SOURCEFILEPATH)" Compressed="no" DownloadUrl="$(var.WebServerBaseUrl)BundleA/{1}" />
23 -->
24 </PayloadGroup> 18 </PayloadGroup>
25 </Fragment> 19 </Fragment>
26</Wix> 20</Wix>
diff --git a/src/test/burn/TestData/RollbackBoundaryTests/BundleA/BundleA.wxs b/src/test/burn/TestData/RollbackBoundaryTests/BundleA/BundleA.wxs
index 795dc13a..382c56c2 100644
--- a/src/test/burn/TestData/RollbackBoundaryTests/BundleA/BundleA.wxs
+++ b/src/test/burn/TestData/RollbackBoundaryTests/BundleA/BundleA.wxs
@@ -4,7 +4,6 @@
4<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> 4<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
5 <Fragment> 5 <Fragment>
6 <PackageGroup Id="BundlePackages"> 6 <PackageGroup Id="BundlePackages">
7 <MsiPackage Id="PackageC" SourceFile="$(var.PackageC.TargetPath)" Permanent="yes" /> <!-- TODO: this is a workaround for inability to specify RollbackBoundary as first package, remove when this is fixed -->
8 <RollbackBoundary Id="nonvital" Vital="no" /> 7 <RollbackBoundary Id="nonvital" Vital="no" />
9 <MsiPackage Id="PackageF" SourceFile="$(var.PackageF.TargetPath)" /> 8 <MsiPackage Id="PackageF" SourceFile="$(var.PackageF.TargetPath)" />
10 <MsiPackage Id="PackageA" SourceFile="$(var.PackageA.TargetPath)" Permanent="yes" /> 9 <MsiPackage Id="PackageA" SourceFile="$(var.PackageA.TargetPath)" Permanent="yes" />
diff --git a/src/test/burn/TestData/TestData.proj b/src/test/burn/TestData/TestData.proj
index 3f56d5b7..27bfb02b 100644
--- a/src/test/burn/TestData/TestData.proj
+++ b/src/test/burn/TestData/TestData.proj
@@ -5,7 +5,7 @@
5 <ItemGroup> 5 <ItemGroup>
6 <TestDataProject Include="**\*.wixproj" /> 6 <TestDataProject Include="**\*.wixproj" />
7 7
8 <!-- https://github.com/wixtoolset/issues/issues/6387 --> 8 <!-- https://github.com/wixtoolset/issues/issues/6401 -->
9 <TestDataProject Remove="DependencyTests\BundleC\BundleC.wixproj" /> 9 <TestDataProject Remove="DependencyTests\BundleC\BundleC.wixproj" />
10 <TestDataProject Remove="DependencyTests\BundleF_PatchAv1_0_1\BundleF_PatchAv1_0_1.wixproj" /> 10 <TestDataProject Remove="DependencyTests\BundleF_PatchAv1_0_1\BundleF_PatchAv1_0_1.wixproj" />
11 <TestDataProject Remove="DependencyTests\BundleF_PatchAv1_0_2\BundleF_PatchAv1_0_2.wixproj" /> 11 <TestDataProject Remove="DependencyTests\BundleF_PatchAv1_0_2\BundleF_PatchAv1_0_2.wixproj" />
diff --git a/src/test/burn/WixToolsetTest.BurnE2E/DependencyTests.cs b/src/test/burn/WixToolsetTest.BurnE2E/DependencyTests.cs
index 08370631..e2975fc9 100644
--- a/src/test/burn/WixToolsetTest.BurnE2E/DependencyTests.cs
+++ b/src/test/burn/WixToolsetTest.BurnE2E/DependencyTests.cs
@@ -40,7 +40,7 @@ namespace WixToolsetTest.BurnE2E
40 packageF.VerifyInstalled(false); 40 packageF.VerifyInstalled(false);
41 } 41 }
42 42
43 [Fact (Skip = "https://github.com/wixtoolset/issues/issues/6387")] 43 [Fact (Skip = "https://github.com/wixtoolset/issues/issues/6401")]
44 public void CanKeepSameExactPackageAfterUpgradingBundleWithSlipstreamedPatch() 44 public void CanKeepSameExactPackageAfterUpgradingBundleWithSlipstreamedPatch()
45 { 45 {
46 var originalVersion = "1.0.0.0"; 46 var originalVersion = "1.0.0.0";
@@ -124,7 +124,7 @@ namespace WixToolsetTest.BurnE2E
124 } 124 }
125 125
126#if SUPPORT_ADDON_AND_PATCH_RELATED_BUNDLES 126#if SUPPORT_ADDON_AND_PATCH_RELATED_BUNDLES
127 [Fact(Skip = "https://github.com/wixtoolset/issues/issues/6387")] 127 [Fact(Skip = "https://github.com/wixtoolset/issues/issues/6401")]
128#else 128#else
129 [Fact(Skip = "addon/patch related bundle")] 129 [Fact(Skip = "addon/patch related bundle")]
130#endif 130#endif
@@ -169,7 +169,7 @@ namespace WixToolsetTest.BurnE2E
169 } 169 }
170 170
171#if SUPPORT_ADDON_AND_PATCH_RELATED_BUNDLES 171#if SUPPORT_ADDON_AND_PATCH_RELATED_BUNDLES
172 [Fact(Skip = "https://github.com/wixtoolset/issues/issues/6387")] 172 [Fact(Skip = "https://github.com/wixtoolset/issues/issues/6401")]
173#else 173#else
174 [Fact(Skip = "addon/patch related bundle")] 174 [Fact(Skip = "addon/patch related bundle")]
175#endif 175#endif
@@ -344,7 +344,7 @@ namespace WixToolsetTest.BurnE2E
344 } 344 }
345 345
346#if SUPPORT_ADDON_AND_PATCH_RELATED_BUNDLES 346#if SUPPORT_ADDON_AND_PATCH_RELATED_BUNDLES
347 [Fact(Skip = "https://github.com/wixtoolset/issues/issues/6387")] 347 [Fact(Skip = "https://github.com/wixtoolset/issues/issues/6401")]
348#else 348#else
349 [Fact(Skip = "addon/patch related bundle")] 349 [Fact(Skip = "addon/patch related bundle")]
350#endif 350#endif
diff --git a/src/test/burn/WixToolsetTest.BurnE2E/PatchTests.cs b/src/test/burn/WixToolsetTest.BurnE2E/PatchTests.cs
index 0c7fdc98..6b829118 100644
--- a/src/test/burn/WixToolsetTest.BurnE2E/PatchTests.cs
+++ b/src/test/burn/WixToolsetTest.BurnE2E/PatchTests.cs
@@ -55,7 +55,7 @@ namespace WixToolsetTest.BurnE2E
55 packageAv1.VerifyTestRegistryRootDeleted(); 55 packageAv1.VerifyTestRegistryRootDeleted();
56 } 56 }
57 57
58 [Fact(Skip = "https://github.com/wixtoolset/issues/issues/6380")] 58 [Fact(Skip = "https://github.com/wixtoolset/issues/issues/6675")]
59 public void CanPatchSwidTag() 59 public void CanPatchSwidTag()
60 { 60 {
61 var originalVersion = "1.0.0.0"; 61 var originalVersion = "1.0.0.0";
diff --git a/src/test/burn/WixToolsetTest.BurnE2E/SlipstreamTests.cs b/src/test/burn/WixToolsetTest.BurnE2E/SlipstreamTests.cs
index 29632e2e..f6744e8d 100644
--- a/src/test/burn/WixToolsetTest.BurnE2E/SlipstreamTests.cs
+++ b/src/test/burn/WixToolsetTest.BurnE2E/SlipstreamTests.cs
@@ -266,7 +266,7 @@ namespace WixToolsetTest.BurnE2E
266 packageBv1.VerifyTestRegistryRootDeleted(); 266 packageBv1.VerifyTestRegistryRootDeleted();
267 } 267 }
268 268
269 [Fact(Skip = "https://github.com/wixtoolset/issues/issues/6359")] 269 [Fact(Skip = "https://github.com/wixtoolset/issues/issues/6402")]
270 public void CanAutomaticallyPredetermineSlipstreamPatchesAtBuildTime() 270 public void CanAutomaticallyPredetermineSlipstreamPatchesAtBuildTime()
271 { 271 {
272 var testRegistryValueA = "PackageA"; 272 var testRegistryValueA = "PackageA";