2016-12-17 11:29:27 +00:00
|
|
|
#!/usr/bin/env bats
|
|
|
|
|
|
|
|
load helpers
|
|
|
|
|
|
|
|
@test "Check for valid pod netns CIDR" {
|
2016-12-17 14:21:11 +00:00
|
|
|
if [ ! -f "$OCID_CNI_PLUGIN/bridge" ]; then
|
|
|
|
skip "missing CNI bridge plugin, please install it"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -f "$OCID_CNI_PLUGIN/host-local" ]; then
|
|
|
|
skip "missing CNI host-local IPAM, please install it"
|
|
|
|
fi
|
|
|
|
|
2016-12-17 11:29:27 +00:00
|
|
|
prepare_network_conf $POD_CIDR
|
|
|
|
|
|
|
|
start_ocid
|
|
|
|
run ocic pod run --config "$TESTDATA"/sandbox_config.json
|
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
pod_id="$output"
|
|
|
|
|
|
|
|
check_pod_cidr $pod_id
|
|
|
|
|
|
|
|
cleanup_pods
|
|
|
|
cleanup_network_conf
|
|
|
|
stop_ocid
|
|
|
|
}
|
|
|
|
|
2016-12-21 10:28:33 +00:00
|
|
|
@test "Ping pod from the host" {
|
2016-12-17 14:21:11 +00:00
|
|
|
if [ ! -f "$OCID_CNI_PLUGIN/bridge" ]; then
|
|
|
|
skip "missing CNI bridge plugin, please install it"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -f "$OCID_CNI_PLUGIN/host-local" ]; then
|
|
|
|
skip "missing CNI host-local IPAM, please install it"
|
|
|
|
fi
|
|
|
|
|
2016-12-17 11:29:27 +00:00
|
|
|
prepare_network_conf $POD_CIDR
|
|
|
|
|
|
|
|
start_ocid
|
|
|
|
run ocic pod run --config "$TESTDATA"/sandbox_config.json
|
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
pod_id="$output"
|
|
|
|
|
|
|
|
ping_pod $pod_id
|
|
|
|
|
|
|
|
cleanup_pods
|
|
|
|
cleanup_network_conf
|
|
|
|
stop_ocid
|
|
|
|
}
|
2016-12-21 10:28:33 +00:00
|
|
|
|
|
|
|
@test "Ping pod from another pod" {
|
|
|
|
if [ ! -f "$OCID_CNI_PLUGIN/bridge" ]; then
|
|
|
|
skip "missing CNI bridge plugin, please install it"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -f "$OCID_CNI_PLUGIN/host-local" ]; then
|
|
|
|
skip "missing CNI host-local IPAM, please install it"
|
|
|
|
fi
|
|
|
|
|
|
|
|
prepare_network_conf $POD_CIDR
|
|
|
|
|
|
|
|
start_ocid
|
|
|
|
run ocic pod run --config "$TESTDATA"/sandbox_config.json
|
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
pod1_id="$output"
|
|
|
|
|
|
|
|
temp_sandbox_conf cni_test
|
|
|
|
|
|
|
|
run ocic pod run --config "$TESTDIR"/sandbox_config_cni_test.json
|
|
|
|
echo "$output"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
pod2_id="$output"
|
|
|
|
|
|
|
|
ping_pod_from_pod $pod1_id $pod2_id
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
|
|
|
|
ping_pod_from_pod $pod2_id $pod1_id
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
|
|
|
|
cleanup_pods
|
|
|
|
cleanup_network_conf
|
|
|
|
stop_ocid
|
|
|
|
}
|