-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve matching for ZIP with multiple nested installers (#529)
- Loading branch information
1 parent
7826f51
commit 4f44b22
Showing
7 changed files
with
273 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
61 changes: 61 additions & 0 deletions
61
...getCreateTests/WingetCreateTests/Resources/TestPublisher.ZipMultipleNestedInstallers.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
PackageIdentifier: TestPublisher.MultipleNestedInstallers | ||
PackageVersion: 0.1.2 | ||
PackageName: Test zip app | ||
Publisher: Test publisher | ||
License: MIT | ||
ShortDescription: A manifest used for testing whether multiple nested installers are handled correctly. | ||
Description: The zip archive contains extra nested installers that are intentionally left out in the manifest to test the behavior. | ||
Installers: | ||
- Architecture: x64 | ||
InstallerType: zip | ||
InstallerUrl: https://fakedomain.com/WingetCreateTestMultipleNestedInstallers.zip | ||
InstallerSha256: 8A052767127A6E2058BAAE03B551A807777BB1B726650E2C7E92C3E92C8DF80D | ||
NestedInstallerType: portable | ||
NestedInstallerFiles: | ||
- RelativeFilePath: WingetCreateTestExeInstaller.exe | ||
PortableCommandAlias: TestExeInstallerAlias | ||
- RelativeFilePath: WingetCreateTestPortableInstaller.exe | ||
PortableCommandAlias: TestPortableInstallerAlias | ||
- RelativeFilePath: WingetCreateTestPortableInstaller (1).exe | ||
PortableCommandAlias: TestPortableInstallerAlias1 | ||
- RelativeFilePath: WingetCreateTestPortableInstaller (2).exe | ||
PortableCommandAlias: TestPortableInstallerAlias2 | ||
- Architecture: x86 | ||
InstallerType: zip | ||
InstallerUrl: https://fakedomain.com/WingetCreateTestMultipleNestedInstallers.zip | ||
InstallerSha256: 8A052767127A6E2058BAAE03B551A807777BB1B726650E2C7E92C3E92C8DF80D | ||
NestedInstallerType: portable | ||
NestedInstallerFiles: | ||
- RelativeFilePath: WingetCreateTestPortableInstaller.exe | ||
PortableCommandAlias: TestPortableInstallerAlias | ||
- RelativeFilePath: WingetCreateTestPortableInstaller (1).exe | ||
PortableCommandAlias: TestPortableInstallerAlias1 | ||
- Architecture: arm | ||
InstallerType: zip | ||
InstallerUrl: https://fakedomain.com/WingetCreateTestMultipleNestedInstallers.zip | ||
InstallerSha256: 8A052767127A6E2058BAAE03B551A807777BB1B726650E2C7E92C3E92C8DF80D | ||
NestedInstallerType: portable | ||
NestedInstallerFiles: | ||
- RelativeFilePath: WingetCreateTestPortableInstaller (2).exe | ||
PortableCommandAlias: TestPortableInstallerAlias2 | ||
- Architecture: arm64 | ||
InstallerType: zip | ||
Scope: user | ||
InstallerUrl: https://fakedomain.com/WingetCreateTestMultipleNestedInstallers.zip | ||
InstallerSha256: 8A052767127A6E2058BAAE03B551A807777BB1B726650E2C7E92C3E92C8DF80D | ||
NestedInstallerType: exe | ||
NestedInstallerFiles: | ||
- RelativeFilePath: WingetCreateTestExeInstaller.exe | ||
PortableCommandAlias: TestExeInstallerAlias | ||
- Architecture: arm64 | ||
InstallerType: zip | ||
Scope: machine | ||
InstallerUrl: https://fakedomain.com/WingetCreateTestMultipleNestedInstallers.zip | ||
InstallerSha256: 8A052767127A6E2058BAAE03B551A807777BB1B726650E2C7E92C3E92C8DF80D | ||
NestedInstallerType: msi | ||
NestedInstallerFiles: | ||
- RelativeFilePath: WingetCreateTestMsiInstaller.msi | ||
PortableCommandAlias: TestMsiInstallerAlias | ||
PackageLocale: en-US | ||
ManifestType: singleton | ||
ManifestVersion: 1.6.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.