aboutsummaryrefslogtreecommitdiff
path: root/test/kpod_export.bats
diff options
context:
space:
mode:
Diffstat (limited to 'test/kpod_export.bats')
-rw-r--r--test/kpod_export.bats31
1 files changed, 31 insertions, 0 deletions
diff --git a/test/kpod_export.bats b/test/kpod_export.bats
new file mode 100644
index 000000000..9454db399
--- /dev/null
+++ b/test/kpod_export.bats
@@ -0,0 +1,31 @@
+#!/usr/bin/env bats
+
+load helpers
+
+IMAGE="redis:alpine"
+
+function teardown() {
+ cleanup_test
+}
+
+@test "kpod export output flag" {
+ start_crio
+ run crioctl pod run --config "$TESTDATA"/sandbox_config.json
+ echo "$output"
+ [ "$status" -eq 0 ]
+ pod_id="$output"
+ run crioctl image pull "$IMAGE"
+ echo "$output"
+ [ "$status" -eq 0 ]
+ run crioctl ctr create --config "$TESTDATA"/container_config.json --pod "$pod_id"
+ echo "$output"
+ [ "$status" -eq 0 ]
+ ctr_id="$output"
+ run ${KPOD_BINARY} ${KPOD_OPTIONS} export -o container.tar "$ctr_id"
+ echo "$output"
+ [ "$status" -eq 0 ]
+ cleanup_ctrs
+ cleanup_pods
+ stop_crio
+ rm -f container.tar
+}