2016-10-08 12:24:16 +00:00
|
|
|
#!/usr/bin/env bats
|
|
|
|
|
|
|
|
load helpers
|
|
|
|
|
|
|
|
function teardown() {
|
|
|
|
cleanup_test
|
|
|
|
}
|
|
|
|
|
2017-05-12 13:36:15 +00:00
|
|
|
@test "crio restore" {
|
|
|
|
start_crio
|
|
|
|
run crioctl pod run --config "$TESTDATA"/sandbox_config.json
|
2016-10-08 12:24:16 +00:00
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
pod_id="$output"
|
|
|
|
|
2017-05-12 13:36:15 +00:00
|
|
|
run crioctl pod list --id "$pod_id"
|
2016-10-27 06:24:27 +00:00
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
pod_list_info="$output"
|
|
|
|
|
2017-05-12 13:36:15 +00:00
|
|
|
run crioctl pod status --id "$pod_id"
|
2016-10-27 06:24:27 +00:00
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
pod_status_info="$output"
|
|
|
|
|
2017-05-12 13:36:15 +00:00
|
|
|
run crioctl ctr create --config "$TESTDATA"/container_config.json --pod "$pod_id"
|
2016-10-08 12:24:16 +00:00
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
ctr_id="$output"
|
|
|
|
|
2017-05-12 13:36:15 +00:00
|
|
|
run crioctl ctr list --id "$ctr_id"
|
2016-10-27 06:24:27 +00:00
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
ctr_list_info="$output"
|
|
|
|
|
2017-05-12 13:36:15 +00:00
|
|
|
run crioctl ctr status --id "$ctr_id"
|
2016-10-27 06:24:27 +00:00
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
ctr_status_info="$output"
|
|
|
|
|
2017-05-12 13:36:15 +00:00
|
|
|
stop_crio
|
2016-10-08 12:24:16 +00:00
|
|
|
|
2017-05-12 13:36:15 +00:00
|
|
|
start_crio
|
|
|
|
run crioctl pod list
|
2016-10-08 12:24:16 +00:00
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
2016-10-08 12:57:45 +00:00
|
|
|
[[ "${output}" != "" ]]
|
2016-10-13 08:50:51 +00:00
|
|
|
[[ "${output}" =~ "${pod_id}" ]]
|
2016-10-08 12:24:16 +00:00
|
|
|
|
2017-05-12 13:36:15 +00:00
|
|
|
run crioctl pod list --id "$pod_id"
|
2016-10-27 06:24:27 +00:00
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
[[ "${output}" == "${pod_list_info}" ]]
|
|
|
|
|
2017-05-12 13:36:15 +00:00
|
|
|
run crioctl pod status --id "$pod_id"
|
2016-10-27 06:24:27 +00:00
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
[[ "${output}" == "${pod_status_info}" ]]
|
|
|
|
|
2017-05-12 13:36:15 +00:00
|
|
|
run crioctl ctr list
|
2016-10-08 12:24:16 +00:00
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
2016-10-08 12:57:45 +00:00
|
|
|
[[ "${output}" != "" ]]
|
2017-05-16 10:50:41 +00:00
|
|
|
[[ "${output}" =~ "${ctr_id}" ]]
|
2016-10-08 12:24:16 +00:00
|
|
|
|
2017-05-12 13:36:15 +00:00
|
|
|
run crioctl ctr list --id "$ctr_id"
|
2016-10-27 06:24:27 +00:00
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
[[ "${output}" == "${ctr_list_info}" ]]
|
|
|
|
|
2017-05-12 13:36:15 +00:00
|
|
|
run crioctl ctr status --id "$ctr_id"
|
2016-10-27 06:24:27 +00:00
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
[[ "${output}" == "${ctr_status_info}" ]]
|
|
|
|
|
2016-10-08 12:57:45 +00:00
|
|
|
cleanup_ctrs
|
2016-10-08 12:24:16 +00:00
|
|
|
cleanup_pods
|
2017-05-12 13:36:15 +00:00
|
|
|
stop_crio
|
2016-10-08 12:24:16 +00:00
|
|
|
}
|
2017-05-16 10:50:21 +00:00
|
|
|
|
2017-05-21 13:47:01 +00:00
|
|
|
@test "crio restore with bad state and pod stopped" {
|
|
|
|
start_crio
|
|
|
|
run crioctl pod run --config "$TESTDATA"/sandbox_config.json
|
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
pod_id="$output"
|
|
|
|
|
|
|
|
run crioctl pod stop --id "$pod_id"
|
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
|
|
|
|
stop_crio
|
|
|
|
|
|
|
|
# simulate reboot with runc state going away
|
|
|
|
for i in $("$RUNTIME" list -q | xargs); do "$RUNTIME" delete -f $i; done
|
|
|
|
|
|
|
|
start_crio
|
|
|
|
|
|
|
|
run crioctl pod stop --id "$pod_id"
|
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
|
|
|
|
cleanup_pods
|
|
|
|
stop_crio
|
|
|
|
}
|
|
|
|
|
|
|
|
@test "crio restore with bad state and ctr stopped" {
|
|
|
|
start_crio
|
|
|
|
run crioctl pod run --config "$TESTDATA"/sandbox_config.json
|
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
pod_id="$output"
|
|
|
|
|
|
|
|
run crioctl ctr create --config "$TESTDATA"/container_config.json --pod "$pod_id"
|
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
ctr_id="$output"
|
|
|
|
|
|
|
|
run crioctl ctr stop --id "$ctr_id"
|
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
|
|
|
|
stop_crio
|
|
|
|
|
|
|
|
# simulate reboot with runc state going away
|
|
|
|
for i in $("$RUNTIME" list -q | xargs); do "$RUNTIME" delete -f $i; done
|
|
|
|
|
|
|
|
start_crio
|
|
|
|
|
|
|
|
run crioctl ctr stop --id "$ctr_id"
|
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
|
|
|
|
cleanup_ctrs
|
|
|
|
cleanup_pods
|
|
|
|
stop_crio
|
|
|
|
}
|
|
|
|
|
|
|
|
@test "crio restore with bad state and ctr removed" {
|
|
|
|
start_crio
|
|
|
|
run crioctl pod run --config "$TESTDATA"/sandbox_config.json
|
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
pod_id="$output"
|
|
|
|
|
|
|
|
run crioctl ctr create --config "$TESTDATA"/container_config.json --pod "$pod_id"
|
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
ctr_id="$output"
|
|
|
|
|
|
|
|
run crioctl ctr stop --id "$ctr_id"
|
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
|
|
|
|
run crioctl ctr remove --id "$ctr_id"
|
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
|
|
|
|
stop_crio
|
|
|
|
|
|
|
|
# simulate reboot with runc state going away
|
|
|
|
for i in $("$RUNTIME" list -q | xargs); do "$RUNTIME" delete -f $i; done
|
|
|
|
|
|
|
|
start_crio
|
|
|
|
|
|
|
|
run crioctl ctr stop --id "$ctr_id"
|
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 1 ]
|
|
|
|
[[ "${output}" =~ "not found" ]]
|
|
|
|
|
|
|
|
cleanup_ctrs
|
|
|
|
cleanup_pods
|
|
|
|
stop_crio
|
|
|
|
}
|
|
|
|
|
|
|
|
@test "crio restore with bad state and pod removed" {
|
|
|
|
start_crio
|
|
|
|
run crioctl pod run --config "$TESTDATA"/sandbox_config.json
|
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
pod_id="$output"
|
|
|
|
|
|
|
|
run crioctl pod stop --id "$pod_id"
|
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
|
|
|
|
run crioctl pod remove --id "$pod_id"
|
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
|
|
|
|
stop_crio
|
|
|
|
|
|
|
|
# simulate reboot with runc state going away
|
|
|
|
for i in $("$RUNTIME" list -q | xargs); do "$RUNTIME" delete -f $i; done
|
|
|
|
|
|
|
|
start_crio
|
|
|
|
|
|
|
|
run crioctl pod stop --id "$pod_id"
|
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
|
|
|
|
cleanup_pods
|
|
|
|
stop_crio
|
|
|
|
}
|
|
|
|
|
2017-05-16 10:50:21 +00:00
|
|
|
@test "crio restore with bad state" {
|
|
|
|
start_crio
|
|
|
|
run crioctl pod run --config "$TESTDATA"/sandbox_config.json
|
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
pod_id="$output"
|
|
|
|
|
|
|
|
run crioctl pod status --id "$pod_id"
|
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
[[ "${output}" =~ "SANDBOX_READY" ]]
|
|
|
|
|
|
|
|
run crioctl ctr create --config "$TESTDATA"/container_config.json --pod "$pod_id"
|
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
ctr_id="$output"
|
|
|
|
|
|
|
|
run crioctl ctr status --id "$ctr_id"
|
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
[[ "${output}" =~ "CONTAINER_CREATED" ]]
|
|
|
|
|
|
|
|
stop_crio
|
|
|
|
|
|
|
|
# simulate reboot with runc state going away
|
|
|
|
for i in $("$RUNTIME" list -q | xargs); do "$RUNTIME" delete -f $i; done
|
|
|
|
|
|
|
|
start_crio
|
|
|
|
run crioctl pod list
|
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
[[ "${output}" != "" ]]
|
|
|
|
[[ "${output}" =~ "${pod_id}" ]]
|
|
|
|
|
|
|
|
run crioctl pod status --id "$pod_id"
|
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
[[ "${output}" =~ "SANDBOX_NOTREADY" ]]
|
|
|
|
|
|
|
|
run crioctl ctr list
|
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
[[ "${output}" != "" ]]
|
|
|
|
[[ "${output}" =~ "${ctr_id}" ]]
|
|
|
|
|
|
|
|
run crioctl ctr status --id "$ctr_id"
|
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
[[ "${output}" =~ "CONTAINER_EXITED" ]]
|
|
|
|
[[ "${output}" =~ "Exit Code: 255" ]]
|
|
|
|
|
2017-05-21 13:47:01 +00:00
|
|
|
run crioctl pod stop --id "$pod_id"
|
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
run crioctl pod remove --id "$pod_id"
|
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
|
2017-05-16 10:50:21 +00:00
|
|
|
cleanup_ctrs
|
|
|
|
cleanup_pods
|
|
|
|
stop_crio
|
|
|
|
}
|