5947698818
Because we need a working CNI plugin to setup a correct netns so sandbox_run can grab a working IP address. Signed-off-by: Antonio Murdaca <runcom@redhat.com>
120 lines
2.6 KiB
Bash
120 lines
2.6 KiB
Bash
#!/usr/bin/env bats
|
|
|
|
load helpers
|
|
|
|
@test "Check for valid pod netns CIDR" {
|
|
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_redis.json --pod "$pod_id"
|
|
echo "$output"
|
|
[ "$status" -eq 0 ]
|
|
ctr_id="$output"
|
|
|
|
check_pod_cidr $ctr_id
|
|
|
|
cleanup_ctrs
|
|
cleanup_pods
|
|
stop_crio
|
|
}
|
|
|
|
@test "Ping pod from the host" {
|
|
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_redis.json --pod "$pod_id"
|
|
echo "$output"
|
|
[ "$status" -eq 0 ]
|
|
ctr_id="$output"
|
|
|
|
ping_pod $ctr_id
|
|
|
|
cleanup_ctrs
|
|
cleanup_pods
|
|
stop_crio
|
|
}
|
|
|
|
@test "Ping pod from another pod" {
|
|
start_crio
|
|
run crioctl pod run --config "$TESTDATA"/sandbox_config.json
|
|
echo "$output"
|
|
[ "$status" -eq 0 ]
|
|
pod1_id="$output"
|
|
run crioctl ctr create --config "$TESTDATA"/container_redis.json --pod "$pod1_id"
|
|
echo "$output"
|
|
[ "$status" -eq 0 ]
|
|
ctr1_id="$output"
|
|
|
|
temp_sandbox_conf cni_test
|
|
|
|
run crioctl pod run --config "$TESTDIR"/sandbox_config_cni_test.json
|
|
echo "$output"
|
|
[ "$status" -eq 0 ]
|
|
pod2_id="$output"
|
|
run crioctl ctr create --config "$TESTDATA"/container_redis.json --pod "$pod2_id"
|
|
echo "$output"
|
|
[ "$status" -eq 0 ]
|
|
ctr2_id="$output"
|
|
|
|
ping_pod_from_pod $ctr1_id $ctr2_id
|
|
[ "$status" -eq 0 ]
|
|
|
|
ping_pod_from_pod $ctr2_id $ctr1_id
|
|
[ "$status" -eq 0 ]
|
|
|
|
cleanup_ctrs
|
|
cleanup_pods
|
|
stop_crio
|
|
}
|
|
|
|
@test "Ensure correct CNI plugin namespace/name/container-id arguments" {
|
|
start_crio "" "" "" "prepare_plugin_test_args_network_conf"
|
|
run crioctl pod run --config "$TESTDATA"/sandbox_config.json
|
|
[ "$status" -eq 0 ]
|
|
|
|
. /tmp/plugin_test_args.out
|
|
|
|
[ "$FOUND_CNI_CONTAINERID" != "redhat.test.crio" ]
|
|
[ "$FOUND_CNI_CONTAINERID" != "podsandbox1" ]
|
|
[ "$FOUND_K8S_POD_NAMESPACE" = "redhat.test.crio" ]
|
|
[ "$FOUND_K8S_POD_NAME" = "podsandbox1" ]
|
|
|
|
rm -rf /tmp/plugin_test_args.out
|
|
|
|
cleanup_pods
|
|
stop_crio
|
|
}
|
|
|
|
@test "Connect to pod hostport from the host" {
|
|
start_crio
|
|
run crioctl pod run --config "$TESTDATA"/sandbox_config_hostport.json
|
|
echo "$output"
|
|
[ "$status" -eq 0 ]
|
|
pod_id="$output"
|
|
|
|
get_host_ip
|
|
echo $host_ip
|
|
|
|
run crioctl ctr create --config "$TESTDATA"/container_config_hostport.json --pod "$pod_id"
|
|
echo "$output"
|
|
[ "$status" -eq 0 ]
|
|
ctr_id="$output"
|
|
run crioctl ctr start --id "$ctr_id"
|
|
echo "$output"
|
|
[ "$status" -eq 0 ]
|
|
run nc -w 5 $host_ip 4888
|
|
echo "$output"
|
|
[ "$output" = "crioctl_host" ]
|
|
[ "$status" -eq 0 ]
|
|
run crioctl ctr stop --id "$ctr_id"
|
|
echo "$output"
|
|
cleanup_pods
|
|
|
|
stop_crio
|
|
}
|