2017-02-03 19:48:46 -05:00
|
|
|
package formatter
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"testing"
|
|
|
|
|
2018-03-05 18:53:52 -05:00
|
|
|
"github.com/gotestyourself/gotestyourself/assert"
|
|
|
|
is "github.com/gotestyourself/gotestyourself/assert/cmp"
|
2017-09-07 17:50:44 -04:00
|
|
|
"github.com/gotestyourself/gotestyourself/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{
|
|
|
|
Format: NewDiskUsageFormat("table"),
|
|
|
|
},
|
|
|
|
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
|
2017-05-15 17:14:31 -04:00
|
|
|
Build Cache 0B 0B
|
2017-02-03 19:48:46 -05:00
|
|
|
`,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
DiskUsageContext{Verbose: true},
|
|
|
|
`Images space usage:
|
|
|
|
|
|
|
|
REPOSITORY TAG IMAGE ID CREATED ago SIZE SHARED SIZE UNIQUE SiZE CONTAINERS
|
|
|
|
|
|
|
|
Containers space usage:
|
|
|
|
|
|
|
|
CONTAINER ID IMAGE COMMAND LOCAL VOLUMES SIZE CREATED ago STATUS NAMES
|
|
|
|
|
|
|
|
Local Volumes space usage:
|
|
|
|
|
|
|
|
VOLUME NAME LINKS SIZE
|
2017-05-15 17:14:31 -04:00
|
|
|
|
|
|
|
Build cache usage: 0B
|
|
|
|
|
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{
|
|
|
|
Format: NewDiskUsageFormat("table"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
`TYPE TOTAL ACTIVE SIZE RECLAIMABLE
|
|
|
|
Images 0 0 0B 0B
|
|
|
|
Containers 0 0 0B 0B
|
|
|
|
Local Volumes 0 0 0B 0B
|
2017-05-15 17:14:31 -04:00
|
|
|
Build Cache 0B 0B
|
2017-03-02 07:05:48 -05:00
|
|
|
`,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
DiskUsageContext{
|
|
|
|
Context: Context{
|
|
|
|
Format: NewDiskUsageFormat("table {{.Type}}\t{{.Active}}"),
|
|
|
|
},
|
|
|
|
},
|
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{
|
|
|
|
Format: NewDiskUsageFormat("raw"),
|
|
|
|
},
|
|
|
|
},
|
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
|
|
|
}
|
|
|
|
}
|