From d701009264145950a8c5836f1dc10b537f3fa84c Mon Sep 17 00:00:00 2001 From: Samuel Ortiz Date: Fri, 9 Dec 2016 00:43:25 +0100 Subject: [PATCH] test: Add a pod remove idempotent test Test if we can remove a pod several times without generating an error. Signed-off-by: Samuel Ortiz --- test/pod.bats | 23 +++++++++++++++++++++++ test/testdata/sandbox_config.json | 1 + 2 files changed, 24 insertions(+) diff --git a/test/pod.bats b/test/pod.bats index fc70b2aa..7525a7c7 100644 --- a/test/pod.bats +++ b/test/pod.bats @@ -257,6 +257,29 @@ function teardown() { stop_ocid } +@test "pod remove idempotent" { + # this test requires docker, thus it can't yet be run in a container + if [ "$TRAVIS" = "true" ]; then # instead of $TRAVIS, add a function is_containerized to skip here + skip "cannot yet run this test in a container, use sudo make localintegration" + fi + + start_ocid + run ocic pod create --config "$TESTDATA"/sandbox_config.json + echo "$output" + [ "$status" -eq 0 ] + pod_id="$output" + run ocic pod remove --id "$pod_id" + echo "$output" + [ "$status" -eq 0 ] + run ocic pod remove --id "$pod_id" + echo "$output" + [ "$status" -eq 0 ] + + cleanup_ctrs + cleanup_pods + stop_ocid +} + @test "pod stop idempotent with ctrs already stopped" { # this test requires docker, thus it can't yet be run in a container if [ "$TRAVIS" = "true" ]; then # instead of $TRAVIS, add a function is_containerized to skip here diff --git a/test/testdata/sandbox_config.json b/test/testdata/sandbox_config.json index bc1f8a99..0135b7b1 100644 --- a/test/testdata/sandbox_config.json +++ b/test/testdata/sandbox_config.json @@ -59,5 +59,6 @@ "host_pid": false, "host_ipc": false } + } } }