Add a test for pod remove
Signed-off-by: Mrunal Patel <mrunalp@gmail.com>
This commit is contained in:
parent
1b3d172377
commit
c647c908a2
1 changed files with 25 additions and 0 deletions
|
@ -33,3 +33,28 @@ function teardown() {
|
||||||
stop_ocid
|
stop_ocid
|
||||||
cleanup_pods
|
cleanup_pods
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@test "pod 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 pod remove --id "$pod_id"
|
||||||
|
echo "$output"
|
||||||
|
[ "$status" -eq 0 ]
|
||||||
|
stop_ocid
|
||||||
|
cleanup_pods
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue