mirror of https://github.com/docker/docs.git
91 lines
2.3 KiB
Bash
91 lines
2.3 KiB
Bash
#!/usr/bin/env bats
|
|
|
|
load ../helpers
|
|
|
|
function teardown() {
|
|
swarm_manage_cleanup
|
|
stop_docker
|
|
}
|
|
|
|
@test "docker run" {
|
|
start_docker_with_busybox 2
|
|
swarm_manage
|
|
|
|
# make sure no container exist
|
|
run docker_swarm ps -qa
|
|
[ "${#lines[@]}" -eq 0 ]
|
|
|
|
# run
|
|
docker_swarm run -d --name test_container busybox sleep 100
|
|
|
|
# verify, container is running
|
|
[ -n $(docker_swarm ps -q --filter=name=test_container --filter=status=running) ]
|
|
|
|
# error check
|
|
run docker_swarm run -d 4e8aa3148a132f19ec560952231c4d39522043994df7d2dc239942c0f9424ebd
|
|
[[ "${output}" == *"cannot specify 64-byte hexadecimal strings"* ]]
|
|
}
|
|
|
|
@test "docker run with resources" {
|
|
start_docker_with_busybox 2
|
|
swarm_manage
|
|
|
|
# run
|
|
docker_swarm run -d --name test_container \
|
|
--add-host=host-test:127.0.0.1 \
|
|
--cap-add=NET_ADMIN \
|
|
--cap-drop=MKNOD \
|
|
--label=com.example.version=1.0 \
|
|
--read-only=true \
|
|
--ulimit=nofile=10 \
|
|
--device=/dev/loop0:/dev/loop0 \
|
|
--ipc=host \
|
|
--pid=host \
|
|
busybox sleep 1000
|
|
|
|
# verify, container is running
|
|
[ -n $(docker_swarm ps -q --filter=name=test_container --filter=status=running) ]
|
|
|
|
run docker_swarm inspect test_container
|
|
# label
|
|
[[ "${output}" == *"com.example.version"* ]]
|
|
# add-host
|
|
[[ "${output}" == *"host-test:127.0.0.1"* ]]
|
|
# cap-add
|
|
[[ "${output}" == *"NET_ADMIN"* ]]
|
|
# cap-drop
|
|
[[ "${output}" == *"MKNOD"* ]]
|
|
# read-only
|
|
[[ "${output}" == *"\"ReadonlyRootfs\": true"* ]]
|
|
# ulimit
|
|
[[ "${output}" == *"nofile"* ]]
|
|
# device
|
|
[[ "${output}" == *"/dev/loop0"* ]]
|
|
# ipc
|
|
[[ "${output}" == *"\"IpcMode\": \"host\""* ]]
|
|
# pid
|
|
[[ "${output}" == *"\"PidMode\": \"host\""* ]]
|
|
}
|
|
|
|
@test "docker run - reschedule with soft-image-affinity" {
|
|
start_docker_with_busybox 1
|
|
start_docker 1
|
|
|
|
docker -H ${HOSTS[0]} tag busybox:latest busyboxabcde:latest
|
|
swarm_manage
|
|
|
|
# make sure busyboxabcde exists
|
|
run docker_swarm images
|
|
[ "$status" -eq 0 ]
|
|
[[ "${output}" == *"busyboxabcde"* ]]
|
|
|
|
# try to create container on node-1, node-1 does not have busyboxabcde and will pull it
|
|
# but can not find busyboxabcde in dockerhub
|
|
# then will retry with soft-image-affinity
|
|
docker_swarm run -d --name test_container -e constraint:node==~node-1 busyboxabcde sleep 1000
|
|
|
|
# check container running on node-0
|
|
run docker_swarm ps
|
|
[[ "${output}" == *"node-0/test_container"* ]]
|
|
}
|