123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208 |
- package environment
- import (
- "context"
- "github.com/docker/docker/api/types"
- "github.com/docker/docker/api/types/filters"
- "github.com/docker/docker/integration-cli/fixtures/load"
- "github.com/stretchr/testify/require"
- )
- type protectedElements struct {
- containers map[string]struct{}
- images map[string]struct{}
- networks map[string]struct{}
- plugins map[string]struct{}
- volumes map[string]struct{}
- }
- func newProtectedElements() protectedElements {
- return protectedElements{
- containers: map[string]struct{}{},
- images: map[string]struct{}{},
- networks: map[string]struct{}{},
- plugins: map[string]struct{}{},
- volumes: map[string]struct{}{},
- }
- }
- // ProtectAll protects the existing environment (containers, images, networks,
- // volumes, and, on Linux, plugins) from being cleaned up at the end of test
- // runs
- func ProtectAll(t testingT, testEnv *Execution) {
- ProtectContainers(t, testEnv)
- ProtectImages(t, testEnv)
- ProtectNetworks(t, testEnv)
- ProtectVolumes(t, testEnv)
- if testEnv.OSType == "linux" {
- ProtectPlugins(t, testEnv)
- }
- }
- // ProtectContainer adds the specified container(s) to be protected in case of
- // clean
- func (e *Execution) ProtectContainer(t testingT, containers ...string) {
- for _, container := range containers {
- e.protectedElements.containers[container] = struct{}{}
- }
- }
- // ProtectContainers protects existing containers from being cleaned up at the
- // end of test runs
- func ProtectContainers(t testingT, testEnv *Execution) {
- containers := getExistingContainers(t, testEnv)
- testEnv.ProtectContainer(t, containers...)
- }
- func getExistingContainers(t require.TestingT, testEnv *Execution) []string {
- client := testEnv.APIClient()
- containerList, err := client.ContainerList(context.Background(), types.ContainerListOptions{
- All: true,
- })
- require.NoError(t, err, "failed to list containers")
- containers := []string{}
- for _, container := range containerList {
- containers = append(containers, container.ID)
- }
- return containers
- }
- // ProtectImage adds the specified image(s) to be protected in case of clean
- func (e *Execution) ProtectImage(t testingT, images ...string) {
- for _, image := range images {
- e.protectedElements.images[image] = struct{}{}
- }
- }
- // ProtectImages protects existing images and on linux frozen images from being
- // cleaned up at the end of test runs
- func ProtectImages(t testingT, testEnv *Execution) {
- images := getExistingImages(t, testEnv)
- if testEnv.OSType == "linux" {
- images = append(images, ensureFrozenImagesLinux(t, testEnv)...)
- }
- testEnv.ProtectImage(t, images...)
- }
- func getExistingImages(t require.TestingT, testEnv *Execution) []string {
- client := testEnv.APIClient()
- filter := filters.NewArgs()
- filter.Add("dangling", "false")
- imageList, err := client.ImageList(context.Background(), types.ImageListOptions{
- All: true,
- Filters: filter,
- })
- require.NoError(t, err, "failed to list images")
- images := []string{}
- for _, image := range imageList {
- images = append(images, tagsFromImageSummary(image)...)
- }
- return images
- }
- func tagsFromImageSummary(image types.ImageSummary) []string {
- result := []string{}
- for _, tag := range image.RepoTags {
- if tag != "<none>:<none>" {
- result = append(result, tag)
- }
- }
- for _, digest := range image.RepoDigests {
- if digest != "<none>@<none>" {
- result = append(result, digest)
- }
- }
- return result
- }
- func ensureFrozenImagesLinux(t testingT, testEnv *Execution) []string {
- images := []string{"busybox:latest", "hello-world:frozen", "debian:jessie"}
- err := load.FrozenImagesLinux(testEnv.APIClient(), images...)
- if err != nil {
- t.Fatalf("Failed to load frozen images: %s", err)
- }
- return images
- }
- // ProtectNetwork adds the specified network(s) to be protected in case of
- // clean
- func (e *Execution) ProtectNetwork(t testingT, networks ...string) {
- for _, network := range networks {
- e.protectedElements.networks[network] = struct{}{}
- }
- }
- // ProtectNetworks protects existing networks from being cleaned up at the end
- // of test runs
- func ProtectNetworks(t testingT, testEnv *Execution) {
- networks := getExistingNetworks(t, testEnv)
- testEnv.ProtectNetwork(t, networks...)
- }
- func getExistingNetworks(t require.TestingT, testEnv *Execution) []string {
- client := testEnv.APIClient()
- networkList, err := client.NetworkList(context.Background(), types.NetworkListOptions{})
- require.NoError(t, err, "failed to list networks")
- networks := []string{}
- for _, network := range networkList {
- networks = append(networks, network.ID)
- }
- return networks
- }
- // ProtectPlugin adds the specified plugin(s) to be protected in case of clean
- func (e *Execution) ProtectPlugin(t testingT, plugins ...string) {
- for _, plugin := range plugins {
- e.protectedElements.plugins[plugin] = struct{}{}
- }
- }
- // ProtectPlugins protects existing plugins from being cleaned up at the end of
- // test runs
- func ProtectPlugins(t testingT, testEnv *Execution) {
- plugins := getExistingPlugins(t, testEnv)
- testEnv.ProtectPlugin(t, plugins...)
- }
- func getExistingPlugins(t require.TestingT, testEnv *Execution) []string {
- client := testEnv.APIClient()
- pluginList, err := client.PluginList(context.Background(), filters.Args{})
- require.NoError(t, err, "failed to list plugins")
- plugins := []string{}
- for _, plugin := range pluginList {
- plugins = append(plugins, plugin.Name)
- }
- return plugins
- }
- // ProtectVolume adds the specified volume(s) to be protected in case of clean
- func (e *Execution) ProtectVolume(t testingT, volumes ...string) {
- for _, volume := range volumes {
- e.protectedElements.volumes[volume] = struct{}{}
- }
- }
- // ProtectVolumes protects existing volumes from being cleaned up at the end of
- // test runs
- func ProtectVolumes(t testingT, testEnv *Execution) {
- volumes := getExistingVolumes(t, testEnv)
- testEnv.ProtectVolume(t, volumes...)
- }
- func getExistingVolumes(t require.TestingT, testEnv *Execution) []string {
- client := testEnv.APIClient()
- volumeList, err := client.VolumeList(context.Background(), filters.Args{})
- require.NoError(t, err, "failed to list volumes")
- volumes := []string{}
- for _, volume := range volumeList.Volumes {
- volumes = append(volumes, volume.Name)
- }
- return volumes
- }
|