2017-05-08 13:36:04 -04:00
|
|
|
package formatter
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/docker/docker/api/types/swarm"
|
2018-06-08 12:24:26 -04:00
|
|
|
"gotest.tools/assert"
|
|
|
|
is "gotest.tools/assert/cmp"
|
2017-05-08 13:36:04 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestConfigContextFormatWrite(t *testing.T) {
|
|
|
|
// Check default output format (verbose and non-verbose mode) for table headers
|
|
|
|
cases := []struct {
|
|
|
|
context Context
|
|
|
|
expected string
|
|
|
|
}{
|
|
|
|
// Errors
|
|
|
|
{
|
|
|
|
Context{Format: "{{InvalidFunction}}"},
|
|
|
|
`Template parsing error: template: :1: function "InvalidFunction" not defined
|
|
|
|
`,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Context{Format: "{{nil}}"},
|
|
|
|
`Template parsing error: template: :1:2: executing "" at <nil>: nil is not a command
|
|
|
|
`,
|
|
|
|
},
|
|
|
|
// Table format
|
|
|
|
{Context{Format: NewConfigFormat("table", false)},
|
|
|
|
`ID NAME CREATED UPDATED
|
|
|
|
1 passwords Less than a second ago Less than a second ago
|
|
|
|
2 id_rsa Less than a second ago Less than a second ago
|
|
|
|
`},
|
|
|
|
{Context{Format: NewConfigFormat("table {{.Name}}", true)},
|
|
|
|
`NAME
|
|
|
|
passwords
|
|
|
|
id_rsa
|
|
|
|
`},
|
|
|
|
{Context{Format: NewConfigFormat("{{.ID}}-{{.Name}}", false)},
|
|
|
|
`1-passwords
|
|
|
|
2-id_rsa
|
|
|
|
`},
|
|
|
|
}
|
|
|
|
|
|
|
|
configs := []swarm.Config{
|
|
|
|
{ID: "1",
|
|
|
|
Meta: swarm.Meta{CreatedAt: time.Now(), UpdatedAt: time.Now()},
|
|
|
|
Spec: swarm.ConfigSpec{Annotations: swarm.Annotations{Name: "passwords"}}},
|
|
|
|
{ID: "2",
|
|
|
|
Meta: swarm.Meta{CreatedAt: time.Now(), UpdatedAt: time.Now()},
|
|
|
|
Spec: swarm.ConfigSpec{Annotations: swarm.Annotations{Name: "id_rsa"}}},
|
|
|
|
}
|
|
|
|
for _, testcase := range cases {
|
|
|
|
out := bytes.NewBufferString("")
|
|
|
|
testcase.context.Output = out
|
|
|
|
if err := ConfigWrite(testcase.context, configs); err != nil {
|
2017-12-21 16:27:57 -05:00
|
|
|
assert.ErrorContains(t, err, testcase.expected)
|
2017-05-08 13:36:04 -04:00
|
|
|
} else {
|
2018-03-05 18:53:52 -05:00
|
|
|
assert.Check(t, is.Equal(out.String(), testcase.expected))
|
2017-05-08 13:36:04 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|