123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- /*
- Copyright 2020 Docker Compose CLI authors
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- */
- package e2e
- import (
- "net/http"
- "strings"
- "testing"
- "time"
- "gotest.tools/v3/assert"
- )
- func TestLocalComposeVolume(t *testing.T) {
- c := NewParallelE2eCLI(t, binDir)
- const projectName = "compose-e2e-volume"
- t.Run("up with build and no image name, volume", func(t *testing.T) {
- // ensure local test run does not reuse previously build image
- c.RunDockerOrExitError("rmi", "compose-e2e-volume_nginx")
- c.RunDockerOrExitError("volume", "rm", projectName+"_staticVol")
- c.RunDockerOrExitError("volume", "rm", "myvolume")
- c.RunDockerCmd("compose", "--project-directory", "fixtures/volume-test", "--project-name", projectName, "up", "-d")
- })
- t.Run("access bind mount data", func(t *testing.T) {
- output := HTTPGetWithRetry(t, "http://localhost:8090", http.StatusOK, 2*time.Second, 20*time.Second)
- assert.Assert(t, strings.Contains(output, "Hello from Nginx container"))
- })
- t.Run("check container volume specs", func(t *testing.T) {
- res := c.RunDockerCmd("inspect", "compose-e2e-volume-nginx2-1", "--format", "{{ json .Mounts }}")
- output := res.Stdout()
- // nolint
- assert.Assert(t, strings.Contains(output, `"Destination":"/usr/src/app/node_modules","Driver":"local","Mode":"z","RW":true,"Propagation":""`), output)
- assert.Assert(t, strings.Contains(output, `"Destination":"/myconfig","Mode":"","RW":false,"Propagation":"rprivate"`), output)
- })
- t.Run("check config content", func(t *testing.T) {
- output := c.RunDockerCmd("exec", "compose-e2e-volume-nginx2-1", "cat", "/myconfig").Stdout()
- assert.Assert(t, strings.Contains(output, `Hello from Nginx container`), output)
- })
- t.Run("check secrets content", func(t *testing.T) {
- output := c.RunDockerCmd("exec", "compose-e2e-volume-nginx2-1", "cat", "/run/secrets/mysecret").Stdout()
- assert.Assert(t, strings.Contains(output, `Hello from Nginx container`), output)
- })
- t.Run("check container bind-mounts specs", func(t *testing.T) {
- res := c.RunDockerCmd("inspect", "compose-e2e-volume-nginx-1", "--format", "{{ json .Mounts }}")
- output := res.Stdout()
- // nolint
- assert.Assert(t, strings.Contains(output, `"Type":"bind"`))
- assert.Assert(t, strings.Contains(output, `"Destination":"/usr/share/nginx/html"`))
- })
- t.Run("should inherit anonymous volumes", func(t *testing.T) {
- c.RunDockerOrExitError("exec", "compose-e2e-volume-nginx2-1", "touch", "/usr/src/app/node_modules/test")
- c.RunDockerOrExitError("compose", "--project-directory", "fixtures/volume-test", "--project-name", projectName, "up", "--force-recreate", "-d")
- c.RunDockerOrExitError("exec", "compose-e2e-volume-nginx2-1", "ls", "/usr/src/app/node_modules/test")
- })
- t.Run("should renew anonymous volumes", func(t *testing.T) {
- c.RunDockerOrExitError("exec", "compose-e2e-volume-nginx2-1", "touch", "/usr/src/app/node_modules/test")
- c.RunDockerOrExitError("compose", "--project-directory", "fixtures/volume-test", "--project-name", projectName, "up", "--force-recreate", "--renew-anon-volumes", "-d")
- c.RunDockerOrExitError("exec", "compose-e2e-volume-nginx2-1", "ls", "/usr/src/app/node_modules/test")
- })
- t.Run("cleanup volume project", func(t *testing.T) {
- c.RunDockerCmd("compose", "--project-name", projectName, "down", "--volumes")
- res := c.RunDockerCmd("volume", "ls")
- assert.Assert(t, !strings.Contains(res.Stdout(), projectName+"_staticVol"))
- assert.Assert(t, !strings.Contains(res.Stdout(), "myvolume"))
- })
- }
|