mirror of
https://github.com/anchore/syft
synced 2024-11-13 23:57:07 +00:00
fb0857ff93
* change directory resolver to ignore system runtime paths + drive by index Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * add event/etui support for filesystem indexing (for dir resolver) Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * add warnings for path indexing problems Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * add directory resolver index tests Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * improve testing around directory resolver Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * renamed p var to path when not conflicting with import Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * pull docker image in CLI dir scan timeout test Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * ensure file not exist errors do not stop directory resolver indexing Signed-off-by: Alex Goodman <alex.goodman@anchore.com>
116 lines
2.9 KiB
Go
116 lines
2.9 KiB
Go
package cli
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/sergi/go-diff/diffmatchpatch"
|
|
)
|
|
|
|
func TestRootCmdAliasesToPackagesSubcommand(t *testing.T) {
|
|
request := "docker-archive:" + getFixtureImage(t, "image-pkg-coverage")
|
|
|
|
tests := []struct {
|
|
name string
|
|
env map[string]string
|
|
assertions []traitAssertion
|
|
}{
|
|
{
|
|
name: "go-case",
|
|
assertions: []traitAssertion{
|
|
assertTableReport,
|
|
assertSuccessfulReturnCode,
|
|
},
|
|
},
|
|
{
|
|
name: "respond-to-output-binding",
|
|
env: map[string]string{
|
|
"SYFT_OUTPUT": "text",
|
|
},
|
|
assertions: []traitAssertion{
|
|
assertInOutput("[Image]"),
|
|
assertSuccessfulReturnCode,
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
t.Run(test.name, func(t *testing.T) {
|
|
aliasCmd, aliasStdout, aliasStderr := runSyft(t, test.env, request)
|
|
for _, traitFn := range test.assertions {
|
|
traitFn(t, aliasStdout, aliasStderr, aliasCmd.ProcessState.ExitCode())
|
|
}
|
|
|
|
pkgCmd, pkgsStdout, pkgsStderr := runSyft(t, test.env, "packages", request)
|
|
for _, traitFn := range test.assertions {
|
|
traitFn(t, pkgsStdout, pkgsStderr, pkgCmd.ProcessState.ExitCode())
|
|
}
|
|
|
|
if aliasStdout != pkgsStdout {
|
|
t.Errorf("packages and root command should have same report output but do not!")
|
|
dmp := diffmatchpatch.New()
|
|
diffs := dmp.DiffMain(aliasStdout, pkgsStdout, true)
|
|
t.Error(dmp.DiffPrettyText(diffs))
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestPersistentFlags(t *testing.T) {
|
|
request := "docker-archive:" + getFixtureImage(t, "image-pkg-coverage")
|
|
|
|
tests := []struct {
|
|
name string
|
|
args []string
|
|
env map[string]string
|
|
assertions []traitAssertion
|
|
}{
|
|
{
|
|
name: "quiet-flag",
|
|
// note: the root command will always show the deprecation warning, so the packages command is used instead
|
|
args: []string{"packages", "-q", request},
|
|
assertions: []traitAssertion{
|
|
func(tb testing.TB, stdout, stderr string, rc int) {
|
|
// ensure there is no status
|
|
if len(stderr) != 0 {
|
|
tb.Errorf("should have seen no stderr output, got %d bytes", len(stderr))
|
|
}
|
|
// ensure there is still a report
|
|
if len(stdout) == 0 {
|
|
tb.Errorf("should have seen a report on stdout, got nothing")
|
|
}
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "info-log-flag",
|
|
args: []string{"-v", request},
|
|
assertions: []traitAssertion{
|
|
assertLoggingLevel("info"),
|
|
assertSuccessfulReturnCode,
|
|
},
|
|
},
|
|
{
|
|
name: "debug-log-flag",
|
|
args: []string{"-vv", request},
|
|
assertions: []traitAssertion{
|
|
assertLoggingLevel("debug"),
|
|
assertSuccessfulReturnCode,
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
t.Run(test.name, func(t *testing.T) {
|
|
cmd, stdout, stderr := runSyft(t, test.env, test.args...)
|
|
for _, traitFn := range test.assertions {
|
|
traitFn(t, stdout, stderr, cmd.ProcessState.ExitCode())
|
|
}
|
|
if t.Failed() {
|
|
t.Log("STDOUT:\n", stdout)
|
|
t.Log("STDERR:\n", stderr)
|
|
t.Log("COMMAND:", strings.Join(cmd.Args, " "))
|
|
}
|
|
})
|
|
}
|
|
}
|