#!/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 \ --memory-swappiness=2 \ --group-add="root" \ --memory-reservation=100 \ --kernel-memory=100 \ --dns-opt="someDnsOption" \ --stop-signal="SIGKILL" \ 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\""* ]] # memory-swappiness [[ "${output}" == *"\"MemorySwappiness\": 2"* ]] # group-add [[ "${output}" == *"root"* ]] # memory-reservation [[ "${output}" == *"\"MemoryReservation\": 100"* ]] # kernel-memory [[ "${output}" == *"\"KernelMemory\": 100"* ]] # dns-opt [[ "${output}" == *"someDnsOption"* ]] # stop-signal [[ "${output}" == *"\"StopSignal\": \"SIGKILL\""* ]] } @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"* ]] } @test "docker run - reschedule with soft-image-affinity(have node constraint))" { 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"* ]] # create container on node-1, node-1 does not have busyboxabcde and will pull it # but can not find busyboxabcde in dockerhub # because run with node constraint, will not retry with soft-image-affinity run docker_swarm run -d --name test_container -e constraint:node==node-1 busyboxabcde sleep 1000 # check error message [[ "${output}" != *"unable to find a node that satisfies"* ]] [[ "${output}" == *"busyboxabcde:latest not found"* ]] } @test "docker run - with not exist volume driver" { start_docker_with_busybox 2 swarm_manage # make sure no container exist run docker_swarm ps -qa [ "${#lines[@]}" -eq 0 ] # run run docker_swarm run -d --volume-driver=not_exist_volume_driver -v testvolume:/testvolume --name test_container busybox sleep 100 # check error message [ "$status" -ne 0 ] [[ "${output}" == *"Plugin not found"* ]] }