| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284 | 
							- /*
 
-    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 (
 
- 	"fmt"
 
- 	"strings"
 
- 	"testing"
 
- 	testify "github.com/stretchr/testify/assert"
 
- 	"gotest.tools/v3/assert"
 
- 	"gotest.tools/v3/icmd"
 
- )
 
- func TestStartStop(t *testing.T) {
 
- 	c := NewParallelCLI(t)
 
- 	const projectName = "e2e-start-stop-no-dependencies"
 
- 	getProjectRegx := func(status string) string {
 
- 		// match output with random spaces like:
 
- 		// e2e-start-stop      running(3)
 
- 		return fmt.Sprintf("%s\\s+%s\\(%d\\)", projectName, status, 2)
 
- 	}
 
- 	t.Run("Up a project", func(t *testing.T) {
 
- 		res := c.RunDockerComposeCmd(t, "-f", "./fixtures/start-stop/compose.yaml", "--project-name", projectName, "up",
 
- 			"-d")
 
- 		assert.Assert(t, strings.Contains(res.Combined(), "Container e2e-start-stop-no-dependencies-simple-1  Started"), res.Combined())
 
- 		res = c.RunDockerComposeCmd(t, "ls", "--all")
 
- 		testify.Regexp(t, getProjectRegx("running"), res.Stdout())
 
- 		res = c.RunDockerComposeCmd(t, "--project-name", projectName, "ps")
 
- 		assertServiceStatus(t, projectName, "simple", "Up", res.Stdout())
 
- 		assertServiceStatus(t, projectName, "another", "Up", res.Stdout())
 
- 	})
 
- 	t.Run("stop project", func(t *testing.T) {
 
- 		c.RunDockerComposeCmd(t, "-f", "./fixtures/start-stop/compose.yaml", "--project-name", projectName, "stop")
 
- 		res := c.RunDockerComposeCmd(t, "ls")
 
- 		assert.Assert(t, !strings.Contains(res.Combined(), "e2e-start-stop-no-dependencies"), res.Combined())
 
- 		res = c.RunDockerComposeCmd(t, "ls", "--all")
 
- 		testify.Regexp(t, getProjectRegx("exited"), res.Stdout())
 
- 		res = c.RunDockerComposeCmd(t, "--project-name", projectName, "ps")
 
- 		assert.Assert(t, !strings.Contains(res.Combined(), "e2e-start-stop-no-dependencies-words-1"), res.Combined())
 
- 		res = c.RunDockerComposeCmd(t, "--project-name", projectName, "ps", "--all")
 
- 		assertServiceStatus(t, projectName, "simple", "Exited", res.Stdout())
 
- 		assertServiceStatus(t, projectName, "another", "Exited", res.Stdout())
 
- 	})
 
- 	t.Run("start project", func(t *testing.T) {
 
- 		c.RunDockerComposeCmd(t, "-f", "./fixtures/start-stop/compose.yaml", "--project-name", projectName, "start")
 
- 		res := c.RunDockerComposeCmd(t, "ls")
 
- 		testify.Regexp(t, getProjectRegx("running"), res.Stdout())
 
- 	})
 
- 	t.Run("down", func(t *testing.T) {
 
- 		_ = c.RunDockerComposeCmd(t, "--project-name", projectName, "down")
 
- 	})
 
- }
 
- func TestStartStopWithDependencies(t *testing.T) {
 
- 	c := NewParallelCLI(t)
 
- 	const projectName = "e2e-start-stop-with-dependencies"
 
- 	defer c.RunDockerComposeCmd(t, "--project-name", projectName, "rm", "-fsv")
 
- 	t.Run("Up", func(t *testing.T) {
 
- 		res := c.RunDockerComposeCmd(t, "-f", "./fixtures/dependencies/compose.yaml", "--project-name", projectName,
 
- 			"up", "-d")
 
- 		assert.Assert(t, strings.Contains(res.Combined(), "Container e2e-start-stop-with-dependencies-foo-1  Started"), res.Combined())
 
- 		assert.Assert(t, strings.Contains(res.Combined(), "Container e2e-start-stop-with-dependencies-bar-1  Started"), res.Combined())
 
- 	})
 
- 	t.Run("stop foo", func(t *testing.T) {
 
- 		res := c.RunDockerComposeCmd(t, "--project-name", projectName, "stop", "foo")
 
- 		assert.Assert(t, strings.Contains(res.Combined(), "Container e2e-start-stop-with-dependencies-foo-1  Stopped"), res.Combined())
 
- 		res = c.RunDockerComposeCmd(t, "--project-name", projectName, "ps", "--status", "running")
 
- 		assert.Assert(t, strings.Contains(res.Combined(), "e2e-start-stop-with-dependencies-bar-1"), res.Combined())
 
- 		assert.Assert(t, !strings.Contains(res.Combined(), "e2e-start-stop-with-dependencies-foo-1"), res.Combined())
 
- 	})
 
- 	t.Run("start foo", func(t *testing.T) {
 
- 		res := c.RunDockerComposeCmd(t, "--project-name", projectName, "stop")
 
- 		assert.Assert(t, strings.Contains(res.Combined(), "Container e2e-start-stop-with-dependencies-bar-1  Stopped"), res.Combined())
 
- 		res = c.RunDockerComposeCmd(t, "--project-name", projectName, "start", "foo")
 
- 		out := res.Combined()
 
- 		assert.Assert(t, strings.Contains(out, "Container e2e-start-stop-with-dependencies-bar-1  Started"), out)
 
- 		assert.Assert(t, strings.Contains(out, "Container e2e-start-stop-with-dependencies-foo-1  Started"), out)
 
- 		res = c.RunDockerComposeCmd(t, "--project-name", projectName, "ps", "--status", "running")
 
- 		out = res.Combined()
 
- 		assert.Assert(t, strings.Contains(out, "e2e-start-stop-with-dependencies-bar-1"), out)
 
- 		assert.Assert(t, strings.Contains(out, "e2e-start-stop-with-dependencies-foo-1"), out)
 
- 	})
 
- 	t.Run("Up no-deps links", func(t *testing.T) {
 
- 		_ = c.RunDockerComposeCmd(t, "--project-name", projectName, "down")
 
- 		res := c.RunDockerComposeCmd(t, "-f", "./fixtures/links/compose.yaml", "--project-name", projectName, "up",
 
- 			"--no-deps", "-d", "foo")
 
- 		assert.Assert(t, strings.Contains(res.Combined(), "Container e2e-start-stop-with-dependencies-foo-1  Started"), res.Combined())
 
- 		assert.Assert(t, !strings.Contains(res.Combined(), "Container e2e-start-stop-with-dependencies-bar-1  Started"), res.Combined())
 
- 	})
 
- 	t.Run("down", func(t *testing.T) {
 
- 		_ = c.RunDockerComposeCmd(t, "--project-name", projectName, "down")
 
- 	})
 
- }
 
- func TestStartStopWithOneOffs(t *testing.T) {
 
- 	c := NewParallelCLI(t)
 
- 	const projectName = "e2e-start-stop-with-oneoffs"
 
- 	t.Run("Up", func(t *testing.T) {
 
- 		res := c.RunDockerComposeCmd(t, "-f", "./fixtures/dependencies/compose.yaml", "--project-name", projectName,
 
- 			"up", "-d")
 
- 		assert.Assert(t, strings.Contains(res.Combined(), "Container e2e-start-stop-with-oneoffs-foo-1  Started"), res.Combined())
 
- 		assert.Assert(t, strings.Contains(res.Combined(), "Container e2e-start-stop-with-oneoffs-bar-1  Started"), res.Combined())
 
- 	})
 
- 	t.Run("run one-off", func(t *testing.T) {
 
- 		c.RunDockerComposeCmd(t, "-f", "./fixtures/dependencies/compose.yaml", "--project-name", projectName, "run", "-d", "bar", "sleep", "infinity")
 
- 		res := c.RunDockerComposeCmd(t, "--project-name", projectName, "ps", "-a")
 
- 		assert.Assert(t, strings.Contains(res.Combined(), "e2e-start-stop-with-oneoffs-foo-1"), res.Combined())
 
- 		assert.Assert(t, strings.Contains(res.Combined(), "e2e-start-stop-with-oneoffs-bar-1"), res.Combined())
 
- 		assert.Assert(t, strings.Contains(res.Combined(), "e2e-start-stop-with-oneoffs-bar-run"), res.Combined())
 
- 	})
 
- 	t.Run("stop (not one-off containers)", func(t *testing.T) {
 
- 		res := c.RunDockerComposeCmd(t, "--project-name", projectName, "stop")
 
- 		assert.Assert(t, strings.Contains(res.Combined(), "e2e-start-stop-with-oneoffs-foo-1"), res.Combined())
 
- 		assert.Assert(t, strings.Contains(res.Combined(), "e2e-start-stop-with-oneoffs-bar-1"), res.Combined())
 
- 		assert.Assert(t, !strings.Contains(res.Combined(), "e2e_start_stop_with_oneoffs-bar-run"), res.Combined())
 
- 		res = c.RunDockerComposeCmd(t, "--project-name", projectName, "ps", "-a", "--status", "running")
 
- 		assert.Assert(t, strings.Contains(res.Combined(), "e2e-start-stop-with-oneoffs-bar-run"), res.Combined())
 
- 	})
 
- 	t.Run("start (not one-off containers)", func(t *testing.T) {
 
- 		res := c.RunDockerComposeCmd(t, "--project-name", projectName, "start")
 
- 		assert.Assert(t, strings.Contains(res.Combined(), "e2e-start-stop-with-oneoffs-foo-1"), res.Combined())
 
- 		assert.Assert(t, strings.Contains(res.Combined(), "e2e-start-stop-with-oneoffs-bar-1"), res.Combined())
 
- 		assert.Assert(t, !strings.Contains(res.Combined(), "e2e-start-stop-with-oneoffs-bar-run"), res.Combined())
 
- 	})
 
- 	t.Run("restart (not one-off containers)", func(t *testing.T) {
 
- 		res := c.RunDockerComposeCmd(t, "--project-name", projectName, "restart")
 
- 		assert.Assert(t, strings.Contains(res.Combined(), "e2e-start-stop-with-oneoffs-foo-1"), res.Combined())
 
- 		assert.Assert(t, strings.Contains(res.Combined(), "e2e-start-stop-with-oneoffs-bar-1"), res.Combined())
 
- 		assert.Assert(t, !strings.Contains(res.Combined(), "e2e-start-stop-with-oneoffs-bar-run"), res.Combined())
 
- 	})
 
- 	t.Run("down", func(t *testing.T) {
 
- 		c.RunDockerComposeCmd(t, "--project-name", projectName, "down", "--remove-orphans")
 
- 		res := c.RunDockerComposeCmd(t, "--project-name", projectName, "ps", "-a", "--status", "running")
 
- 		assert.Assert(t, !strings.Contains(res.Combined(), "e2e-start-stop-with-oneoffs-bar"), res.Combined())
 
- 	})
 
- }
 
- func TestStartAlreadyRunning(t *testing.T) {
 
- 	cli := NewParallelCLI(t, WithEnv(
 
- 		"COMPOSE_PROJECT_NAME=e2e-start-stop-svc-already-running",
 
- 		"COMPOSE_FILE=./fixtures/start-stop/compose.yaml"))
 
- 	t.Cleanup(func() {
 
- 		cli.RunDockerComposeCmd(t, "down", "--remove-orphans", "-v", "-t", "0")
 
- 	})
 
- 	cli.RunDockerComposeCmd(t, "up", "-d", "--wait")
 
- 	res := cli.RunDockerComposeCmd(t, "start", "simple")
 
- 	assert.Equal(t, res.Stdout(), "", "No output should have been written to stdout")
 
- }
 
- func TestStopAlreadyStopped(t *testing.T) {
 
- 	cli := NewParallelCLI(t, WithEnv(
 
- 		"COMPOSE_PROJECT_NAME=e2e-start-stop-svc-already-stopped",
 
- 		"COMPOSE_FILE=./fixtures/start-stop/compose.yaml"))
 
- 	t.Cleanup(func() {
 
- 		cli.RunDockerComposeCmd(t, "down", "--remove-orphans", "-v", "-t", "0")
 
- 	})
 
- 	cli.RunDockerComposeCmd(t, "up", "-d", "--wait")
 
- 	// stop the container
 
- 	cli.RunDockerComposeCmd(t, "stop", "simple")
 
- 	// attempt to stop it again
 
- 	res := cli.RunDockerComposeCmdNoCheck(t, "stop", "simple")
 
- 	// TODO: for consistency, this should NOT write any output because the
 
- 	// 		container is already stopped
 
- 	res.Assert(t, icmd.Expected{
 
- 		ExitCode: 0,
 
- 		Err:      "Container e2e-start-stop-svc-already-stopped-simple-1  Stopped",
 
- 	})
 
- }
 
- func TestStartStopMultipleServices(t *testing.T) {
 
- 	cli := NewParallelCLI(t, WithEnv(
 
- 		"COMPOSE_PROJECT_NAME=e2e-start-stop-svc-multiple",
 
- 		"COMPOSE_FILE=./fixtures/start-stop/compose.yaml"))
 
- 	t.Cleanup(func() {
 
- 		cli.RunDockerComposeCmd(t, "down", "--remove-orphans", "-v", "-t", "0")
 
- 	})
 
- 	cli.RunDockerComposeCmd(t, "up", "-d", "--wait")
 
- 	res := cli.RunDockerComposeCmd(t, "stop", "simple", "another")
 
- 	services := []string{"simple", "another"}
 
- 	for _, svc := range services {
 
- 		stopMsg := fmt.Sprintf("Container e2e-start-stop-svc-multiple-%s-1  Stopped", svc)
 
- 		assert.Assert(t, strings.Contains(res.Stderr(), stopMsg),
 
- 			fmt.Sprintf("Missing stop message for %s\n%s", svc, res.Combined()))
 
- 	}
 
- 	res = cli.RunDockerComposeCmd(t, "start", "simple", "another")
 
- 	for _, svc := range services {
 
- 		startMsg := fmt.Sprintf("Container e2e-start-stop-svc-multiple-%s-1  Started", svc)
 
- 		assert.Assert(t, strings.Contains(res.Stderr(), startMsg),
 
- 			fmt.Sprintf("Missing start message for %s\n%s", svc, res.Combined()))
 
- 	}
 
- }
 
- func TestStartSingleServiceAndDependency(t *testing.T) {
 
- 	cli := NewParallelCLI(t, WithEnv(
 
- 		"COMPOSE_PROJECT_NAME=e2e-start-single-deps",
 
- 		"COMPOSE_FILE=./fixtures/start-stop/start-stop-deps.yaml"))
 
- 	t.Cleanup(func() {
 
- 		cli.RunDockerComposeCmd(t, "down", "--remove-orphans", "-v", "-t", "0")
 
- 	})
 
- 	cli.RunDockerComposeCmd(t, "create", "desired")
 
- 	res := cli.RunDockerComposeCmd(t, "start", "desired")
 
- 	desiredServices := []string{"desired", "dep_1", "dep_2"}
 
- 	for _, s := range desiredServices {
 
- 		startMsg := fmt.Sprintf("Container e2e-start-single-deps-%s-1  Started", s)
 
- 		assert.Assert(t, strings.Contains(res.Combined(), startMsg),
 
- 			fmt.Sprintf("Missing start message for service: %s\n%s", s, res.Combined()))
 
- 	}
 
- 	undesiredServices := []string{"another", "another_2"}
 
- 	for _, s := range undesiredServices {
 
- 		assert.Assert(t, !strings.Contains(res.Combined(), s),
 
- 			fmt.Sprintf("Shouldn't have message for service: %s\n%s", s, res.Combined()))
 
- 	}
 
- }
 
- func TestStartStopMultipleFiles(t *testing.T) {
 
- 	cli := NewParallelCLI(t, WithEnv("COMPOSE_PROJECT_NAME=e2e-start-stop-svc-multiple-files"))
 
- 	t.Cleanup(func() {
 
- 		cli.RunDockerComposeCmd(t, "-p", "e2e-start-stop-svc-multiple-files", "down", "--remove-orphans")
 
- 	})
 
- 	cli.RunDockerComposeCmd(t, "-f", "./fixtures/start-stop/compose.yaml", "up", "-d")
 
- 	cli.RunDockerComposeCmd(t, "-f", "./fixtures/start-stop/other.yaml", "up", "-d")
 
- 	res := cli.RunDockerComposeCmd(t, "-f", "./fixtures/start-stop/compose.yaml", "stop")
 
- 	assert.Assert(t, strings.Contains(res.Combined(), "Container e2e-start-stop-svc-multiple-files-simple-1  Stopped"), res.Combined())
 
- 	assert.Assert(t, strings.Contains(res.Combined(), "Container e2e-start-stop-svc-multiple-files-another-1  Stopped"), res.Combined())
 
- 	assert.Assert(t, !strings.Contains(res.Combined(), "Container e2e-start-stop-svc-multiple-files-a-different-one-1  Stopped"), res.Combined())
 
- 	assert.Assert(t, !strings.Contains(res.Combined(), "Container e2e-start-stop-svc-multiple-files-and-another-one-1  Stopped"), res.Combined())
 
- }
 
 
  |