mirror of
https://github.com/fluxcd/flux2.git
synced 2026-02-13 19:27:28 +00:00
Replace the 4 arguments to cmdTestCase with a function that can let tests run arbitrary logic if it is more complex than what is provided by the test harness. Move the existing logic into functions that the test can use for common assertions on golden files and golden values. These changes were pulled out of PR #1696 to make a smaller review. Signed-off-by: Allen Porter <allen@thebends.org>
49 lines
1.1 KiB
Go
49 lines
1.1 KiB
Go
// +build e2e
|
|
|
|
package main
|
|
|
|
import "testing"
|
|
|
|
func TestImageScanning(t *testing.T) {
|
|
cases := []struct {
|
|
args string
|
|
goldenFile string
|
|
}{
|
|
{
|
|
"create image repository podinfo --image=ghcr.io/stefanprodan/podinfo --interval=10m",
|
|
"testdata/image/create_image_repository.golden",
|
|
},
|
|
{
|
|
"create image policy podinfo-semver --image-ref=podinfo --interval=10m --select-semver=5.0.x",
|
|
"testdata/image/create_image_policy.golden",
|
|
},
|
|
{
|
|
"get image policy podinfo-semver",
|
|
"testdata/image/get_image_policy_semver.golden",
|
|
},
|
|
{
|
|
`create image policy podinfo-regex --image-ref=podinfo --interval=10m --select-semver=">4.0.0" --filter-regex="5\.0\.0"`,
|
|
"testdata/image/create_image_policy.golden",
|
|
},
|
|
{
|
|
"get image policy podinfo-regex",
|
|
"testdata/image/get_image_policy_regex.golden",
|
|
},
|
|
}
|
|
|
|
namespace := "tis"
|
|
del, err := setupTestNamespace(namespace)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
defer del()
|
|
|
|
for _, tc := range cases {
|
|
cmd := cmdTestCase{
|
|
args: tc.args + " -n=" + namespace,
|
|
assert: assertGoldenFile(tc.goldenFile),
|
|
testClusterMode: ExistingClusterMode,
|
|
}
|
|
cmd.runTestCmd(t)
|
|
}
|
|
}
|