-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Expose deeper installation detection through Com #2420
Merged
Merged
Changes from 12 commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
83f8f26
interface
yao-msft a0f4219
build
yao-msft f5a2070
repo interface
yao-msft 41b53ba
ResultStatus to follow convention
yao-msft 34e629f
Com layer impl
yao-msft a4cf960
detectimpl
yao-msft 89518ea
Move common code
yao-msft 2594821
Fix build
yao-msft f743f7d
test debug
yao-msft 5478bec
Test fix
yao-msft 82927ee
spelling
yao-msft 858b37f
Try fix e2e
yao-msft 10e262e
Merge remote-tracking branch 'upstream/master' into detectionimpl
yao-msft eaffb41
fix build after merge
yao-msft 5d331ca
pr comments
yao-msft 55e2208
try fix e2e tests
yao-msft 3d8e4e1
fix spelling
yao-msft b94bf66
Merge remote-tracking branch 'upstream/master' into detectionimpl
yao-msft 26b5983
reuse existing code after merge
yao-msft File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
251 changes: 251 additions & 0 deletions
251
src/AppInstallerCLIE2ETests/Interop/CheckInstalledStatusInterop.cs
Large diffs are not rendered by default.
Oops, something went wrong.
24 changes: 24 additions & 0 deletions
24
src/AppInstallerCLIE2ETests/TestData/Manifests/TestInstalledStatus.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,24 @@ | ||
PackageIdentifier: AppInstallerTest.TestCheckInstalledStatus | ||
PackageVersion: 1.0 | ||
PackageName: TestCheckInstalledStatus | ||
PackageLocale: en-US | ||
Publisher: Microsoft | ||
License: Test | ||
ShortDescription: E2E test for check installed status test. | ||
Installers: | ||
- Architecture: neutral | ||
InstallerUrl: https://localhost:5001/TestKit/AppInstallerTestExeInstaller/AppInstallerTestExeInstaller.exe | ||
InstallerType: exe | ||
InstallerSha256: <EXEHASH> | ||
ProductCode: CheckInstalledStatusProductId | ||
InstallationMetadata: | ||
DefaultInstallLocation: "%TEMP%\\TestInstalledStatus" | ||
Files: | ||
- RelativeFilePath: "data.txt" | ||
# Hash value is for a txt file with "Test" as content in utf8 | ||
FileSha256: 532eaabd9574880dbf76b9b8cc00832c20a6ec113d682299550d7a6e0f345e25 | ||
FileType: other | ||
- RelativeFilePath: "TestExeInstalled.txt" | ||
FileType: other | ||
ManifestType: singleton | ||
ManifestVersion: 1.3.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
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
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
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
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should these actually be success codes when it is a case of not full success? (not have the error bit set) #Resolved