diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2021-03-30 21:51:33 -0500 |
|---|---|---|
| committer | Sean Hall <r.sean.hall@gmail.com> | 2021-03-30 22:05:07 -0500 |
| commit | 87ffd980dc518a7ab40901eeae27b75259ea32b0 (patch) | |
| tree | 32e2d3ce966d0017c1ce86a83f21329417411406 /src/test/WixToolsetTest.CoreIntegration/TestData | |
| parent | f533d01010a3e5d8a93b4be1e1820e4668542a3a (diff) | |
| download | wix-87ffd980dc518a7ab40901eeae27b75259ea32b0.tar.gz wix-87ffd980dc518a7ab40901eeae27b75259ea32b0.tar.bz2 wix-87ffd980dc518a7ab40901eeae27b75259ea32b0.zip | |
Add failing test for DownloadUrl placeholder replacement.
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData')
| -rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/TestData/Payload/DownloadUrlPlaceholdersBundle.wxs | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/Payload/DownloadUrlPlaceholdersBundle.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/Payload/DownloadUrlPlaceholdersBundle.wxs new file mode 100644 index 00000000..87bb79f9 --- /dev/null +++ b/src/test/WixToolsetTest.CoreIntegration/TestData/Payload/DownloadUrlPlaceholdersBundle.wxs | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
| 2 | <Bundle Name="DownloadUrlPlaceholders" Version="1.0.0.0" Manufacturer="test" UpgradeCode="{B04C20B8-70C3-4DE1-8D91-4F11C7C68DED}"> | ||
| 3 | <BootstrapperApplicationRef Id="fakeba" /> | ||
| 4 | |||
| 5 | <Chain> | ||
| 6 | <PackageGroupRef Id="ContainerPackages" /> | ||
| 7 | <PackageGroupRef Id="UncompressedPackages" /> | ||
| 8 | </Chain> | ||
| 9 | |||
| 10 | <PayloadGroupRef Id="LayoutOnlyPayloads" /> | ||
| 11 | <Container Id="PackagesContainer" Name="packages.cab" DownloadUrl="http://example.com/{0}id/{1}/{2}"> | ||
| 12 | <PackageGroupRef Id="ContainerPackages" /> | ||
| 13 | </Container> | ||
| 14 | </Bundle> | ||
| 15 | <Fragment> | ||
| 16 | <PackageGroup Id="ContainerPackages"> | ||
| 17 | <ExePackage SourceFile="burn.exe" DetectCondition="none" /> | ||
| 18 | </PackageGroup> | ||
| 19 | </Fragment> | ||
| 20 | <Fragment> | ||
| 21 | <PackageGroup Id="UncompressedPackages"> | ||
| 22 | <MsiPackage SourceFile="test.msi" DownloadUrl="http://example.com/{0}id/{1}/{2}" Compressed="no" /> | ||
| 23 | </PackageGroup> | ||
| 24 | </Fragment> | ||
| 25 | <Fragment> | ||
| 26 | <PayloadGroup Id="LayoutOnlyPayloads"> | ||
| 27 | <Payload Id="LayoutOnlyPayload" SourceFile="$(sys.SOURCEFILEPATH)" DownloadUrl="http://example.com/{0}id/{1}/{2}" Compressed="no" /> | ||
| 28 | </PayloadGroup> | ||
| 29 | </Fragment> | ||
| 30 | </Wix> | ||
