Fix unit test to use crio/crioctl
The rename to crio missed this test, update it so tests pass Signed-off-by: Matthew Heon <mheon@redhat.com>
This commit is contained in:
parent
5b184aad27
commit
d60d3b78ad
1 changed files with 4 additions and 4 deletions
|
@ -558,18 +558,18 @@ function teardown() {
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "ctr caps drop" {
|
@test "ctr caps drop" {
|
||||||
start_ocid
|
start_crio
|
||||||
run ocic pod run --config "$TESTDATA"/sandbox_config.json
|
run crioctl pod run --config "$TESTDATA"/sandbox_config.json
|
||||||
echo "$output"
|
echo "$output"
|
||||||
[ "$status" -eq 0 ]
|
[ "$status" -eq 0 ]
|
||||||
pod_id="$output"
|
pod_id="$output"
|
||||||
capsconfig=$(cat "$TESTDATA"/container_config.json | python -c 'import json,sys;obj=json.load(sys.stdin);obj["linux"]["security_context"]["capabilities"] = {u"add_capabilities": [], u"drop_capabilities": [u"mknod", u"kill", u"sys_chroot", u"setuid", u"setgid"]}; json.dump(obj, sys.stdout)')
|
capsconfig=$(cat "$TESTDATA"/container_config.json | python -c 'import json,sys;obj=json.load(sys.stdin);obj["linux"]["security_context"]["capabilities"] = {u"add_capabilities": [], u"drop_capabilities": [u"mknod", u"kill", u"sys_chroot", u"setuid", u"setgid"]}; json.dump(obj, sys.stdout)')
|
||||||
echo "$capsconfig" > "$TESTDIR"/container_config_caps.json
|
echo "$capsconfig" > "$TESTDIR"/container_config_caps.json
|
||||||
run ocic ctr create --config "$TESTDIR"/container_config_caps.json --pod "$pod_id"
|
run crioctl ctr create --config "$TESTDIR"/container_config_caps.json --pod "$pod_id"
|
||||||
echo "$output"
|
echo "$output"
|
||||||
[ "$status" -eq 0 ]
|
[ "$status" -eq 0 ]
|
||||||
|
|
||||||
cleanup_ctrs
|
cleanup_ctrs
|
||||||
cleanup_pods
|
cleanup_pods
|
||||||
stop_ocid
|
stop_crio
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue