2017-06-20 14:00:01 -04:00
|
|
|
package stack
|
|
|
|
|
|
|
|
import (
|
2022-02-25 08:31:31 -05:00
|
|
|
"io"
|
2017-06-20 14:00:01 -04:00
|
|
|
"testing"
|
|
|
|
|
2017-08-21 16:30:09 -04:00
|
|
|
"github.com/docker/cli/internal/test"
|
2019-04-02 11:20:21 -04:00
|
|
|
. "github.com/docker/cli/internal/test/builders" // Import builders to get the builder function as package function
|
2017-06-20 14:00:01 -04:00
|
|
|
"github.com/docker/docker/api/types"
|
|
|
|
"github.com/docker/docker/api/types/swarm"
|
|
|
|
"github.com/pkg/errors"
|
2020-02-22 12:12:14 -05:00
|
|
|
"gotest.tools/v3/assert"
|
|
|
|
"gotest.tools/v3/golden"
|
2017-06-20 14:00:01 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestListErrors(t *testing.T) {
|
|
|
|
testCases := []struct {
|
|
|
|
args []string
|
|
|
|
flags map[string]string
|
|
|
|
serviceListFunc func(options types.ServiceListOptions) ([]swarm.Service, error)
|
|
|
|
expectedError string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
args: []string{"foo"},
|
|
|
|
expectedError: "accepts no argument",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
flags: map[string]string{
|
|
|
|
"format": "{{invalid format}}",
|
|
|
|
},
|
linting: fix incorrectly formatted errors (revive)
cli/compose/interpolation/interpolation.go:102:4: error-strings: error strings should not be capitalized or end with punctuation or a newline (revive)
"invalid interpolation format for %s: %#v. You may need to escape any $ with another $.",
^
cli/command/stack/loader/loader.go:30:30: error-strings: error strings should not be capitalized or end with punctuation or a newline (revive)
return nil, errors.Errorf("Compose file contains unsupported options:\n\n%s\n",
^
cli/command/formatter/formatter.go:76:30: error-strings: error strings should not be capitalized or end with punctuation or a newline (revive)
return tmpl, errors.Errorf("Template parsing error: %v\n", err)
^
cli/command/formatter/formatter.go:97:24: error-strings: error strings should not be capitalized or end with punctuation or a newline (revive)
return errors.Errorf("Template parsing error: %v\n", err)
^
cli/command/image/build.go:257:25: error-strings: error strings should not be capitalized or end with punctuation or a newline (revive)
return errors.Errorf("error checking context: '%s'.", err)
^
cli/command/volume/create.go:35:27: error-strings: error strings should not be capitalized or end with punctuation or a newline (revive)
return errors.Errorf("Conflicting options: either specify --name or provide positional arg, not both\n")
^
cli/command/container/create.go:160:24: error-strings: error strings should not be capitalized or end with punctuation or a newline (revive)
return errors.Errorf("failed to remove the CID file '%s': %s \n", cid.path, err)
^
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2022-03-27 15:13:03 -04:00
|
|
|
expectedError: "template parsing error",
|
2017-06-20 14:00:01 -04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
serviceListFunc: func(options types.ServiceListOptions) ([]swarm.Service, error) {
|
|
|
|
return []swarm.Service{}, errors.Errorf("error getting services")
|
|
|
|
},
|
|
|
|
expectedError: "error getting services",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
serviceListFunc: func(options types.ServiceListOptions) ([]swarm.Service, error) {
|
|
|
|
return []swarm.Service{*Service()}, nil
|
|
|
|
},
|
|
|
|
expectedError: "cannot get label",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range testCases {
|
2017-07-05 14:43:39 -04:00
|
|
|
cmd := newListCommand(test.NewFakeCli(&fakeClient{
|
2017-06-20 14:00:01 -04:00
|
|
|
serviceListFunc: tc.serviceListFunc,
|
2022-02-22 07:46:35 -05:00
|
|
|
}))
|
2017-06-20 14:00:01 -04:00
|
|
|
cmd.SetArgs(tc.args)
|
2022-02-25 08:31:31 -05:00
|
|
|
cmd.SetOut(io.Discard)
|
2017-06-20 14:00:01 -04:00
|
|
|
for key, value := range tc.flags {
|
|
|
|
cmd.Flags().Set(key, value)
|
|
|
|
}
|
2018-03-06 14:03:47 -05:00
|
|
|
assert.ErrorContains(t, cmd.Execute(), tc.expectedError)
|
2017-06-20 14:00:01 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-13 15:40:26 -04:00
|
|
|
func TestStackList(t *testing.T) {
|
|
|
|
testCases := []struct {
|
|
|
|
doc string
|
|
|
|
serviceNames []string
|
|
|
|
flags map[string]string
|
|
|
|
golden string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
doc: "WithFormat",
|
|
|
|
serviceNames: []string{"service-name-foo"},
|
|
|
|
flags: map[string]string{
|
|
|
|
"format": "{{ .Name }}",
|
2018-04-25 08:24:46 -04:00
|
|
|
},
|
2018-08-13 15:40:26 -04:00
|
|
|
golden: "stack-list-with-format.golden",
|
2017-06-20 14:00:01 -04:00
|
|
|
},
|
2017-07-10 05:43:57 -04:00
|
|
|
{
|
2018-08-13 15:40:26 -04:00
|
|
|
doc: "WithoutFormat",
|
|
|
|
serviceNames: []string{"service-name-foo"},
|
|
|
|
golden: "stack-list-without-format.golden",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
doc: "Sort",
|
|
|
|
serviceNames: []string{
|
|
|
|
"service-name-foo",
|
|
|
|
"service-name-bar",
|
2017-07-10 05:43:57 -04:00
|
|
|
},
|
2018-08-13 15:40:26 -04:00
|
|
|
golden: "stack-list-sort.golden",
|
2017-06-20 14:00:01 -04:00
|
|
|
},
|
2017-07-10 05:43:57 -04:00
|
|
|
{
|
2018-08-13 15:40:26 -04:00
|
|
|
doc: "SortNatural",
|
|
|
|
serviceNames: []string{
|
|
|
|
"service-name-1-foo",
|
|
|
|
"service-name-10-foo",
|
|
|
|
"service-name-2-foo",
|
2017-07-10 05:43:57 -04:00
|
|
|
},
|
2018-08-13 15:40:26 -04:00
|
|
|
golden: "stack-list-sort-natural.golden",
|
2017-07-10 05:43:57 -04:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2018-08-13 15:40:26 -04:00
|
|
|
for _, tc := range testCases {
|
|
|
|
t.Run(tc.doc, func(t *testing.T) {
|
|
|
|
var services []swarm.Service
|
|
|
|
for _, name := range tc.serviceNames {
|
|
|
|
services = append(services,
|
|
|
|
*Service(
|
|
|
|
ServiceLabels(map[string]string{
|
|
|
|
"com.docker.stack.namespace": name,
|
|
|
|
}),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
cli := test.NewFakeCli(&fakeClient{
|
|
|
|
serviceListFunc: func(options types.ServiceListOptions) ([]swarm.Service, error) {
|
|
|
|
return services, nil
|
|
|
|
},
|
|
|
|
})
|
2022-02-22 07:46:35 -05:00
|
|
|
cmd := newListCommand(cli)
|
2018-08-13 15:40:26 -04:00
|
|
|
for key, value := range tc.flags {
|
|
|
|
cmd.Flags().Set(key, value)
|
|
|
|
}
|
|
|
|
assert.NilError(t, cmd.Execute())
|
|
|
|
golden.Assert(t, cli.OutBuffer().String(), tc.golden)
|
2018-06-20 08:48:50 -04:00
|
|
|
})
|
2017-07-10 05:43:57 -04:00
|
|
|
}
|
2017-06-20 14:00:01 -04:00
|
|
|
}
|