reg/vulns_test.go
Jess Frazelle 7b1564a6a1
update
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
2018-09-24 23:03:13 -04:00

21 lines
438 B
Go

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