Skip to content

Commit

Permalink
Merge pull request #17451 from edsantiago/events_test_rhel8
Browse files Browse the repository at this point in the history
events + container inspect test: RHEL fixes
  • Loading branch information
openshift-merge-robot authored Feb 9, 2023
2 parents 09e853b + 9cba047 commit a272dd4
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions test/system/090-events.bats
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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
}

Expand Down

0 comments on commit a272dd4

Please sign in to comment.