package stack import ( "fmt" "strings" "testing" "github.com/docker/cli/internal/test/environment" shlex "github.com/flynn-archive/go-shlex" "github.com/gotestyourself/gotestyourself/golden" "github.com/gotestyourself/gotestyourself/icmd" "github.com/gotestyourself/gotestyourself/poll" "github.com/stretchr/testify/require" ) var pollSettings = environment.DefaultPollSettings func TestRemove(t *testing.T) { stackname := "test-stack-remove" deployFullStack(t, stackname) defer cleanupFullStack(t, stackname) result := icmd.RunCmd(shell(t, "docker stack rm %s", stackname)) result.Assert(t, icmd.Expected{Err: icmd.None}) golden.Assert(t, result.Stdout(), "stack-remove-success.golden") } func deployFullStack(t *testing.T, stackname string) { // TODO: this stack should have full options not minimal options result := icmd.RunCmd(shell(t, "docker stack deploy --compose-file=./testdata/full-stack.yml %s", stackname)) result.Assert(t, icmd.Success) poll.WaitOn(t, taskCount(stackname, 2), pollSettings) } func cleanupFullStack(t *testing.T, stackname string) { result := icmd.RunCmd(shell(t, "docker stack rm %s", stackname)) result.Assert(t, icmd.Success) poll.WaitOn(t, taskCount(stackname, 0), pollSettings) } func taskCount(stackname string, expected int) func(t poll.LogT) poll.Result { return func(poll.LogT) poll.Result { result := icmd.RunCommand( "docker", "stack", "ps", "-f=desired-state=running", stackname) count := lines(result.Stdout()) - 1 if count == expected { return poll.Success() } return poll.Continue("task count is %d waiting for %d", count, expected) } } func lines(out string) int { return len(strings.Split(strings.TrimSpace(out), "\n")) } // TODO: move to gotestyourself func shell(t *testing.T, format string, args ...interface{}) icmd.Cmd { cmd, err := shlex.Split(fmt.Sprintf(format, args...)) require.NoError(t, err) return icmd.Cmd{Command: cmd} }