mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
9f0b3f5609
full diff: https://github.com/gotestyourself/gotest.tools/compare/v2.3.0...v3.0.1 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
36 lines
837 B
Go
36 lines
837 B
Go
package daemon
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/docker/docker/api/types"
|
|
"gotest.tools/v3/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
|
|
}
|