mirror of
https://github.com/docker/compose.git
synced 2025-07-03 03:44:25 +02:00
add e2e tests using explicitly profiles
Signed-off-by: Guillaume Lours <705411+glours@users.noreply.github.com>
This commit is contained in:
parent
24ec0b2d09
commit
7fe43a8b4a
8
pkg/e2e/fixtures/profiles/compose.yaml
Normal file
8
pkg/e2e/fixtures/profiles/compose.yaml
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
services:
|
||||||
|
main:
|
||||||
|
image: nginx:alpine
|
||||||
|
|
||||||
|
profiled-service:
|
||||||
|
image: nginx:alpine
|
||||||
|
profiles:
|
||||||
|
- test-profile
|
59
pkg/e2e/profiles_test.go
Normal file
59
pkg/e2e/profiles_test.go
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
package e2e
|
||||||
|
|
||||||
|
import (
|
||||||
|
"gotest.tools/v3/assert"
|
||||||
|
"gotest.tools/v3/icmd"
|
||||||
|
"strings"
|
||||||
|
"testing"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestExplicitProfileUsage(t *testing.T) {
|
||||||
|
c := NewParallelCLI(t)
|
||||||
|
const projectName = "compose-e2e-profiles"
|
||||||
|
const profileName = "test-profile"
|
||||||
|
|
||||||
|
t.Run("compose up with profile", func(t *testing.T) {
|
||||||
|
res := c.RunDockerComposeCmd(t, "-f", "./fixtures/profiles/compose.yaml",
|
||||||
|
"-p", projectName, "--profile", profileName, "up", "-d")
|
||||||
|
res.Assert(t, icmd.Expected{ExitCode: 0})
|
||||||
|
res = c.RunDockerComposeCmd(t, "-p", projectName, "ps")
|
||||||
|
res.Assert(t, icmd.Expected{Out: "profiled-service"})
|
||||||
|
res.Assert(t, icmd.Expected{Out: "main"})
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("compose stop with profile", func(t *testing.T) {
|
||||||
|
res := c.RunDockerComposeCmd(t, "-f", "./fixtures/profiles/compose.yaml",
|
||||||
|
"-p", projectName, "--profile", profileName, "stop")
|
||||||
|
res.Assert(t, icmd.Expected{ExitCode: 0})
|
||||||
|
res = c.RunDockerComposeCmd(t, "-p", projectName, "ps", "--status", "running")
|
||||||
|
assert.Assert(t, !strings.Contains(res.Combined(), "profiled-service"))
|
||||||
|
assert.Assert(t, !strings.Contains(res.Combined(), "main"))
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("compose start with profile", func(t *testing.T) {
|
||||||
|
res := c.RunDockerComposeCmd(t, "-f", "./fixtures/profiles/compose.yaml",
|
||||||
|
"-p", projectName, "--profile", profileName, "start")
|
||||||
|
res.Assert(t, icmd.Expected{ExitCode: 0})
|
||||||
|
res = c.RunDockerComposeCmd(t, "-p", projectName, "ps", "--status", "running")
|
||||||
|
res.Assert(t, icmd.Expected{Out: "profiled-service"})
|
||||||
|
res.Assert(t, icmd.Expected{Out: "main"})
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("compose restart with profile", func(t *testing.T) {
|
||||||
|
res := c.RunDockerComposeCmd(t, "-f", "./fixtures/profiles/compose.yaml",
|
||||||
|
"-p", projectName, "--profile", profileName, "restart")
|
||||||
|
res.Assert(t, icmd.Expected{ExitCode: 0})
|
||||||
|
res = c.RunDockerComposeCmd(t, "-p", projectName, "ps", "--status", "running")
|
||||||
|
res.Assert(t, icmd.Expected{Out: "profiled-service"})
|
||||||
|
res.Assert(t, icmd.Expected{Out: "main"})
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("down", func(t *testing.T) {
|
||||||
|
_ = c.RunDockerComposeCmd(t, "--project-name", projectName, "down")
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("check containers after down", func(t *testing.T) {
|
||||||
|
res := c.RunDockerCmd(t, "ps", "--all")
|
||||||
|
assert.Assert(t, !strings.Contains(res.Combined(), projectName), res.Combined())
|
||||||
|
})
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user