mirror of
https://github.com/anchore/syft
synced 2024-11-10 14:24:12 +00:00
30 lines
611 B
Go
30 lines
611 B
Go
package cli
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestVersionCmdPrintsToStdout(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
env map[string]string
|
|
assertions []traitAssertion
|
|
}{
|
|
{
|
|
name: "version command prints to stdout",
|
|
assertions: []traitAssertion{
|
|
assertInOutput("Version:"),
|
|
assertNoStderr,
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
t.Run(test.name, func(t *testing.T) {
|
|
pkgCmd, pkgsStdout, pkgsStderr := runSyft(t, test.env, "version")
|
|
for _, traitFn := range test.assertions {
|
|
traitFn(t, pkgsStdout, pkgsStderr, pkgCmd.ProcessState.ExitCode())
|
|
}
|
|
})
|
|
}
|
|
}
|