2018-04-11 06:10:17 -04:00
|
|
|
package daemon
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"strings"
|
2019-09-23 08:23:01 -04:00
|
|
|
"testing"
|
2018-04-11 06:10:17 -04:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/docker/docker/api/types"
|
|
|
|
"github.com/docker/docker/api/types/swarm"
|
2020-02-07 08:39:24 -05:00
|
|
|
"gotest.tools/v3/assert"
|
2018-04-11 06:10:17 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// NodeConstructor defines a swarm node constructor
|
|
|
|
type NodeConstructor func(*swarm.Node)
|
|
|
|
|
|
|
|
// GetNode returns a swarm node identified by the specified id
|
2019-09-23 08:23:01 -04:00
|
|
|
func (d *Daemon) GetNode(t testing.TB, id string, errCheck ...func(error) bool) *swarm.Node {
|
|
|
|
t.Helper()
|
2018-04-11 06:10:17 -04:00
|
|
|
cli := d.NewClientT(t)
|
|
|
|
defer cli.Close()
|
|
|
|
|
|
|
|
node, _, err := cli.NodeInspectWithRaw(context.Background(), id)
|
2019-07-15 20:23:55 -04:00
|
|
|
if err != nil {
|
|
|
|
for _, f := range errCheck {
|
|
|
|
if f(err) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-09-12 22:30:09 -04:00
|
|
|
assert.NilError(t, err, "[%s] (*Daemon).GetNode: NodeInspectWithRaw(%q) failed", d.id, id)
|
2018-04-11 06:10:17 -04:00
|
|
|
assert.Check(t, node.ID == id)
|
|
|
|
return &node
|
|
|
|
}
|
|
|
|
|
|
|
|
// RemoveNode removes the specified node
|
2019-09-23 08:23:01 -04:00
|
|
|
func (d *Daemon) RemoveNode(t testing.TB, id string, force bool) {
|
|
|
|
t.Helper()
|
2018-04-11 06:10:17 -04:00
|
|
|
cli := d.NewClientT(t)
|
|
|
|
defer cli.Close()
|
|
|
|
|
|
|
|
options := types.NodeRemoveOptions{
|
|
|
|
Force: force,
|
|
|
|
}
|
|
|
|
err := cli.NodeRemove(context.Background(), id, options)
|
|
|
|
assert.NilError(t, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// UpdateNode updates a swarm node with the specified node constructor
|
2019-09-23 08:23:01 -04:00
|
|
|
func (d *Daemon) UpdateNode(t testing.TB, id string, f ...NodeConstructor) {
|
|
|
|
t.Helper()
|
2018-04-11 06:10:17 -04:00
|
|
|
cli := d.NewClientT(t)
|
|
|
|
defer cli.Close()
|
|
|
|
|
|
|
|
for i := 0; ; i++ {
|
|
|
|
node := d.GetNode(t, id)
|
|
|
|
for _, fn := range f {
|
|
|
|
fn(node)
|
|
|
|
}
|
|
|
|
|
|
|
|
err := cli.NodeUpdate(context.Background(), node.ID, node.Version, node.Spec)
|
|
|
|
if i < 10 && err != nil && strings.Contains(err.Error(), "update out of sequence") {
|
|
|
|
time.Sleep(100 * time.Millisecond)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
assert.NilError(t, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ListNodes returns the list of the current swarm nodes
|
2019-09-23 08:23:01 -04:00
|
|
|
func (d *Daemon) ListNodes(t testing.TB) []swarm.Node {
|
|
|
|
t.Helper()
|
2018-04-11 06:10:17 -04:00
|
|
|
cli := d.NewClientT(t)
|
|
|
|
defer cli.Close()
|
|
|
|
|
|
|
|
nodes, err := cli.NodeList(context.Background(), types.NodeListOptions{})
|
|
|
|
assert.NilError(t, err)
|
|
|
|
|
|
|
|
return nodes
|
|
|
|
}
|