mirror of https://github.com/docker/docs.git
33 lines
668 B
Bash
33 lines
668 B
Bash
#!/usr/bin/env bats
|
|
|
|
load ../helpers
|
|
|
|
function teardown() {
|
|
swarm_manage_cleanup
|
|
stop_docker
|
|
}
|
|
|
|
@test "docker pause" {
|
|
start_docker_with_busybox 2
|
|
swarm_manage
|
|
|
|
docker_swarm run -d --name test_container busybox sleep 1000
|
|
|
|
# make sure container is up
|
|
run docker_swarm ps -l
|
|
[ "${#lines[@]}" -eq 2 ]
|
|
[[ "${lines[1]}" == *"test_container"* ]]
|
|
[[ "${lines[1]}" == *"Up"* ]]
|
|
|
|
docker_swarm pause test_container
|
|
|
|
# verify
|
|
run docker_swarm ps -l
|
|
[ "${#lines[@]}" -eq 2 ]
|
|
[[ "${lines[1]}" == *"test_container"* ]]
|
|
[[ "${lines[1]}" == *"Paused"* ]]
|
|
|
|
# if the state of the container is paused, it can't be removed(rm -f)
|
|
docker_swarm unpause test_container
|
|
}
|