From 52ff9e46dcd64172276fdc59f045c98ed89bab03 Mon Sep 17 00:00:00 2001 From: Mrunal Patel Date: Wed, 28 Sep 2016 12:54:57 -0700 Subject: [PATCH] Add a test for ctr remove Signed-off-by: Mrunal Patel --- test/ctr.bats | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 test/ctr.bats diff --git a/test/ctr.bats b/test/ctr.bats new file mode 100644 index 00000000..f5abb8d2 --- /dev/null +++ b/test/ctr.bats @@ -0,0 +1,38 @@ +#!/usr/bin/env bats + +load helpers + +function teardown() { + cleanup_test +} + +@test "ctr remove" { + # 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 + [ "$status" -eq 0 ] + echo "$output" + pod_id="$output" + run ocic ctr create --config "$TESTDATA"/container_redis.json --pod "$pod_id" + echo "$output" + [ "$status" -eq 0 ] + ctr_id="$output" + run ocic ctr start --id "$ctr_id" + echo "$output" + [ "$status" -eq 0 ] + run ocic ctr remove --id "$ctr_id" + echo "$output" + [ "$status" -eq 0 ] + run ocic pod stop --id "$pod_id" + echo "$output" + [ "$status" -eq 0 ] + run ocic pod remove --id "$pod_id" + echo "$output" + [ "$status" -eq 0 ] + stop_ocid + cleanup_pods +}