mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 08:23:15 +01:00
* 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>
47 lines
889 B
Go
47 lines
889 B
Go
package cli
|
|
|
|
import (
|
|
"os/exec"
|
|
"strings"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func TestDirectoryScanCompletesWithinTimeout(t *testing.T) {
|
|
image := "alpine:latest"
|
|
|
|
// we want to pull the image ahead of the test as to not affect the timeout value
|
|
pullDockerImage(t, image)
|
|
|
|
var cmd *exec.Cmd
|
|
var stdout, stderr string
|
|
done := make(chan struct{})
|
|
go func() {
|
|
defer close(done)
|
|
cmd, stdout, stderr = runSyftInDocker(t, nil, image, "dir:/", "-vv")
|
|
}()
|
|
|
|
select {
|
|
case <-done:
|
|
break
|
|
case <-time.After(5 * time.Second):
|
|
t.Fatalf("directory scan is taking too long")
|
|
}
|
|
|
|
assertions := []traitAssertion{
|
|
assertTableReport,
|
|
assertSuccessfulReturnCode,
|
|
}
|
|
|
|
for _, traitFn := range 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, " "))
|
|
}
|
|
|
|
}
|