mirror of
https://github.com/anchore/syft
synced 2024-11-10 06:14:16 +00:00
30 lines
591 B
Go
30 lines
591 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:"),
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
|
||
|
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())
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
}
|