mirror of
https://github.com/fleetdm/fleet
synced 2026-05-06 06:48:54 +00:00
<!-- Add the related story/sub-task/bug number, like Resolves #123, or remove if NA --> **Related issue:** Resolves #33250 Waived most new failures. Planning to come back and fix some of them in subsequent PRs.
88 lines
2.1 KiB
Go
88 lines
2.1 KiB
Go
package file
|
|
|
|
import (
|
|
"flag"
|
|
"io"
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
var update = flag.Bool("update", false, "update the golden files of this test")
|
|
|
|
func TestMain(m *testing.M) {
|
|
flag.Parse()
|
|
os.Exit(m.Run())
|
|
}
|
|
|
|
// Note: to update the goldens, delete testdata/scripts/* and run the tests with `-update`:
|
|
//
|
|
// go test ./pkg/file/... -update
|
|
func TestGetInstallAndRemoveScript(t *testing.T) {
|
|
t.Parallel()
|
|
scriptsByType := map[string]map[string]string{
|
|
"msi": {
|
|
"install": "./scripts/install_msi.ps1",
|
|
"remove": "./scripts/remove_msi.ps1",
|
|
"uninstall": "./scripts/uninstall_msi.ps1",
|
|
},
|
|
"pkg": {
|
|
"install": "./scripts/install_pkg.sh",
|
|
"remove": "./scripts/remove_pkg.sh",
|
|
"uninstall": "./scripts/uninstall_pkg.sh",
|
|
},
|
|
"deb": {
|
|
"install": "./scripts/install_deb.sh",
|
|
"remove": "./scripts/remove_deb.sh",
|
|
"uninstall": "./scripts/uninstall_deb.sh",
|
|
},
|
|
"rpm": {
|
|
"install": "./scripts/install_rpm.sh",
|
|
"remove": "./scripts/remove_rpm.sh",
|
|
"uninstall": "./scripts/uninstall_rpm.sh",
|
|
},
|
|
"exe": {
|
|
"install": "",
|
|
"remove": "./scripts/remove_exe.ps1",
|
|
"uninstall": "",
|
|
},
|
|
}
|
|
|
|
for itype, scripts := range scriptsByType {
|
|
gotScript := GetInstallScript(itype)
|
|
assertGoldenMatches(t, scripts["install"], gotScript, *update)
|
|
|
|
gotScript = GetRemoveScript(itype)
|
|
assertGoldenMatches(t, scripts["remove"], gotScript, *update)
|
|
|
|
gotScript = GetUninstallScript(itype)
|
|
assertGoldenMatches(t, scripts["uninstall"], gotScript, *update)
|
|
}
|
|
}
|
|
|
|
func assertGoldenMatches(t *testing.T, goldenFile string, actual string, update bool) {
|
|
t.Helper()
|
|
if goldenFile == "" {
|
|
require.Empty(t, actual)
|
|
return
|
|
}
|
|
|
|
goldenPath := filepath.Join("testdata", goldenFile+".golden")
|
|
|
|
f, err := os.OpenFile(goldenPath, os.O_RDWR|os.O_CREATE, 0o644) // nolint:gosec // G302
|
|
require.NoError(t, err)
|
|
defer f.Close()
|
|
|
|
if update {
|
|
_, err := f.WriteString(actual)
|
|
require.NoError(t, err)
|
|
return
|
|
}
|
|
|
|
content, err := io.ReadAll(f)
|
|
require.NoError(t, err)
|
|
assert.Equal(t, string(content), actual)
|
|
}
|