2017-07-31 19:35:14 +00:00
|
|
|
#!/usr/bin/env bats
|
|
|
|
|
|
|
|
load helpers
|
|
|
|
|
|
|
|
IMAGE="redis:alpine"
|
2017-09-28 16:51:35 +00:00
|
|
|
|
|
|
|
function teardown() {
|
|
|
|
cleanup_test
|
|
|
|
}
|
2017-07-31 19:35:14 +00:00
|
|
|
|
|
|
|
@test "mount" {
|
|
|
|
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} mount $ctr_id
|
|
|
|
echo "$output"
|
|
|
|
echo ${KPOD_BINARY} ${KPOD_OPTIONS} mount $ctr_id
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
run bash -c "${KPOD_BINARY} ${KPOD_OPTIONS} mount --notruncate | grep $ctr_id"
|
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
run ${KPOD_BINARY} ${KPOD_OPTIONS} unmount $ctr_id
|
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
run ${KPOD_BINARY} ${KPOD_OPTIONS} mount $ctr_id
|
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
root="$output"
|
|
|
|
run bash -c "${KPOD_BINARY} ${KPOD_OPTIONS} mount --format=json | python -m json.tool | grep $ctr_id"
|
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
touch $root/foobar
|
2017-08-31 12:46:26 +00:00
|
|
|
run ${KPOD_BINARY} ${KPOD_OPTIONS} unmount $ctr_id
|
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
2017-07-31 19:35:14 +00:00
|
|
|
cleanup_ctrs
|
|
|
|
cleanup_pods
|
|
|
|
stop_crio
|
|
|
|
}
|