mirror of https://github.com/docker/docs.git
52 lines
1.1 KiB
Bash
52 lines
1.1 KiB
Bash
#!/usr/bin/env bats
|
|
|
|
load ../mesos_helpers
|
|
|
|
function teardown() {
|
|
swarm_manage_cleanup
|
|
stop_mesos
|
|
stop_docker
|
|
}
|
|
|
|
@test "mesos - docker run" {
|
|
start_docker_with_busybox 2
|
|
start_mesos
|
|
swarm_manage_mesos
|
|
|
|
# make sure no container exist
|
|
run docker_swarm ps -qa
|
|
[ "${#lines[@]}" -eq 0 ]
|
|
|
|
# run
|
|
docker_swarm run -m 20m -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 -m 20m -d 4e8aa3148a132f19ec560952231c4d39522043994df7d2dc239942c0f9424ebd
|
|
[[ "${output}" == *"cannot specify 64-byte hexadecimal strings"* ]]
|
|
}
|
|
|
|
@test "mesos - docker run no resources" {
|
|
start_docker 1
|
|
start_mesos
|
|
swarm_manage_mesos
|
|
|
|
run docker_swarm run -d busybox ls
|
|
[ "$status" -ne 0 ]
|
|
[[ "${output}" == *'resources constraints (-c and/or -m) are required by mesos'* ]]
|
|
}
|
|
|
|
@test "mesos - docker run big" {
|
|
start_docker_with_busybox 3
|
|
start_mesos
|
|
swarm_manage_mesos
|
|
|
|
for i in `seq 1 100`; do
|
|
docker_swarm run -d -m 20m busybox echo $i
|
|
done
|
|
|
|
run docker_swarm ps -aq
|
|
[ "${#lines[@]}" -eq 100 ]
|
|
} |