diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-06-17 13:58:47 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-17 13:58:47 -0400 |
commit | 725b5001a17f703d95a3c88e4f58225c5290576b (patch) | |
tree | e1caa3b2d18ca0fed2a4fddb8c434e007dc604a6 /test/system/010-images.bats | |
parent | 814a8b6d715e1e8d729c58921695c65eec0e71bc (diff) | |
parent | bd9987239dae148bfd3eea8540d21ae7715faff7 (diff) | |
download | podman-725b5001a17f703d95a3c88e4f58225c5290576b.tar.gz podman-725b5001a17f703d95a3c88e4f58225c5290576b.tar.bz2 podman-725b5001a17f703d95a3c88e4f58225c5290576b.zip |
Merge pull request #10688 from jwhonce/bz/1855983
Scrub podman commands to use report package
Diffstat (limited to 'test/system/010-images.bats')
-rw-r--r-- | test/system/010-images.bats | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/test/system/010-images.bats b/test/system/010-images.bats index 2d7ac1e0c..649987dfd 100644 --- a/test/system/010-images.bats +++ b/test/system/010-images.bats @@ -19,21 +19,22 @@ load helpers @test "podman images - custom formats" { tests=" ---format {{.ID}} | [0-9a-f]\\\{12\\\} ---format {{.ID}} --no-trunc | sha256:[0-9a-f]\\\{64\\\} ---format {{.Repository}}:{{.Tag}} | $PODMAN_TEST_IMAGE_FQN ---format {{.Labels.created_by}} | test/system/build-testimage ---format {{.Labels.created_at}} | 20[0-9-]\\\+T[0-9:]\\\+Z +{{.ID}} | [0-9a-f]\\\{12\\\} +{{.ID| upper}} | [0-9A-F]\\\{12\\\} +{{.Repository}}:{{.Tag}} | $PODMAN_TEST_IMAGE_FQN +{{.Labels.created_by}} | test/system/build-testimage +{{.Labels.created_at}} | 20[0-9-]\\\+T[0-9:]\\\+Z " parse_table "$tests" | while read fmt expect; do - run_podman images $fmt + run_podman images --format "$fmt" is "$output" "$expect\$" "podman images $fmt" done + run_podman images --format "{{.ID}}" --no-trunc + is "$output" "sha256:[0-9a-f]\\{64\\}\$" "podman images --no-trunc" } - @test "podman images - json" { # 'created': podman includes fractional seconds, podman-remote does not tests=" |