-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: verify MSI install permissions (#1026)
Issue #, if available: *Description of changes:* *Testing done:* - [ ] I've reviewed the guidance in CONTRIBUTING.md #### License Acceptance By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license. Signed-off-by: Kern Walster <[email protected]>
- Loading branch information
Showing
3 changed files
with
57 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
param( | ||
[Parameter(Mandatory=$true)] | ||
$Path | ||
) | ||
|
||
$includeExplicit = $true | ||
$includeInherited = $false | ||
(Get-Acl $PATH).GetAccessRules($includeExplicit, $includeInherited, [System.Security.Principal.NTAccount]) |
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,48 @@ | ||
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
//go:build windows | ||
|
||
package vm | ||
|
||
import ( | ||
"fmt" | ||
"os" | ||
"os/exec" | ||
|
||
"github.com/onsi/ginkgo/v2" | ||
"github.com/onsi/gomega" | ||
"github.com/runfinch/common-tests/option" | ||
) | ||
|
||
func testMSIInstallPermission(_ *option.Option, installed bool) { | ||
finchInstallFolder := `C:\Program Files\Finch` | ||
finchBin := finchInstallFolder + `\bin\finch.exe` | ||
ginkgo.Describe("The Finch Installer", func() { | ||
ginkgo.BeforeEach(func() { | ||
if !installed { | ||
ginkgo.Skip("install permissions are only checked on the installed MSI") | ||
} | ||
}) | ||
ginkgo.It("should install finch at "+finchBin, func() { | ||
_, err := os.Stat(finchBin) | ||
gomega.Expect(err).Should(gomega.BeNil()) | ||
}) | ||
ginkgo.DescribeTable("should verify permissions", | ||
func(path string) { | ||
_, err := os.Stat(path) | ||
gomega.Expect(err).Should(gomega.BeNil()) | ||
path = fmt.Sprintf(`"%s"`, path) | ||
cmd := exec.Command("powershell", "-NoProfile", `.\install_windows_permission_check.ps1`, path) | ||
out, err := cmd.CombinedOutput() | ||
// Verify that there are no explicit permissions meaning we rely on inherited permissions. | ||
// Note: this checks the output before checking the error because if there is a failure, the | ||
// output will contain the error information and the error itself will be effectively "exit status 1". | ||
gomega.Expect(string(out)).Should(gomega.BeEmpty()) | ||
gomega.Expect(err).Should(gomega.BeNil()) | ||
}, | ||
ginkgo.Entry("when the path is the install folder", finchInstallFolder), | ||
ginkgo.Entry("when the path is the finch binary", finchBin), | ||
) | ||
}) | ||
} |
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