diff options
author | Miloslav Trmač <mitr@redhat.com> | 2019-01-09 21:35:04 +0100 |
---|---|---|
committer | Miloslav Trmač <mitr@redhat.com> | 2019-01-14 04:07:23 +0100 |
commit | e060a19c8768c9dd65d1b8dcbd6da7ec9faa1163 (patch) | |
tree | 0f4750e81798bf4da23640b2b492384e1e190194 /libpod/image/image_test.go | |
parent | 1c19d19c6ef9627413e34b30a643bef9b2970acb (diff) | |
download | podman-e060a19c8768c9dd65d1b8dcbd6da7ec9faa1163.tar.gz podman-e060a19c8768c9dd65d1b8dcbd6da7ec9faa1163.tar.bz2 podman-e060a19c8768c9dd65d1b8dcbd6da7ec9faa1163.zip |
Use imageParts.normalizedReference in normalizeTag
This is another step to using reference values instead of strings here.
CHANGES BEHAVIOR: docker.io/busybox is now normalized to docker.io/library/busybox.
Signed-off-by: Miloslav Trmač <mitr@redhat.com>
Diffstat (limited to 'libpod/image/image_test.go')
-rw-r--r-- | libpod/image/image_test.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libpod/image/image_test.go b/libpod/image/image_test.go index 2a68fd273..a85cd5386 100644 --- a/libpod/image/image_test.go +++ b/libpod/image/image_test.go @@ -268,6 +268,7 @@ func TestNormalizeTag(t *testing.T) { {"example.com/busybox:notlatest" + digestSuffix, "example.com/busybox:notlatest" + digestSuffix}, // Qualified name:tag@digest {"busybox:latest", "localhost/busybox:latest"}, // Unqualified name-only {"ns/busybox:latest", "localhost/ns/busybox:latest"}, // Unqualified with a dot-less namespace + {"docker.io/busybox:latest", "docker.io/library/busybox:latest"}, // docker.io without /library/ } { res, err := normalizeTag(c.input) if c.expected == "" { |