add containers restore test

Signed-off-by: Antonio Murdaca <runcom@redhat.com>
This commit is contained in:
Antonio Murdaca 2016-10-08 14:24:16 +02:00
parent 30757221b4
commit e0364ec633
No known key found for this signature in database
GPG key ID: B2BEAD150DE936B9
4 changed files with 54 additions and 12 deletions

View file

@ -33,8 +33,8 @@ function teardown() {
run ocic pod remove --id "$pod_id" run ocic pod remove --id "$pod_id"
echo "$output" echo "$output"
[ "$status" -eq 0 ] [ "$status" -eq 0 ]
stop_ocid
cleanup_pods cleanup_pods
stop_ocid
} }
@test "ctr lifecycle" { @test "ctr lifecycle" {
@ -103,6 +103,6 @@ function teardown() {
run ocic ctr list run ocic ctr list
echo "$output" echo "$output"
[ "$status" -eq 0 ] [ "$status" -eq 0 ]
stop_ocid
cleanup_pods cleanup_pods
stop_ocid
} }

View file

@ -77,21 +77,22 @@ function start_ocid() {
} }
function cleanup_pods() { function cleanup_pods() {
run ocic pod list run ocic pod list --quiet
if [ "$status" -eq 0 ]; then if [ "$status" -eq 0 ]; then
printf '%s\n' "$output" | while IFS= read -r line if [ "$output" != "" ]; then
do printf '%s\n' "$output" | while IFS= read -r line
pod=$(echo "$line" | sed -e 's/ID: //g') do
ocic pod stop --id "$pod" ocic pod stop --id "$line"
ocic pod remove --id "$pod" ocic pod remove --id "$line"
done done
fi
fi fi
} }
# Stop ocid. # Stop ocid.
function stop_ocid() { function stop_ocid() {
if [ "$OCID_PID" != "" ]; then if [ "$OCID_PID" != "" ]; then
kill "$OCID_PID" >/dev/null 2>&1 kill -9 "$OCID_PID" >/dev/null 2>&1
fi fi
} }

View file

@ -35,8 +35,8 @@ function teardown() {
run ocic pod remove --id "$id" run ocic pod remove --id "$id"
echo "$output" echo "$output"
[ "$status" -eq 0 ] [ "$status" -eq 0 ]
stop_ocid
cleanup_pods cleanup_pods
stop_ocid
} }
@test "pod remove" { @test "pod remove" {
@ -60,6 +60,6 @@ function teardown() {
run ocic pod remove --id "$pod_id" run ocic pod remove --id "$pod_id"
echo "$output" echo "$output"
[ "$status" -eq 0 ] [ "$status" -eq 0 ]
stop_ocid
cleanup_pods cleanup_pods
stop_ocid
} }

41
test/restore.bats Normal file
View file

@ -0,0 +1,41 @@
#!/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
}