123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 |
- package network // import "github.com/docker/docker/integration/network"
- import (
- "context"
- "testing"
- "time"
- "github.com/docker/docker/api/types"
- "github.com/docker/docker/api/types/filters"
- swarmtypes "github.com/docker/docker/api/types/swarm"
- "github.com/docker/docker/client"
- "github.com/docker/docker/integration/internal/network"
- "github.com/docker/docker/integration/internal/swarm"
- "gotest.tools/assert"
- "gotest.tools/poll"
- "gotest.tools/skip"
- )
- const defaultSwarmPort = 2477
- func TestInspectNetwork(t *testing.T) {
- skip.If(t, testEnv.OSType == "windows", "FIXME")
- defer setupTest(t)()
- d := swarm.NewSwarm(t, testEnv)
- defer d.Stop(t)
- client := d.NewClientT(t)
- defer client.Close()
- overlayName := "overlay1"
- overlayID := network.CreateNoError(t, context.Background(), client, overlayName,
- network.WithDriver("overlay"),
- network.WithCheckDuplicate(),
- )
- var instances uint64 = 4
- serviceName := "TestService" + t.Name()
- serviceID := swarm.CreateService(t, d,
- swarm.ServiceWithReplicas(instances),
- swarm.ServiceWithName(serviceName),
- swarm.ServiceWithNetwork(overlayName),
- )
- poll.WaitOn(t, serviceRunningTasksCount(client, serviceID, instances), swarm.ServicePoll)
- _, _, err := client.ServiceInspectWithRaw(context.Background(), serviceID, types.ServiceInspectOptions{})
- assert.NilError(t, err)
- // Test inspect verbose with full NetworkID
- networkVerbose, err := client.NetworkInspect(context.Background(), overlayID, types.NetworkInspectOptions{
- Verbose: true,
- })
- assert.NilError(t, err)
- assert.Assert(t, validNetworkVerbose(networkVerbose, serviceName, instances))
- // Test inspect verbose with partial NetworkID
- networkVerbose, err = client.NetworkInspect(context.Background(), overlayID[0:11], types.NetworkInspectOptions{
- Verbose: true,
- })
- assert.NilError(t, err)
- assert.Assert(t, validNetworkVerbose(networkVerbose, serviceName, instances))
- // Test inspect verbose with Network name and swarm scope
- networkVerbose, err = client.NetworkInspect(context.Background(), overlayName, types.NetworkInspectOptions{
- Verbose: true,
- Scope: "swarm",
- })
- assert.NilError(t, err)
- assert.Assert(t, validNetworkVerbose(networkVerbose, serviceName, instances))
- err = client.ServiceRemove(context.Background(), serviceID)
- assert.NilError(t, err)
- poll.WaitOn(t, serviceIsRemoved(client, serviceID), swarm.ServicePoll)
- poll.WaitOn(t, noTasks(client), swarm.ServicePoll)
- serviceID2 := swarm.CreateService(t, d,
- swarm.ServiceWithReplicas(instances),
- swarm.ServiceWithName(serviceName),
- swarm.ServiceWithNetwork(overlayName),
- )
- poll.WaitOn(t, serviceRunningTasksCount(client, serviceID2, instances), swarm.ServicePoll)
- err = client.ServiceRemove(context.Background(), serviceID2)
- assert.NilError(t, err)
- poll.WaitOn(t, serviceIsRemoved(client, serviceID2), swarm.ServicePoll)
- poll.WaitOn(t, noTasks(client), swarm.ServicePoll)
- err = client.NetworkRemove(context.Background(), overlayID)
- assert.NilError(t, err)
- poll.WaitOn(t, network.IsRemoved(context.Background(), client, overlayID), poll.WithTimeout(1*time.Minute), poll.WithDelay(10*time.Second))
- }
- func serviceRunningTasksCount(client client.ServiceAPIClient, serviceID string, instances uint64) func(log poll.LogT) poll.Result {
- return func(log poll.LogT) poll.Result {
- filter := filters.NewArgs()
- filter.Add("service", serviceID)
- tasks, err := client.TaskList(context.Background(), types.TaskListOptions{
- Filters: filter,
- })
- switch {
- case err != nil:
- return poll.Error(err)
- case len(tasks) == int(instances):
- for _, task := range tasks {
- if task.Status.State != swarmtypes.TaskStateRunning {
- return poll.Continue("waiting for tasks to enter run state")
- }
- }
- return poll.Success()
- default:
- return poll.Continue("task count at %d waiting for %d", len(tasks), instances)
- }
- }
- }
- func serviceIsRemoved(client client.ServiceAPIClient, serviceID string) func(log poll.LogT) poll.Result {
- return func(log poll.LogT) poll.Result {
- filter := filters.NewArgs()
- filter.Add("service", serviceID)
- _, err := client.TaskList(context.Background(), types.TaskListOptions{
- Filters: filter,
- })
- if err == nil {
- return poll.Continue("waiting for service %s to be deleted", serviceID)
- }
- return poll.Success()
- }
- }
- func noTasks(client client.ServiceAPIClient) func(log poll.LogT) poll.Result {
- return func(log poll.LogT) poll.Result {
- filter := filters.NewArgs()
- tasks, err := client.TaskList(context.Background(), types.TaskListOptions{
- Filters: filter,
- })
- switch {
- case err != nil:
- return poll.Error(err)
- case len(tasks) == 0:
- return poll.Success()
- default:
- return poll.Continue("task count at %d waiting for 0", len(tasks))
- }
- }
- }
- // Check to see if Service and Tasks info are part of the inspect verbose response
- func validNetworkVerbose(network types.NetworkResource, service string, instances uint64) bool {
- if service, ok := network.Services[service]; ok {
- if len(service.Tasks) != int(instances) {
- return false
- }
- }
- if network.IPAM.Config == nil {
- return false
- }
- for _, cfg := range network.IPAM.Config {
- if cfg.Gateway == "" || cfg.Subnet == "" {
- return false
- }
- }
- return true
- }
|