2017-02-03 19:48:46 -05:00
|
|
|
package formatter
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"testing"
|
|
|
|
|
2018-06-08 12:24:26 -04:00
|
|
|
"gotest.tools/assert"
|
|
|
|
is "gotest.tools/assert/cmp"
|
|
|
|
"gotest.tools/golden"
|
2017-02-03 19:48:46 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestDiskUsageContextFormatWrite(t *testing.T) {
|
|
|
|
cases := []struct {
|
|
|
|
context DiskUsageContext
|
|
|
|
expected string
|
|
|
|
}{
|
2017-03-02 07:05:48 -05:00
|
|
|
// Check default output format (verbose and non-verbose mode) for table headers
|
2017-02-03 19:48:46 -05:00
|
|
|
{
|
2017-03-02 07:05:48 -05:00
|
|
|
DiskUsageContext{
|
|
|
|
Context: Context{
|
2018-09-13 13:47:40 -04:00
|
|
|
Format: NewDiskUsageFormat("table", false),
|
2017-03-02 07:05:48 -05:00
|
|
|
},
|
|
|
|
Verbose: false},
|
2017-02-03 19:48:46 -05:00
|
|
|
`TYPE TOTAL ACTIVE SIZE RECLAIMABLE
|
|
|
|
Images 0 0 0B 0B
|
|
|
|
Containers 0 0 0B 0B
|
|
|
|
Local Volumes 0 0 0B 0B
|
2018-06-05 20:37:27 -04:00
|
|
|
Build Cache 0 0 0B 0B
|
2017-02-03 19:48:46 -05:00
|
|
|
`,
|
|
|
|
},
|
|
|
|
{
|
2018-09-13 13:47:40 -04:00
|
|
|
DiskUsageContext{Verbose: true, Context: Context{Format: NewDiskUsageFormat("table", true)}},
|
2017-02-03 19:48:46 -05:00
|
|
|
`Images space usage:
|
|
|
|
|
2018-08-31 18:14:36 -04:00
|
|
|
REPOSITORY TAG IMAGE ID CREATED SIZE SHARED SIZE UNIQUE SIZE CONTAINERS
|
2017-02-03 19:48:46 -05:00
|
|
|
|
|
|
|
Containers space usage:
|
|
|
|
|
2018-08-31 18:14:36 -04:00
|
|
|
CONTAINER ID IMAGE COMMAND LOCAL VOLUMES SIZE CREATED STATUS NAMES
|
2017-02-03 19:48:46 -05:00
|
|
|
|
|
|
|
Local Volumes space usage:
|
|
|
|
|
|
|
|
VOLUME NAME LINKS SIZE
|
2017-05-15 17:14:31 -04:00
|
|
|
|
|
|
|
Build cache usage: 0B
|
|
|
|
|
2018-09-13 13:47:40 -04:00
|
|
|
CACHE ID CACHE TYPE SIZE CREATED LAST USED USAGE SHARED
|
2017-03-02 07:05:48 -05:00
|
|
|
`,
|
|
|
|
},
|
2018-09-13 13:47:40 -04:00
|
|
|
{
|
|
|
|
DiskUsageContext{Verbose: true, Context: Context{Format: NewDiskUsageFormat("raw", true)}},
|
|
|
|
``,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
DiskUsageContext{Verbose: true, Context: Context{Format: NewDiskUsageFormat("{{json .}}", true)}},
|
|
|
|
`{"Images":[],"Containers":[],"Volumes":[],"BuildCache":[]}`,
|
|
|
|
},
|
2017-03-02 07:05:48 -05:00
|
|
|
// Errors
|
|
|
|
{
|
|
|
|
DiskUsageContext{
|
|
|
|
Context: Context{
|
|
|
|
Format: "{{InvalidFunction}}",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
`Template parsing error: template: :1: function "InvalidFunction" not defined
|
|
|
|
`,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
DiskUsageContext{
|
|
|
|
Context: Context{
|
|
|
|
Format: "{{nil}}",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
`Template parsing error: template: :1:2: executing "" at <nil>: nil is not a command
|
|
|
|
`,
|
|
|
|
},
|
|
|
|
// Table Format
|
|
|
|
{
|
|
|
|
DiskUsageContext{
|
|
|
|
Context: Context{
|
2018-09-13 13:47:40 -04:00
|
|
|
Format: NewDiskUsageFormat("table", false),
|
2017-03-02 07:05:48 -05:00
|
|
|
},
|
|
|
|
},
|
|
|
|
`TYPE TOTAL ACTIVE SIZE RECLAIMABLE
|
|
|
|
Images 0 0 0B 0B
|
|
|
|
Containers 0 0 0B 0B
|
|
|
|
Local Volumes 0 0 0B 0B
|
2018-06-05 20:37:27 -04:00
|
|
|
Build Cache 0 0 0B 0B
|
2017-03-02 07:05:48 -05:00
|
|
|
`,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
DiskUsageContext{
|
|
|
|
Context: Context{
|
2018-09-13 13:47:40 -04:00
|
|
|
Format: NewDiskUsageFormat("table {{.Type}}\t{{.Active}}", false),
|
2017-03-02 07:05:48 -05:00
|
|
|
},
|
|
|
|
},
|
2017-09-07 17:50:44 -04:00
|
|
|
string(golden.Get(t, "disk-usage-context-write-custom.golden")),
|
2017-03-02 07:05:48 -05:00
|
|
|
},
|
|
|
|
// Raw Format
|
|
|
|
{
|
|
|
|
DiskUsageContext{
|
|
|
|
Context: Context{
|
2018-09-13 13:47:40 -04:00
|
|
|
Format: NewDiskUsageFormat("raw", false),
|
2017-03-02 07:05:48 -05:00
|
|
|
},
|
|
|
|
},
|
2017-09-07 17:50:44 -04:00
|
|
|
string(golden.Get(t, "disk-usage-raw-format.golden")),
|
2017-02-03 19:48:46 -05:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, testcase := range cases {
|
|
|
|
out := bytes.NewBufferString("")
|
|
|
|
testcase.context.Output = out
|
2017-03-02 07:05:48 -05:00
|
|
|
if err := testcase.context.Write(); err != nil {
|
2018-03-05 18:53:52 -05:00
|
|
|
assert.Check(t, is.Equal(testcase.expected, err.Error()))
|
2017-03-02 07:05:48 -05:00
|
|
|
} else {
|
2018-03-05 18:53:52 -05:00
|
|
|
assert.Check(t, is.Equal(testcase.expected, out.String()))
|
2017-03-02 07:05:48 -05:00
|
|
|
}
|
2017-02-03 19:48:46 -05:00
|
|
|
}
|
|
|
|
}
|