reg/vulns_test.go
Jess Frazelle 73712bf067
add clair integration tests
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
2018-06-12 10:04:35 -04:00

19 lines
389 B
Go

package main
import (
"strings"
"testing"
)
func TestVulns(t *testing.T) {
out, err := run("vulns", "--clair", "http://localhost:6060", "alpine:3.5")
if err != nil {
t.Fatalf("output: %s, error: %v", string(out), err)
}
expected := `clair.clair resp.Status=200 OK`
if !strings.HasSuffix(strings.TrimSpace(out), expected) {
t.Logf("expected: %s\ngot: %s", expected, out)
}
}