123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- /*
- 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 (
- "io/ioutil"
- "os"
- "path/filepath"
- "strings"
- "testing"
- "github.com/docker/compose/v2/pkg/utils"
- "gotest.tools/v3/assert"
- "gotest.tools/v3/icmd"
- )
- func TestDisplayScanMessageAfterBuild(t *testing.T) {
- c := NewParallelE2eCLI(t, binDir)
- // assert docker scan plugin is available
- c.RunDockerOrExitError("scan", "--help")
- t.Run("display on compose build", func(t *testing.T) {
- res := c.RunDockerCmd("compose", "-f", "fixtures/simple-build-test/compose.yaml", "-p", "scan-msg-test-compose-build", "build")
- defer c.RunDockerOrExitError("rmi", "-f", "scan-msg-test-compose-build_nginx")
- res.Assert(t, icmd.Expected{Err: utils.ScanSuggestMsg})
- })
- t.Run("do not display on compose build with quiet flag", func(t *testing.T) {
- res := c.RunDockerCmd("compose", "-f", "fixtures/simple-build-test/compose.yaml", "-p", "scan-msg-test-quiet", "build", "--quiet")
- assert.Assert(t, !strings.Contains(res.Combined(), "docker scan"), res.Combined())
- res = c.RunDockerCmd("rmi", "-f", "scan-msg-test-quiet_nginx")
- assert.Assert(t, !strings.Contains(res.Combined(), "No such image"))
- res = c.RunDockerCmd("compose", "-f", "fixtures/simple-build-test/compose.yaml", "-p", "scan-msg-test-q", "build", "-q")
- defer c.RunDockerOrExitError("rmi", "-f", "scan-msg-test-q_nginx")
- assert.Assert(t, !strings.Contains(res.Combined(), "docker scan"), res.Combined())
- })
- _ = c.RunDockerOrExitError("rmi", "scan-msg-test_nginx")
- t.Run("display on compose up if image is built", func(t *testing.T) {
- res := c.RunDockerCmd("compose", "-f", "fixtures/simple-build-test/compose.yaml", "-p", "scan-msg-test", "up", "-d")
- defer c.RunDockerOrExitError("compose", "-f", "fixtures/simple-build-test/compose.yaml", "-p", "scan-msg-test", "down")
- res.Assert(t, icmd.Expected{Err: utils.ScanSuggestMsg})
- })
- t.Run("do not display on compose up if no image built", func(t *testing.T) { // re-run the same Compose aproject
- res := c.RunDockerCmd("compose", "-f", "fixtures/simple-build-test/compose.yaml", "-p", "scan-msg-test", "up", "-d")
- defer c.RunDockerOrExitError("compose", "-f", "fixtures/simple-build-test/compose.yaml", "-p", "scan-msg-test", "down", "--rmi", "all")
- assert.Assert(t, !strings.Contains(res.Combined(), "docker scan"), res.Combined())
- })
- t.Run("do not display if scan already invoked", func(t *testing.T) {
- _ = os.MkdirAll(filepath.Join(c.ConfigDir, "scan"), 0755)
- scanConfigFile := filepath.Join(c.ConfigDir, "scan", "config.json")
- err := ioutil.WriteFile(scanConfigFile, []byte(`{"optin":true}`), 0644)
- assert.NilError(t, err)
- res := c.RunDockerCmd("build", "-t", "test-image-scan-msg", "fixtures/simple-build-test/nginx-build")
- assert.Assert(t, !strings.Contains(res.Combined(), "docker scan"), res.Combined())
- })
- }
|