mirror of
https://github.com/docker/compose.git
synced 2026-09-24 22:44:24 +00:00
ImageExists and FileExists join the vocabulary, giving commit and export a real observable: the legacy tests only asserted the commands exited 0, the scenarios verify the committed image and the exported archive actually exist. Both also drop their fixed image tags and cwd-relative tar outputs for project-scoped tags and temp files, so parallel runs cannot collide and nothing is left behind in the repo. TestLocalComposeLogs waits for the echo service to exit before reading logs (Eventually), closing the race the legacy test tolerated. The follow and large-logs tests stay legacy: both drive a long-running command in the background. ps_test.go stays legacy as well — it verifies ps table/JSON formatting, which is inherently output-shaped. Fixtures configs/, commit/ and export/ are removed. Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
48 lines
1.7 KiB
Go
48 lines
1.7 KiB
Go
/*
|
|
Copyright 2023 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 (
|
|
"path/filepath"
|
|
"testing"
|
|
)
|
|
|
|
func TestExport(t *testing.T) {
|
|
out := filepath.Join(t.TempDir(), "service.tar")
|
|
NewScenario(t, "export must write the service container's filesystem as a tar archive").
|
|
Step("up starts the service",
|
|
ComposeCmd("up", "-d", "service"),
|
|
ServiceState("service", "running")).
|
|
Step("export writes the container filesystem to the output file",
|
|
ComposeCmd("export", "-o", out, "service"),
|
|
FileExists(out))
|
|
}
|
|
|
|
func TestExportWithReplicas(t *testing.T) {
|
|
dir := t.TempDir()
|
|
r1, r2 := filepath.Join(dir, "r1.tar"), filepath.Join(dir, "r2.tar")
|
|
NewScenario(t, "export --index must pick the requested replica of a scaled service").
|
|
Step("up starts the replicas",
|
|
ComposeCmd("up", "-d", "service-with-replicas"),
|
|
ServiceScale("service-with-replicas", 3)).
|
|
Step("export --index=1 writes the first replica's filesystem",
|
|
ComposeCmd("export", "-o", r1, "--index=1", "service-with-replicas"),
|
|
FileExists(r1)).
|
|
Step("export --index=2 writes the second replica's filesystem",
|
|
ComposeCmd("export", "-o", r2, "--index=2", "service-with-replicas"),
|
|
FileExists(r2))
|
|
}
|