Skip to content

Commit

Permalink
Merge pull request containers#7869 from vrothberg/system-untag
Browse files Browse the repository at this point in the history
system test: untag all test
  • Loading branch information
openshift-merge-robot authored Oct 2, 2020
2 parents 54a9ecc + 7951a7f commit defd427
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions test/system/020-tag.bats
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,23 @@ function _tag_and_check() {
is "$output" "Error: \"registry.com/foo:bar\": no such tag"
}

@test "podman untag all" {
# First get the image ID
run_podman inspect --format '{{.ID}}' $IMAGE
iid=$output

# Add a couple of tags
run_podman tag $IMAGE registry.com/1:latest registry.com/2:latest registry.com/3:latest

# Untag with arguments to for all tags to be removed
run_podman untag $iid

# Now make sure all tags are removed
run_podman image inspect $iid --format "{{.RepoTags}}"
is "$output" "\[\]" "untag by ID leaves empty set of tags"

# Restore image
run_podman tag $iid $IMAGE
}

# vim: filetype=sh

0 comments on commit defd427

Please sign in to comment.