mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-06-23 22:17:19 +00:00
Let's skip all tests for trusted storage until #10838 is resolved. Signed-off-by: Hyounggyu Choi <Hyounggyu.Choi@ibm.com>
63 lines
1.7 KiB
Bash
63 lines
1.7 KiB
Bash
#!/usr/bin/env bats
|
|
#
|
|
# Copyright (c) 2023 Red Hat
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
load "${BATS_TEST_DIRNAME}/../../common.bash"
|
|
load "${BATS_TEST_DIRNAME}/lib.sh"
|
|
load "${BATS_TEST_DIRNAME}/tests_common.sh"
|
|
|
|
check_and_skip() {
|
|
case "${KATA_HYPERVISOR}" in
|
|
qemu-tdx|qemu-coco-dev)
|
|
if [ "$(uname -m)" == "s390x" ]; then
|
|
skip "measured rootfs tests not implemented for s390x"
|
|
fi
|
|
return
|
|
;;
|
|
*)
|
|
skip "measured rootfs tests not implemented for hypervisor: $KATA_HYPERVISOR"
|
|
;;
|
|
esac
|
|
}
|
|
|
|
setup() {
|
|
check_and_skip
|
|
setup_common || die "setup_common failed"
|
|
}
|
|
|
|
@test "Test cannnot launch pod with measured boot enabled and incorrect hash" {
|
|
pod_config="$(new_pod_config nginx "kata-${KATA_HYPERVISOR}")"
|
|
|
|
incorrect_hash="1111111111111111111111111111111111111111111111111111111111111111"
|
|
|
|
# To avoid editing that file on the worker node, here it will be
|
|
# enabled via pod annotations.
|
|
set_metadata_annotation "$pod_config" \
|
|
"io.katacontainers.config.hypervisor.kernel_params" \
|
|
"rootfs_verity.scheme=dm-verity rootfs_verity.hash=$incorrect_hash"
|
|
# Run on a specific node so we know from where to inspect the logs
|
|
set_node "$pod_config" "$node"
|
|
|
|
# Skip adding the policy, as it's causing the test to fail.
|
|
# See more details on: https://github.com/kata-containers/kata-containers/issues/9612
|
|
# # Add an "allow all" policy if policy testing is enabled.
|
|
# add_allow_all_policy_to_yaml "$pod_config"
|
|
|
|
# For debug sake
|
|
echo "Pod $pod_config file:"
|
|
cat $pod_config
|
|
|
|
kubectl apply -f $pod_config
|
|
|
|
waitForProcess "60" "3" "exec_host $node journalctl -t kata | grep \"verity: .* metadata block .* is corrupted\""
|
|
}
|
|
|
|
teardown() {
|
|
check_and_skip
|
|
|
|
teardown_common "${node}" "${node_start_time:-}"
|
|
}
|