mirror of
https://github.com/anchore/syft
synced 2024-11-10 06:14:16 +00:00
ba80e490c2
* feat: add preRun func to version to restore stdout Signed-off-by: Christopher Phillips <christopher.phillips@anchore.com> * test: add test to capture version in output Signed-off-by: Christopher Phillips <christopher.phillips@anchore.com> * change stdout buffering to log to be opt-in per command Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * fix tests Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> --------- Signed-off-by: Christopher Phillips <christopher.phillips@anchore.com> Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> Co-authored-by: Alex Goodman <wagoodman@users.noreply.github.com>
29 lines
591 B
Go
29 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())
|
|
}
|
|
})
|
|
}
|
|
}
|