2020-12-17 11:48:58 +01:00
|
|
|
/*
|
|
|
|
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 (
|
2024-02-13 15:13:28 +01:00
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2020-12-17 11:48:58 +01:00
|
|
|
"strings"
|
|
|
|
"testing"
|
2023-05-26 10:42:08 +02:00
|
|
|
"time"
|
2020-12-17 11:48:58 +01:00
|
|
|
|
|
|
|
"gotest.tools/v3/assert"
|
2023-05-26 10:42:08 +02:00
|
|
|
"gotest.tools/v3/poll"
|
2020-12-17 11:48:58 +01:00
|
|
|
|
|
|
|
"gotest.tools/v3/icmd"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestLocalComposeLogs(t *testing.T) {
|
2022-06-15 21:55:58 +02:00
|
|
|
c := NewParallelCLI(t)
|
2020-12-17 11:48:58 +01:00
|
|
|
|
|
|
|
const projectName = "compose-e2e-logs"
|
|
|
|
|
|
|
|
t.Run("up", func(t *testing.T) {
|
2022-06-15 21:55:58 +02:00
|
|
|
c.RunDockerComposeCmd(t, "-f", "./fixtures/logs-test/compose.yaml", "--project-name", projectName, "up", "-d")
|
2020-12-17 11:48:58 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("logs", func(t *testing.T) {
|
2022-06-15 21:55:58 +02:00
|
|
|
res := c.RunDockerComposeCmd(t, "--project-name", projectName, "logs")
|
2024-03-22 11:42:35 +01:00
|
|
|
res.Assert(t, icmd.Expected{Out: `PING localhost`})
|
2020-12-17 11:48:58 +01:00
|
|
|
res.Assert(t, icmd.Expected{Out: `hello`})
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("logs ping", func(t *testing.T) {
|
2022-06-15 21:55:58 +02:00
|
|
|
res := c.RunDockerComposeCmd(t, "--project-name", projectName, "logs", "ping")
|
2024-03-22 11:42:35 +01:00
|
|
|
res.Assert(t, icmd.Expected{Out: `PING localhost`})
|
2020-12-17 11:48:58 +01:00
|
|
|
assert.Assert(t, !strings.Contains(res.Stdout(), "hello"))
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("logs hello", func(t *testing.T) {
|
2022-06-15 21:55:58 +02:00
|
|
|
res := c.RunDockerComposeCmd(t, "--project-name", projectName, "logs", "hello", "ping")
|
2024-03-22 11:42:35 +01:00
|
|
|
res.Assert(t, icmd.Expected{Out: `PING localhost`})
|
2020-12-17 11:48:58 +01:00
|
|
|
res.Assert(t, icmd.Expected{Out: `hello`})
|
|
|
|
})
|
|
|
|
|
2023-01-23 20:21:01 +01:00
|
|
|
t.Run("logs hello index", func(t *testing.T) {
|
2023-01-25 02:35:23 +01:00
|
|
|
res := c.RunDockerComposeCmd(t, "--project-name", projectName, "logs", "--index", "2", "hello")
|
2023-01-25 02:54:49 +01:00
|
|
|
|
|
|
|
// docker-compose logs hello
|
|
|
|
// logs-test-hello-2 | hello
|
|
|
|
// logs-test-hello-1 | hello
|
|
|
|
t.Log(res.Stdout())
|
|
|
|
assert.Assert(t, !strings.Contains(res.Stdout(), "hello-1"))
|
|
|
|
assert.Assert(t, strings.Contains(res.Stdout(), "hello-2"))
|
2023-01-23 20:21:01 +01:00
|
|
|
})
|
|
|
|
|
2020-12-17 11:48:58 +01:00
|
|
|
t.Run("down", func(t *testing.T) {
|
2022-06-15 21:55:58 +02:00
|
|
|
_ = c.RunDockerComposeCmd(t, "--project-name", projectName, "down")
|
2020-12-17 11:48:58 +01:00
|
|
|
})
|
|
|
|
}
|
2023-05-26 10:42:08 +02:00
|
|
|
|
|
|
|
func TestLocalComposeLogsFollow(t *testing.T) {
|
|
|
|
c := NewCLI(t, WithEnv("REPEAT=20"))
|
|
|
|
const projectName = "compose-e2e-logs"
|
|
|
|
t.Cleanup(func() {
|
|
|
|
c.RunDockerComposeCmd(t, "--project-name", projectName, "down")
|
|
|
|
})
|
|
|
|
|
|
|
|
c.RunDockerComposeCmd(t, "-f", "./fixtures/logs-test/compose.yaml", "--project-name", projectName, "up", "-d", "ping")
|
|
|
|
|
|
|
|
cmd := c.NewDockerComposeCmd(t, "--project-name", projectName, "logs", "-f")
|
|
|
|
res := icmd.StartCmd(cmd)
|
|
|
|
t.Cleanup(func() {
|
|
|
|
_ = res.Cmd.Process.Kill()
|
|
|
|
})
|
|
|
|
|
2023-11-15 14:41:35 +01:00
|
|
|
poll.WaitOn(t, expectOutput(res, "ping-1 "), poll.WithDelay(100*time.Millisecond), poll.WithTimeout(1*time.Second))
|
2023-05-26 10:42:08 +02:00
|
|
|
|
|
|
|
c.RunDockerComposeCmd(t, "-f", "./fixtures/logs-test/compose.yaml", "--project-name", projectName, "up", "-d")
|
|
|
|
|
2023-11-15 14:41:35 +01:00
|
|
|
poll.WaitOn(t, expectOutput(res, "hello-1 "), poll.WithDelay(100*time.Millisecond), poll.WithTimeout(1*time.Second))
|
2023-05-26 10:42:08 +02:00
|
|
|
|
|
|
|
c.RunDockerComposeCmd(t, "-f", "./fixtures/logs-test/compose.yaml", "--project-name", projectName, "up", "-d", "--scale", "ping=2", "ping")
|
|
|
|
|
2023-11-15 14:41:35 +01:00
|
|
|
poll.WaitOn(t, expectOutput(res, "ping-2 "), poll.WithDelay(100*time.Millisecond), poll.WithTimeout(20*time.Second))
|
2023-05-26 10:42:08 +02:00
|
|
|
}
|
|
|
|
|
2024-02-13 15:13:28 +01:00
|
|
|
func TestLocalComposeLargeLogs(t *testing.T) {
|
|
|
|
const projectName = "compose-e2e-large_logs"
|
|
|
|
file := filepath.Join(t.TempDir(), "large.txt")
|
|
|
|
c := NewCLI(t, WithEnv("FILE="+file))
|
|
|
|
t.Cleanup(func() {
|
|
|
|
c.RunDockerComposeCmd(t, "--project-name", projectName, "down")
|
|
|
|
})
|
|
|
|
|
|
|
|
f, err := os.Create(file)
|
|
|
|
assert.NilError(t, err)
|
|
|
|
for i := 0; i < 300_000; i++ {
|
|
|
|
_, err := io.WriteString(f, fmt.Sprintf("This is line %d in a laaaarge text file\n", i))
|
|
|
|
assert.NilError(t, err)
|
|
|
|
}
|
|
|
|
assert.NilError(t, f.Close())
|
|
|
|
|
2024-03-22 21:40:40 +01:00
|
|
|
cmd := c.NewDockerComposeCmd(t, "-f", "./fixtures/logs-test/cat.yaml", "--project-name", projectName, "up", "--abort-on-container-exit", "--menu=false")
|
2024-02-15 11:23:20 +01:00
|
|
|
cmd.Stdout = io.Discard
|
|
|
|
res := icmd.RunCmd(cmd)
|
2024-02-13 15:13:28 +01:00
|
|
|
res.Assert(t, icmd.Expected{Out: "test-1 exited with code 0"})
|
|
|
|
}
|
|
|
|
|
2023-05-26 10:42:08 +02:00
|
|
|
func expectOutput(res *icmd.Result, expected string) func(t poll.LogT) poll.Result {
|
|
|
|
return func(t poll.LogT) poll.Result {
|
|
|
|
if strings.Contains(res.Stdout(), expected) {
|
|
|
|
return poll.Success()
|
|
|
|
}
|
|
|
|
return poll.Continue("condition not met")
|
|
|
|
}
|
|
|
|
}
|