07ccda3395
Since we no longer fall back to the noop plugin when CNI configuration files are missing, and since the default sandbox_config.json test file is running without host networking, we must install the bridge and loopback configuration files by default for tests to pass. Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
53 lines
925 B
Bash
53 lines
925 B
Bash
#!/usr/bin/env bats
|
|
|
|
load helpers
|
|
|
|
@test "Check for valid pod netns 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
|
|
stop_ocid
|
|
}
|
|
|
|
@test "Ping pod from the host" {
|
|
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
|
|
stop_ocid
|
|
}
|
|
|
|
@test "Ping pod from another pod" {
|
|
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
|
|
stop_ocid
|
|
}
|