summaryrefslogtreecommitdiff
path: root/libpod/image/parts_test.go
diff options
context:
space:
mode:
authorMiloslav Trmač <mitr@redhat.com>2019-01-09 19:00:59 +0100
committerMiloslav Trmač <mitr@redhat.com>2019-01-14 04:07:23 +0100
commite9721b757ae5da4dad4f68c5eb721f348cfe935a (patch)
treef5667cb02e122cb2926c2705ed0278cdc54c9433 /libpod/image/parts_test.go
parent99d2259f8a71dbe5a0d9e78757b51551ce0eb8b1 (diff)
downloadpodman-e9721b757ae5da4dad4f68c5eb721f348cfe935a.tar.gz
podman-e9721b757ae5da4dad4f68c5eb721f348cfe935a.tar.bz2
podman-e9721b757ae5da4dad4f68c5eb721f348cfe935a.zip
Remove imageParts.transport
It is only ever set to DefaulTransport, and all of the code is docker/reference-specific anyway, so there's no point in making this a variable. Should not change behavior. Signed-off-by: Miloslav Trmač <mitr@redhat.com>
Diffstat (limited to 'libpod/image/parts_test.go')
-rw-r--r--libpod/image/parts_test.go27
1 files changed, 13 insertions, 14 deletions
diff --git a/libpod/image/parts_test.go b/libpod/image/parts_test.go
index 3ff175f0e..733e8e855 100644
--- a/libpod/image/parts_test.go
+++ b/libpod/image/parts_test.go
@@ -10,50 +10,49 @@ func TestDecompose(t *testing.T) {
const digestSuffix = "@sha256:0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef"
for _, c := range []struct {
- input string
- transport, registry, name, tag string
- isTagged, hasRegistry bool
- assembled string
+ input string
+ registry, name, tag string
+ isTagged, hasRegistry bool
+ assembled string
}{
- {"#", "", "", "", "", false, false, ""}, // Entirely invalid input
+ {"#", "", "", "", false, false, ""}, // Entirely invalid input
{ // Fully qualified docker.io, name-only input
- "docker.io/library/busybox", "docker://", "docker.io", "library/busybox", "latest", false, true,
+ "docker.io/library/busybox", "docker.io", "library/busybox", "latest", false, true,
"docker.io/library/busybox:latest",
},
{ // Fully qualified example.com, name-only input
- "example.com/ns/busybox", "docker://", "example.com", "ns/busybox", "latest", false, true,
+ "example.com/ns/busybox", "example.com", "ns/busybox", "latest", false, true,
"example.com/ns/busybox:latest",
},
{ // Unqualified single-name input
- "busybox", "docker://", "", "busybox", "latest", false, false,
+ "busybox", "", "busybox", "latest", false, false,
"busybox:latest",
},
{ // Unqualified namespaced input
- "ns/busybox", "docker://", "", "ns/busybox", "latest", false, false,
+ "ns/busybox", "", "ns/busybox", "latest", false, false,
"ns/busybox:latest",
},
{ // name:tag
- "example.com/ns/busybox:notlatest", "docker://", "example.com", "ns/busybox", "notlatest", true, true,
+ "example.com/ns/busybox:notlatest", "example.com", "ns/busybox", "notlatest", true, true,
"example.com/ns/busybox:notlatest",
},
{ // name@digest
// FIXME? .tag == "none"
- "example.com/ns/busybox" + digestSuffix, "docker://", "example.com", "ns/busybox", "none", false, true,
+ "example.com/ns/busybox" + digestSuffix, "example.com", "ns/busybox", "none", false, true,
// FIXME: this drops the digest and replaces it with an incorrect tag.
"example.com/ns/busybox:none",
},
{ // name:tag@digest
- "example.com/ns/busybox:notlatest" + digestSuffix, "docker://", "example.com", "ns/busybox", "notlatest", true, true,
+ "example.com/ns/busybox:notlatest" + digestSuffix, "example.com", "ns/busybox", "notlatest", true, true,
// FIXME: This drops the digest
"example.com/ns/busybox:notlatest",
},
} {
parts, err := decompose(c.input)
- if c.transport == "" {
+ if c.assembled == "" {
assert.Error(t, err, c.input)
} else {
assert.NoError(t, err, c.input)
- assert.Equal(t, c.transport, parts.transport, c.input)
assert.Equal(t, c.registry, parts.registry, c.input)
assert.Equal(t, c.name, parts.name, c.input)
assert.Equal(t, c.tag, parts.tag, c.input)