diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2021-02-27 16:29:58 -0600 |
|---|---|---|
| committer | Sean Hall <r.sean.hall@gmail.com> | 2021-03-02 15:50:47 -0600 |
| commit | b54ac261d0a03b75cf05ef370351445774b82155 (patch) | |
| tree | db5877ab147132b9fde78b53b4927e909f33661d /src/test/WixToolsetTest.CoreIntegration/TestData | |
| parent | ed20ef6dc8caa5d585c1a715ff4ba577687bf291 (diff) | |
| download | wix-b54ac261d0a03b75cf05ef370351445774b82155.tar.gz wix-b54ac261d0a03b75cf05ef370351445774b82155.tar.bz2 wix-b54ac261d0a03b75cf05ef370351445774b82155.zip | |
Test big payloads by RemotePayload since real files are slow.
The test will be moved to a Burn e2e test.
#4008
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData')
8 files changed, 1 insertions, 29 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/LargePayload/Bundle.en-us.wxl b/src/test/WixToolsetTest.CoreIntegration/TestData/LargePayload/Bundle.en-us.wxl deleted file mode 100644 index bc1dee83..00000000 --- a/src/test/WixToolsetTest.CoreIntegration/TestData/LargePayload/Bundle.en-us.wxl +++ /dev/null | |||
| @@ -1,10 +0,0 @@ | |||
| 1 | <?xml version="1.0" encoding="utf-8"?> | ||
| 2 | |||
| 3 | <!-- | ||
| 4 | This file contains the declaration of all the localizable strings. | ||
| 5 | --> | ||
| 6 | <WixLocalization xmlns="http://wixtoolset.org/schemas/v4/wxl" Culture="en-US"> | ||
| 7 | |||
| 8 | <String Id="BundleName">~TestBundle</String> | ||
| 9 | |||
| 10 | </WixLocalization> | ||
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/LargePayload/Bundle.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/LargePayload/Bundle.wxs deleted file mode 100644 index 5c7735b5..00000000 --- a/src/test/WixToolsetTest.CoreIntegration/TestData/LargePayload/Bundle.wxs +++ /dev/null | |||
| @@ -1,13 +0,0 @@ | |||
| 1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
| 2 | <Bundle Name="!(loc.BundleName)" Version="!(bind.packageVersion.test.msi)" Manufacturer="Example Corporation" UpgradeCode="047730a5-30fe-4a62-a520-da9381b8226a"> | ||
| 3 | <BootstrapperApplication> | ||
| 4 | <BootstrapperApplicationDll SourceFile="fakeba.dll" /> | ||
| 5 | </BootstrapperApplication> | ||
| 6 | <Chain> | ||
| 7 | <MsiPackage SourceFile="test.msi"> | ||
| 8 | <MsiProperty Name="TEST" Value="1" /> | ||
| 9 | <Payload Compressed="no" SourceFile="large_file.dat" /> | ||
| 10 | </MsiPackage> | ||
| 11 | </Chain> | ||
| 12 | </Bundle> | ||
| 13 | </Wix> | ||
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/LargePayload/data/MsiPackage/Shared.dll b/src/test/WixToolsetTest.CoreIntegration/TestData/LargePayload/data/MsiPackage/Shared.dll deleted file mode 100644 index 0e461ba8..00000000 --- a/src/test/WixToolsetTest.CoreIntegration/TestData/LargePayload/data/MsiPackage/Shared.dll +++ /dev/null | |||
| @@ -1 +0,0 @@ | |||
| 1 | This is Shared.dll. \ No newline at end of file | ||
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/LargePayload/data/MsiPackage/test.txt b/src/test/WixToolsetTest.CoreIntegration/TestData/LargePayload/data/MsiPackage/test.txt deleted file mode 100644 index 8b986220..00000000 --- a/src/test/WixToolsetTest.CoreIntegration/TestData/LargePayload/data/MsiPackage/test.txt +++ /dev/null | |||
| @@ -1 +0,0 @@ | |||
| 1 | This is test.txt \ No newline at end of file | ||
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/LargePayload/data/fakeba.dll b/src/test/WixToolsetTest.CoreIntegration/TestData/LargePayload/data/fakeba.dll deleted file mode 100644 index 970efdf0..00000000 --- a/src/test/WixToolsetTest.CoreIntegration/TestData/LargePayload/data/fakeba.dll +++ /dev/null | |||
| @@ -1 +0,0 @@ | |||
| 1 | This is a fakeba.dll \ No newline at end of file | ||
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/LargePayload/data/large_file.dat b/src/test/WixToolsetTest.CoreIntegration/TestData/LargePayload/data/large_file.dat deleted file mode 100644 index 8115cc60..00000000 --- a/src/test/WixToolsetTest.CoreIntegration/TestData/LargePayload/data/large_file.dat +++ /dev/null | |||
| @@ -1,2 +0,0 @@ | |||
| 1 | When running the tests, this file will be overwritten with 2.5GB of data to test how Wix handles large files. We've avoided | ||
| 2 | committing such a large file to Git as it would bloat the repo. | ||
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/LargePayload/data/test.msi b/src/test/WixToolsetTest.CoreIntegration/TestData/LargePayload/data/test.msi deleted file mode 100644 index 0722d60e..00000000 --- a/src/test/WixToolsetTest.CoreIntegration/TestData/LargePayload/data/test.msi +++ /dev/null | |||
| Binary files differ | |||
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/SingleExeBundle/SingleExeRemotePayload.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/SingleExeBundle/SingleExeRemotePayload.wxs index fcb9dd8d..79ba52d2 100644 --- a/src/test/WixToolsetTest.CoreIntegration/TestData/SingleExeBundle/SingleExeRemotePayload.wxs +++ b/src/test/WixToolsetTest.CoreIntegration/TestData/SingleExeBundle/SingleExeRemotePayload.wxs | |||
| @@ -21,7 +21,7 @@ | |||
| 21 | Description="Microsoft .NET Framework 4.6.2 Setup" | 21 | Description="Microsoft .NET Framework 4.6.2 Setup" |
| 22 | Hash="C42E6ED280290648BBD59F664008852F4CFE4548" | 22 | Hash="C42E6ED280290648BBD59F664008852F4CFE4548" |
| 23 | ProductName="Microsoft .NET Framework 4.6.2" | 23 | ProductName="Microsoft .NET Framework 4.6.2" |
| 24 | Size="1429344" | 24 | Size="9223372036854775807" |
| 25 | Version="4.6.1590.0" /> | 25 | Version="4.6.1590.0" /> |
| 26 | </ExePackage> | 26 | </ExePackage> |
| 27 | </PackageGroup> | 27 | </PackageGroup> |
