mirror of https://github.com/docker/cli.git
76 lines
2.3 KiB
Go
76 lines
2.3 KiB
Go
package stack
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/docker/cli/internal/test/environment"
|
|
shlex "github.com/flynn-archive/go-shlex"
|
|
"github.com/gotestyourself/gotestyourself/assert"
|
|
"github.com/gotestyourself/gotestyourself/golden"
|
|
"github.com/gotestyourself/gotestyourself/icmd"
|
|
"github.com/gotestyourself/gotestyourself/poll"
|
|
)
|
|
|
|
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) {
|
|
// FIXME(vdemeester) we shouldn't have to do that. it is hidding a race on docker stack rm
|
|
poll.WaitOn(t, stackRm(stackname), pollSettings)
|
|
poll.WaitOn(t, taskCount(stackname, 0), pollSettings)
|
|
}
|
|
|
|
func stackRm(stackname string) func(t poll.LogT) poll.Result {
|
|
return func(poll.LogT) poll.Result {
|
|
result := icmd.RunCommand("docker", "stack", "rm", stackname)
|
|
if result.Error != nil {
|
|
return poll.Continue("docker stack rm %s failed : %v", stackname, result.Error)
|
|
}
|
|
return poll.Success()
|
|
}
|
|
}
|
|
|
|
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...))
|
|
assert.NilError(t, err)
|
|
return icmd.Cmd{Command: cmd}
|
|
}
|