events + container inspect test: RHEL fixes

Primarily, add skip_if_journald_unavailable because RHEL.

Secondarily, reverse a flipped actual/expect assertion
that made it difficult to understand the RHEL failure.

Signed-off-by: Ed Santiago <santiago@redhat.com>
This commit is contained in:
Ed Santiago
2023-02-09 06:49:32 -07:00
committed by openshift-cherrypick-robot
parent 56d5de8bcf
commit 8e5eb9a797

View File

@ -272,7 +272,7 @@ EOF
--stream=false \
--format="{{.ContainerInspectData}}"
events_json=$(jq -r --tab . <<< "[$output]")
assert "$inspect_json" = "$events_json" "JSON payload in event attributes is the same as the inspect one"
assert "$events_json" = "$inspect_json" "JSON payload in event attributes is the same as the inspect one"
# Make sure that the inspect data doesn't show by default in
# podman-events.
@ -285,10 +285,16 @@ EOF
assert "$output" != ".*EffectiveCaps.*"
}
@test "events - container inspect data" {
@test "events - container inspect data - journald" {
skip_if_remote "remote does not support --events-backend"
skip_if_journald_unavailable
_events_container_create_inspect_data journald
}
@test "events - container inspect data - file" {
skip_if_remote "remote does not support --events-backend"
_events_container_create_inspect_data file
}