2015-12-18 08:03:41 -05:00
|
|
|
package formatter
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"fmt"
|
2016-08-04 08:59:45 -04:00
|
|
|
"strings"
|
2015-12-18 08:03:41 -05:00
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2016-09-06 14:18:12 -04:00
|
|
|
"github.com/docker/docker/api/types"
|
2016-08-04 08:59:45 -04:00
|
|
|
"github.com/docker/docker/pkg/stringid"
|
2016-09-12 16:59:18 -04:00
|
|
|
"github.com/docker/docker/pkg/testutil/assert"
|
2015-12-18 08:03:41 -05:00
|
|
|
)
|
|
|
|
|
2016-08-04 08:59:45 -04:00
|
|
|
func TestImageContext(t *testing.T) {
|
|
|
|
imageID := stringid.GenerateRandomID()
|
|
|
|
unix := time.Now().Unix()
|
2015-12-18 08:03:41 -05:00
|
|
|
|
2016-08-04 08:59:45 -04:00
|
|
|
var ctx imageContext
|
|
|
|
cases := []struct {
|
2017-02-03 19:48:46 -05:00
|
|
|
imageCtx imageContext
|
|
|
|
expValue string
|
|
|
|
call func() string
|
2015-12-18 08:03:41 -05:00
|
|
|
}{
|
2016-08-04 08:59:45 -04:00
|
|
|
{imageContext{
|
2016-10-03 15:17:39 -04:00
|
|
|
i: types.ImageSummary{ID: imageID},
|
2016-08-04 08:59:45 -04:00
|
|
|
trunc: true,
|
2017-02-03 19:48:46 -05:00
|
|
|
}, stringid.TruncateID(imageID), ctx.ID},
|
2016-08-04 08:59:45 -04:00
|
|
|
{imageContext{
|
2016-10-03 15:17:39 -04:00
|
|
|
i: types.ImageSummary{ID: imageID},
|
2016-08-04 08:59:45 -04:00
|
|
|
trunc: false,
|
2017-02-03 19:48:46 -05:00
|
|
|
}, imageID, ctx.ID},
|
2016-08-04 08:59:45 -04:00
|
|
|
{imageContext{
|
2016-10-03 15:17:39 -04:00
|
|
|
i: types.ImageSummary{Size: 10, VirtualSize: 10},
|
2016-08-04 08:59:45 -04:00
|
|
|
trunc: true,
|
2017-02-03 19:48:46 -05:00
|
|
|
}, "10B", ctx.Size},
|
2016-08-04 08:59:45 -04:00
|
|
|
{imageContext{
|
2016-10-03 15:17:39 -04:00
|
|
|
i: types.ImageSummary{Created: unix},
|
2016-08-04 08:59:45 -04:00
|
|
|
trunc: true,
|
2017-02-03 19:48:46 -05:00
|
|
|
}, time.Unix(unix, 0).String(), ctx.CreatedAt},
|
2016-08-04 08:59:45 -04:00
|
|
|
// FIXME
|
|
|
|
// {imageContext{
|
2016-10-03 15:17:39 -04:00
|
|
|
// i: types.ImageSummary{Created: unix},
|
2016-08-04 08:59:45 -04:00
|
|
|
// trunc: true,
|
|
|
|
// }, units.HumanDuration(time.Unix(unix, 0)), createdSinceHeader, ctx.CreatedSince},
|
|
|
|
{imageContext{
|
2016-10-03 15:17:39 -04:00
|
|
|
i: types.ImageSummary{},
|
2016-08-04 08:59:45 -04:00
|
|
|
repo: "busybox",
|
2017-02-03 19:48:46 -05:00
|
|
|
}, "busybox", ctx.Repository},
|
2016-08-04 08:59:45 -04:00
|
|
|
{imageContext{
|
2016-10-03 15:17:39 -04:00
|
|
|
i: types.ImageSummary{},
|
2016-08-04 08:59:45 -04:00
|
|
|
tag: "latest",
|
2017-02-03 19:48:46 -05:00
|
|
|
}, "latest", ctx.Tag},
|
2016-08-04 08:59:45 -04:00
|
|
|
{imageContext{
|
2016-10-03 15:17:39 -04:00
|
|
|
i: types.ImageSummary{},
|
2016-08-04 08:59:45 -04:00
|
|
|
digest: "sha256:d149ab53f8718e987c3a3024bb8aa0e2caadf6c0328f1d9d850b2a2a67f2819a",
|
2017-02-03 19:48:46 -05:00
|
|
|
}, "sha256:d149ab53f8718e987c3a3024bb8aa0e2caadf6c0328f1d9d850b2a2a67f2819a", ctx.Digest},
|
2015-12-18 08:03:41 -05:00
|
|
|
}
|
|
|
|
|
2016-08-04 08:59:45 -04:00
|
|
|
for _, c := range cases {
|
|
|
|
ctx = c.imageCtx
|
|
|
|
v := c.call()
|
|
|
|
if strings.Contains(v, ",") {
|
|
|
|
compareMultipleValues(t, v, c.expValue)
|
|
|
|
} else if v != c.expValue {
|
|
|
|
t.Fatalf("Expected %s, was %s\n", c.expValue, v)
|
2015-12-18 08:03:41 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestImageContextWrite(t *testing.T) {
|
|
|
|
unixTime := time.Now().AddDate(0, 0, -1).Unix()
|
|
|
|
expectedTime := time.Unix(unixTime, 0).String()
|
|
|
|
|
2016-09-12 16:59:18 -04:00
|
|
|
cases := []struct {
|
2015-12-18 08:03:41 -05:00
|
|
|
context ImageContext
|
|
|
|
expected string
|
|
|
|
}{
|
|
|
|
// Errors
|
|
|
|
{
|
|
|
|
ImageContext{
|
|
|
|
Context: Context{
|
|
|
|
Format: "{{InvalidFunction}}",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
`Template parsing error: template: :1: function "InvalidFunction" not defined
|
|
|
|
`,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
ImageContext{
|
|
|
|
Context: Context{
|
|
|
|
Format: "{{nil}}",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
`Template parsing error: template: :1:2: executing "" at <nil>: nil is not a command
|
|
|
|
`,
|
|
|
|
},
|
|
|
|
// Table Format
|
|
|
|
{
|
|
|
|
ImageContext{
|
|
|
|
Context: Context{
|
2016-09-12 16:59:18 -04:00
|
|
|
Format: NewImageFormat("table", false, false),
|
2015-12-18 08:03:41 -05:00
|
|
|
},
|
|
|
|
},
|
|
|
|
`REPOSITORY TAG IMAGE ID CREATED SIZE
|
2017-02-07 15:58:56 -05:00
|
|
|
image tag1 imageID1 24 hours ago 0B
|
|
|
|
image tag2 imageID2 24 hours ago 0B
|
|
|
|
<none> <none> imageID3 24 hours ago 0B
|
2015-12-18 08:03:41 -05:00
|
|
|
`,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
ImageContext{
|
|
|
|
Context: Context{
|
2016-09-12 16:59:18 -04:00
|
|
|
Format: NewImageFormat("table {{.Repository}}", false, false),
|
2015-12-18 08:03:41 -05:00
|
|
|
},
|
|
|
|
},
|
2016-06-15 01:44:49 -04:00
|
|
|
"REPOSITORY\nimage\nimage\n<none>\n",
|
2015-12-18 08:03:41 -05:00
|
|
|
},
|
|
|
|
{
|
|
|
|
ImageContext{
|
|
|
|
Context: Context{
|
2016-09-12 16:59:18 -04:00
|
|
|
Format: NewImageFormat("table {{.Repository}}", false, true),
|
2015-12-18 08:03:41 -05:00
|
|
|
},
|
|
|
|
Digest: true,
|
|
|
|
},
|
|
|
|
`REPOSITORY DIGEST
|
|
|
|
image sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf
|
|
|
|
image <none>
|
|
|
|
<none> <none>
|
|
|
|
`,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
ImageContext{
|
|
|
|
Context: Context{
|
2016-09-12 16:59:18 -04:00
|
|
|
Format: NewImageFormat("table {{.Repository}}", true, false),
|
2015-12-18 08:03:41 -05:00
|
|
|
},
|
|
|
|
},
|
2016-06-15 01:44:49 -04:00
|
|
|
"REPOSITORY\nimage\nimage\n<none>\n",
|
2015-12-18 08:03:41 -05:00
|
|
|
},
|
|
|
|
{
|
|
|
|
ImageContext{
|
|
|
|
Context: Context{
|
2016-09-12 16:59:18 -04:00
|
|
|
Format: NewImageFormat("table", true, false),
|
2015-12-18 08:03:41 -05:00
|
|
|
},
|
|
|
|
},
|
2016-06-15 01:44:49 -04:00
|
|
|
"imageID1\nimageID2\nimageID3\n",
|
2015-12-18 08:03:41 -05:00
|
|
|
},
|
|
|
|
{
|
|
|
|
ImageContext{
|
|
|
|
Context: Context{
|
2016-09-12 16:59:18 -04:00
|
|
|
Format: NewImageFormat("table", false, true),
|
2015-12-18 08:03:41 -05:00
|
|
|
},
|
|
|
|
Digest: true,
|
|
|
|
},
|
|
|
|
`REPOSITORY TAG DIGEST IMAGE ID CREATED SIZE
|
2017-02-07 15:58:56 -05:00
|
|
|
image tag1 sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf imageID1 24 hours ago 0B
|
|
|
|
image tag2 <none> imageID2 24 hours ago 0B
|
|
|
|
<none> <none> <none> imageID3 24 hours ago 0B
|
2015-12-18 08:03:41 -05:00
|
|
|
`,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
ImageContext{
|
|
|
|
Context: Context{
|
2016-09-12 16:59:18 -04:00
|
|
|
Format: NewImageFormat("table", true, true),
|
2015-12-18 08:03:41 -05:00
|
|
|
},
|
|
|
|
Digest: true,
|
|
|
|
},
|
2016-06-15 01:44:49 -04:00
|
|
|
"imageID1\nimageID2\nimageID3\n",
|
2015-12-18 08:03:41 -05:00
|
|
|
},
|
|
|
|
// Raw Format
|
|
|
|
{
|
|
|
|
ImageContext{
|
|
|
|
Context: Context{
|
2016-09-12 16:59:18 -04:00
|
|
|
Format: NewImageFormat("raw", false, false),
|
2015-12-18 08:03:41 -05:00
|
|
|
},
|
|
|
|
},
|
|
|
|
fmt.Sprintf(`repository: image
|
|
|
|
tag: tag1
|
|
|
|
image_id: imageID1
|
|
|
|
created_at: %s
|
2017-02-07 15:58:56 -05:00
|
|
|
virtual_size: 0B
|
2015-12-18 08:03:41 -05:00
|
|
|
|
|
|
|
repository: image
|
|
|
|
tag: tag2
|
|
|
|
image_id: imageID2
|
|
|
|
created_at: %s
|
2017-02-07 15:58:56 -05:00
|
|
|
virtual_size: 0B
|
2015-12-18 08:03:41 -05:00
|
|
|
|
|
|
|
repository: <none>
|
|
|
|
tag: <none>
|
|
|
|
image_id: imageID3
|
|
|
|
created_at: %s
|
2017-02-07 15:58:56 -05:00
|
|
|
virtual_size: 0B
|
2015-12-18 08:03:41 -05:00
|
|
|
|
2016-06-15 01:44:49 -04:00
|
|
|
`, expectedTime, expectedTime, expectedTime),
|
2015-12-18 08:03:41 -05:00
|
|
|
},
|
|
|
|
{
|
|
|
|
ImageContext{
|
|
|
|
Context: Context{
|
2016-09-12 16:59:18 -04:00
|
|
|
Format: NewImageFormat("raw", false, true),
|
2015-12-18 08:03:41 -05:00
|
|
|
},
|
|
|
|
Digest: true,
|
|
|
|
},
|
|
|
|
fmt.Sprintf(`repository: image
|
|
|
|
tag: tag1
|
|
|
|
digest: sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf
|
|
|
|
image_id: imageID1
|
|
|
|
created_at: %s
|
2017-02-07 15:58:56 -05:00
|
|
|
virtual_size: 0B
|
2015-12-18 08:03:41 -05:00
|
|
|
|
|
|
|
repository: image
|
|
|
|
tag: tag2
|
|
|
|
digest: <none>
|
|
|
|
image_id: imageID2
|
|
|
|
created_at: %s
|
2017-02-07 15:58:56 -05:00
|
|
|
virtual_size: 0B
|
2015-12-18 08:03:41 -05:00
|
|
|
|
|
|
|
repository: <none>
|
|
|
|
tag: <none>
|
|
|
|
digest: <none>
|
|
|
|
image_id: imageID3
|
|
|
|
created_at: %s
|
2017-02-07 15:58:56 -05:00
|
|
|
virtual_size: 0B
|
2015-12-18 08:03:41 -05:00
|
|
|
|
2016-06-15 01:44:49 -04:00
|
|
|
`, expectedTime, expectedTime, expectedTime),
|
2015-12-18 08:03:41 -05:00
|
|
|
},
|
|
|
|
{
|
|
|
|
ImageContext{
|
|
|
|
Context: Context{
|
2016-09-12 16:59:18 -04:00
|
|
|
Format: NewImageFormat("raw", true, false),
|
2015-12-18 08:03:41 -05:00
|
|
|
},
|
|
|
|
},
|
|
|
|
`image_id: imageID1
|
|
|
|
image_id: imageID2
|
|
|
|
image_id: imageID3
|
|
|
|
`,
|
|
|
|
},
|
|
|
|
// Custom Format
|
|
|
|
{
|
|
|
|
ImageContext{
|
|
|
|
Context: Context{
|
2016-09-12 16:59:18 -04:00
|
|
|
Format: NewImageFormat("{{.Repository}}", false, false),
|
2015-12-18 08:03:41 -05:00
|
|
|
},
|
|
|
|
},
|
2016-06-15 01:44:49 -04:00
|
|
|
"image\nimage\n<none>\n",
|
2015-12-18 08:03:41 -05:00
|
|
|
},
|
|
|
|
{
|
|
|
|
ImageContext{
|
|
|
|
Context: Context{
|
2016-09-12 16:59:18 -04:00
|
|
|
Format: NewImageFormat("{{.Repository}}", false, true),
|
2015-12-18 08:03:41 -05:00
|
|
|
},
|
|
|
|
Digest: true,
|
|
|
|
},
|
2016-06-15 01:44:49 -04:00
|
|
|
"image\nimage\n<none>\n",
|
2015-12-18 08:03:41 -05:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2016-09-12 16:59:18 -04:00
|
|
|
for _, testcase := range cases {
|
2016-10-03 15:17:39 -04:00
|
|
|
images := []types.ImageSummary{
|
2015-12-18 08:03:41 -05:00
|
|
|
{ID: "imageID1", RepoTags: []string{"image:tag1"}, RepoDigests: []string{"image@sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf"}, Created: unixTime},
|
|
|
|
{ID: "imageID2", RepoTags: []string{"image:tag2"}, Created: unixTime},
|
|
|
|
{ID: "imageID3", RepoTags: []string{"<none>:<none>"}, RepoDigests: []string{"<none>@<none>"}, Created: unixTime},
|
|
|
|
}
|
|
|
|
out := bytes.NewBufferString("")
|
2016-09-12 16:59:18 -04:00
|
|
|
testcase.context.Output = out
|
|
|
|
err := ImageWrite(testcase.context, images)
|
|
|
|
if err != nil {
|
|
|
|
assert.Error(t, err, testcase.expected)
|
|
|
|
} else {
|
|
|
|
assert.Equal(t, out.String(), testcase.expected)
|
2015-12-18 08:03:41 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestImageContextWriteWithNoImage(t *testing.T) {
|
|
|
|
out := bytes.NewBufferString("")
|
2016-10-03 15:17:39 -04:00
|
|
|
images := []types.ImageSummary{}
|
2015-12-18 08:03:41 -05:00
|
|
|
|
|
|
|
contexts := []struct {
|
|
|
|
context ImageContext
|
|
|
|
expected string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
ImageContext{
|
|
|
|
Context: Context{
|
2016-09-12 16:59:18 -04:00
|
|
|
Format: NewImageFormat("{{.Repository}}", false, false),
|
2015-12-18 08:03:41 -05:00
|
|
|
Output: out,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
ImageContext{
|
|
|
|
Context: Context{
|
2016-09-12 16:59:18 -04:00
|
|
|
Format: NewImageFormat("table {{.Repository}}", false, false),
|
2015-12-18 08:03:41 -05:00
|
|
|
Output: out,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"REPOSITORY\n",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
ImageContext{
|
|
|
|
Context: Context{
|
2016-09-12 16:59:18 -04:00
|
|
|
Format: NewImageFormat("{{.Repository}}", false, true),
|
2015-12-18 08:03:41 -05:00
|
|
|
Output: out,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
ImageContext{
|
|
|
|
Context: Context{
|
2016-09-12 16:59:18 -04:00
|
|
|
Format: NewImageFormat("table {{.Repository}}", false, true),
|
2015-12-18 08:03:41 -05:00
|
|
|
Output: out,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"REPOSITORY DIGEST\n",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, context := range contexts {
|
2016-09-12 16:59:18 -04:00
|
|
|
ImageWrite(context.context, images)
|
|
|
|
assert.Equal(t, out.String(), context.expected)
|
2015-12-18 08:03:41 -05:00
|
|
|
// Clean buffer
|
|
|
|
out.Reset()
|
|
|
|
}
|
|
|
|
}
|