diff options
author | baude <bbaude@redhat.com> | 2018-01-29 14:28:32 -0600 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-01-30 10:40:00 +0000 |
commit | 4cb33035ce82d4eebc20a01abab20828be802f4d (patch) | |
tree | 5a68624f7fddd5b0c3848441df604723ede061d2 /test/podman_stop.bats | |
parent | c60d8a0671b48ffdeda68895e0b7d97b252d66d9 (diff) | |
download | podman-4cb33035ce82d4eebc20a01abab20828be802f4d.tar.gz podman-4cb33035ce82d4eebc20a01abab20828be802f4d.tar.bz2 podman-4cb33035ce82d4eebc20a01abab20828be802f4d.zip |
Migrate start, stats, stop to Ginkgo
Migrate the start, stats, and stop integration tests to the
Ginkgo style.
Signed-off-by: baude <bbaude@redhat.com>
Closes: #274
Approved by: mheon
Diffstat (limited to 'test/podman_stop.bats')
-rw-r--r-- | test/podman_stop.bats | 92 |
1 files changed, 0 insertions, 92 deletions
diff --git a/test/podman_stop.bats b/test/podman_stop.bats deleted file mode 100644 index 2809a2b33..000000000 --- a/test/podman_stop.bats +++ /dev/null @@ -1,92 +0,0 @@ -#!/usr/bin/env bats - -load helpers - -function teardown() { - cleanup_test -} - -function setup() { - copy_images -} - -@test "stop a bogus container" { - run ${PODMAN_BINARY} ${PODMAN_OPTIONS} stop foobar - echo "$output" - [ "$status" -eq 125 ] -} - -@test "stop a running container by id" { - run ${PODMAN_BINARY} ${PODMAN_OPTIONS} run -d ${ALPINE} sleep 9999 - echo "$output" - [ "$status" -eq 0 ] - ctr_id="$output" - run ${PODMAN_BINARY} ${PODMAN_OPTIONS} ps --no-trunc - echo "$output" - [ "$status" -eq 0 ] - [[ "$output" == *"$ctr_id"* ]] - run ${PODMAN_BINARY} ${PODMAN_OPTIONS} stop $ctr_id - echo "$output" - [ "$status" -eq 0 ] - run ${PODMAN_BINARY} ${PODMAN_OPTIONS} ps --no-trunc - echo "$output" - [ "$status" -eq 0 ] - [[ "$output" != *"$ctr_id"* ]] -} - -@test "stop a running container by name" { - run ${PODMAN_BINARY} ${PODMAN_OPTIONS} run --name test1 -d ${ALPINE} sleep 9999 - echo "$output" - [ "$status" -eq 0 ] - run ${PODMAN_BINARY} ${PODMAN_OPTIONS} ps - echo "$output" - [ "$status" -eq 0 ] - [[ "$output" == *"test1"* ]] - run ${PODMAN_BINARY} ${PODMAN_OPTIONS} stop test1 - echo "$output" - [ "$status" -eq 0 ] - run ${PODMAN_BINARY} ${PODMAN_OPTIONS} ps - echo "$output" - [ "$status" -eq 0 ] - [[ "$output" != *"test1"* ]] -} - -@test "stop all containers" { - run ${PODMAN_BINARY} ${PODMAN_OPTIONS} run --name test1 -d ${ALPINE} sleep 9999 - echo "$output" - run ${PODMAN_BINARY} ${PODMAN_OPTIONS} run --name test2 -d ${ALPINE} sleep 9999 - echo "$output" - run ${PODMAN_BINARY} ${PODMAN_OPTIONS} run --name test3 -d ${ALPINE} sleep 9999 - echo "$output" - run ${PODMAN_BINARY} ${PODMAN_OPTIONS} ps - echo "$output" - [[ "$output" == *"test1"* ]] - [[ "$output" == *"test2"* ]] - [[ "$output" == *"test3"* ]] - run ${PODMAN_BINARY} ${PODMAN_OPTIONS} stop -a -t 1 - echo "$output" - [ "$status" -eq 0 ] - run ${PODMAN_BINARY} ${PODMAN_OPTIONS} ps - echo "$output" - [[ "$output" != *"test1"* ]] - [[ "$output" != *"test2"* ]] - [[ "$output" != *"test3"* ]] -} - -@test "stop a container with latest" { - run ${PODMAN_BINARY} ${PODMAN_OPTIONS} run --name test1 -d ${ALPINE} sleep 9999 - echo "$output" - run ${PODMAN_BINARY} ${PODMAN_OPTIONS} run --name test2 -d ${ALPINE} sleep 9999 - echo "$output" - run ${PODMAN_BINARY} ${PODMAN_OPTIONS} ps - echo "$output" - [[ "$output" == *"test1"* ]] - [[ "$output" == *"test2"* ]] - run ${PODMAN_BINARY} ${PODMAN_OPTIONS} stop -t 1 -l - echo "$output" - [ "$status" -eq 0 ] - run ${PODMAN_BINARY} ${PODMAN_OPTIONS} ps - echo "$output" - [[ "$output" == *"test1"* ]] - [[ "$output" != *"test2"* ]] -} |