cri-o/test/restore.bats
Antonio Murdaca e0364ec633
add containers restore test
Signed-off-by: Antonio Murdaca <runcom@redhat.com>
2016-10-08 14:46:39 +02:00

41 lines
860 B
Bash

#!/usr/bin/env bats
load helpers
function teardown() {
cleanup_test
}
@test "ocid restore" {
# 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 ctr create --config "$TESTDATA"/container_config.json --pod "$pod_id"
echo "$output"
[ "$status" -eq 0 ]
ctr_id="$output"
stop_ocid
start_ocid
run ocic pod list
echo "$output"
[ "$status" -eq 0 ]
#[[ "${output}" == *'${pod_id}'* ]]
run ocic ctr list
echo "$output"
[ "$status" -eq 0 ]
#[[ "${output}" == *'${pod_id}'* ]]
cleanup_pods
stop_ocid
}