1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00
moby--moby/testutil/daemon/container.go
Sebastiaan van Stijn 51ca8081d8
testutil: use testing.TB instead of assert.TestingT
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2019-09-23 14:23:01 +02:00

36 lines
834 B
Go

package daemon
import (
"context"
"testing"
"github.com/docker/docker/api/types"
"gotest.tools/assert"
)
// ActiveContainers returns the list of ids of the currently running containers
func (d *Daemon) ActiveContainers(t testing.TB) []string {
t.Helper()
cli := d.NewClientT(t)
defer cli.Close()
containers, err := cli.ContainerList(context.Background(), types.ContainerListOptions{})
assert.NilError(t, err)
ids := make([]string, len(containers))
for i, c := range containers {
ids[i] = c.ID
}
return ids
}
// FindContainerIP returns the ip of the specified container
func (d *Daemon) FindContainerIP(t testing.TB, id string) string {
t.Helper()
cli := d.NewClientT(t)
defer cli.Close()
i, err := cli.ContainerInspect(context.Background(), id)
assert.NilError(t, err)
return i.NetworkSettings.IPAddress
}