dockviz/images_test.go

60 lines
1.4 KiB
Go
Raw Normal View History

package main
import (
2014-04-25 15:47:06 +02:00
"regexp"
"testing"
)
2014-04-25 15:47:06 +02:00
type RunTest struct {
json string
regexps []string
}
func Test_Dot(t *testing.T) {
2014-04-25 15:47:06 +02:00
allMatch := []string{
"(?s)digraph docker {.*}",
`(?m) base \[style=invisible\]`,
}
allRegex := compileRegexps(t, allMatch)
dotTests := []RunTest{
RunTest{
json: `[{ "VirtualSize": 662553464, "Size": 662553464, "RepoTags": [ "<none>:<none>" ], "ParentId": "", "Id": "4c1208b690c68af3476b437e7bc2bcc460f062bda2094d2d8f21a7e70368d358", "Created": 1386114144 }]`,
regexps: []string{
`base -> "4c1208b690c6"`,
},
},
}
2014-04-25 15:47:06 +02:00
for _, dotTest := range dotTests {
im, _ := parseJSON([]byte(dotTest.json))
result := jsonToDot(im)
for _, regexp := range allRegex {
if !regexp.MatchString(result) {
t.Fatalf("images dot content '%s' did not match regexp '%s'", result, regexp)
}
}
for _, regexp := range compileRegexps(t, dotTest.regexps) {
if !regexp.MatchString(result) {
t.Fatalf("images dot content '%s' did not match regexp '%s'", result, regexp)
}
}
}
}
2014-04-25 15:47:06 +02:00
func compileRegexps(t *testing.T, regexpStrings []string) []*regexp.Regexp {
2014-04-25 15:47:06 +02:00
compiledRegexps := []*regexp.Regexp{}
for _, regexpString := range regexpStrings {
regexp, err := regexp.Compile(regexpString)
if err != nil {
t.Errorf("Error in regex string '%s': %s", regexpString, err)
}
compiledRegexps = append(compiledRegexps, regexp)
}
2014-04-25 15:47:06 +02:00
return compiledRegexps
}