mirror of
https://github.com/docker/compose.git
synced 2026-09-25 06:54:41 +00:00
- TestExposeRange keeps its regression link (#13378), the invariant being simply that up accepts a port range in expose. - TestUpContainerNameConflict interpolates a project-scoped container_name instead of the fixture's global 'test', so parallel runs cannot collide on it. - TestIPC demonstrates the CLI() escape hatch: the external container the 'container:' mode points at is created eagerly before the steps, so its id is available to the declarative checks. (Runs only in CI: ipc container: mode is rejected by Docker Desktop and dind daemons — 'restricted host mount' — for the legacy test as well.) - wait scenarios observe which services exited instead of trusting the command's silence; TestWaitOnInfinity stays legacy, the DSL has no notion of a still-running command. The wait fixture stays for it; ipc-test and container_name fixtures are removed. Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
48 lines
1.9 KiB
Go
48 lines
1.9 KiB
Go
/*
|
|
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 (
|
|
"strings"
|
|
"testing"
|
|
)
|
|
|
|
func TestIPC(t *testing.T) {
|
|
s := NewScenario(t, "every ipc mode must materialize in the created containers: shareable, service: and container:")
|
|
external := s.Project() + "-external"
|
|
|
|
// the container: mode references a container compose doesn't manage;
|
|
// create it up front so its id is known when the steps assert against it
|
|
cid := strings.TrimSpace(s.CLI().RunDockerCmd(t, "run", "-d", "--rm", "--ipc=shareable", "--name", external, "alpine", "top").Stdout())
|
|
s.Defer(DockerCmd("rm", "-f", external).MayFail())
|
|
|
|
s.Env("EXTERNAL_NAME="+external).
|
|
Step("up starts the three services",
|
|
ComposeCmd("up", "-d"),
|
|
ServiceState("service", "running"),
|
|
ServiceState("container", "running"),
|
|
ServiceState("shareable", "running")).
|
|
Step("the shareable service owns a shareable ipc namespace",
|
|
DockerCmd("inspect", "-f", "{{.HostConfig.IpcMode}}", s.Project()+"-shareable-1"),
|
|
OutputContains("shareable")).
|
|
Step("the service: mode resolves to the target service's container",
|
|
DockerCmd("inspect", "-f", "{{.HostConfig.IpcMode}}", s.Project()+"-service-1"),
|
|
OutputContains("container:")).
|
|
Step("the container: mode resolves to the external container",
|
|
DockerCmd("inspect", "-f", "{{.HostConfig.IpcMode}}", s.Project()+"-container-1"),
|
|
OutputContains("container:"+cid))
|
|
}
|