|
@@ -5,7 +5,6 @@ import (
|
|
|
"fmt"
|
|
|
"testing"
|
|
|
|
|
|
- "github.com/docker/docker/testutil"
|
|
|
"gotest.tools/v3/assert"
|
|
|
is "gotest.tools/v3/assert/cmp"
|
|
|
)
|
|
@@ -27,43 +26,11 @@ func TestTagUnprefixedRepoByNameOrName(t *testing.T) {
|
|
|
assert.NilError(t, err)
|
|
|
}
|
|
|
|
|
|
-// ensure we don't allow the use of invalid repository names or tags; these tag operations should fail
|
|
|
-// TODO (yongtang): Migrate to unit tests
|
|
|
-func TestTagInvalidReference(t *testing.T) {
|
|
|
+func TestTagUsingDigestAlgorithmAsName(t *testing.T) {
|
|
|
defer setupTest(t)()
|
|
|
client := testEnv.APIClient()
|
|
|
ctx := context.Background()
|
|
|
-
|
|
|
- invalidRepos := []string{"fo$z$", "Foo@3cc", "Foo$3", "Foo*3", "Fo^3", "Foo!3", "F)xcz(", "fo%asd", "FOO/bar"}
|
|
|
-
|
|
|
- for _, repo := range invalidRepos {
|
|
|
- err := client.ImageTag(ctx, "busybox", repo)
|
|
|
- assert.Check(t, is.ErrorContains(err, "not a valid repository/tag"))
|
|
|
- }
|
|
|
-
|
|
|
- longTag := testutil.GenerateRandomAlphaOnlyString(121)
|
|
|
-
|
|
|
- invalidTags := []string{"repo:fo$z$", "repo:Foo@3cc", "repo:Foo$3", "repo:Foo*3", "repo:Fo^3", "repo:Foo!3", "repo:%goodbye", "repo:#hashtagit", "repo:F)xcz(", "repo:-foo", "repo:..", longTag}
|
|
|
-
|
|
|
- for _, repotag := range invalidTags {
|
|
|
- err := client.ImageTag(ctx, "busybox", repotag)
|
|
|
- assert.Check(t, is.ErrorContains(err, "not a valid repository/tag"))
|
|
|
- }
|
|
|
-
|
|
|
- // test repository name begin with '-'
|
|
|
- err := client.ImageTag(ctx, "busybox:latest", "-busybox:test")
|
|
|
- assert.Check(t, is.ErrorContains(err, "Error parsing reference"))
|
|
|
-
|
|
|
- // test namespace name begin with '-'
|
|
|
- err = client.ImageTag(ctx, "busybox:latest", "-test/busybox:test")
|
|
|
- assert.Check(t, is.ErrorContains(err, "Error parsing reference"))
|
|
|
-
|
|
|
- // test index name begin with '-'
|
|
|
- err = client.ImageTag(ctx, "busybox:latest", "-index:5000/busybox:test")
|
|
|
- assert.Check(t, is.ErrorContains(err, "Error parsing reference"))
|
|
|
-
|
|
|
- // test setting tag fails
|
|
|
- err = client.ImageTag(ctx, "busybox:latest", "sha256:sometag")
|
|
|
+ err := client.ImageTag(ctx, "busybox:latest", "sha256:sometag")
|
|
|
assert.Check(t, is.ErrorContains(err, "refusing to create an ambiguous tag using digest algorithm as name"))
|
|
|
}
|
|
|
|
|
@@ -76,8 +43,12 @@ func TestTagValidPrefixedRepo(t *testing.T) {
|
|
|
validRepos := []string{"fooo/bar", "fooaa/test", "foooo:t", "HOSTNAME.DOMAIN.COM:443/foo/bar"}
|
|
|
|
|
|
for _, repo := range validRepos {
|
|
|
- err := client.ImageTag(ctx, "busybox", repo)
|
|
|
- assert.NilError(t, err)
|
|
|
+ repo := repo
|
|
|
+ t.Run(repo, func(t *testing.T) {
|
|
|
+ t.Parallel()
|
|
|
+ err := client.ImageTag(ctx, "busybox", repo)
|
|
|
+ assert.NilError(t, err)
|
|
|
+ })
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -107,18 +78,20 @@ func TestTagOfficialNames(t *testing.T) {
|
|
|
}
|
|
|
|
|
|
for _, name := range names {
|
|
|
- err := client.ImageTag(ctx, "busybox", name+":latest")
|
|
|
- assert.NilError(t, err)
|
|
|
-
|
|
|
- // ensure we don't have multiple tag names.
|
|
|
- insp, _, err := client.ImageInspectWithRaw(ctx, "busybox")
|
|
|
- assert.NilError(t, err)
|
|
|
- assert.Assert(t, !is.Contains(insp.RepoTags, name)().Success())
|
|
|
- }
|
|
|
-
|
|
|
- for _, name := range names {
|
|
|
- err := client.ImageTag(ctx, name+":latest", "fooo/bar:latest")
|
|
|
- assert.NilError(t, err)
|
|
|
+ name := name
|
|
|
+ t.Run("tag from busybox to "+name, func(t *testing.T) {
|
|
|
+ err := client.ImageTag(ctx, "busybox", name+":latest")
|
|
|
+ assert.NilError(t, err)
|
|
|
+
|
|
|
+ // ensure we don't have multiple tag names.
|
|
|
+ insp, _, err := client.ImageInspectWithRaw(ctx, "busybox")
|
|
|
+ assert.NilError(t, err)
|
|
|
+ // TODO(vvoland): Not sure what's actually being tested here. Is is still doing anything useful?
|
|
|
+ assert.Assert(t, !is.Contains(insp.RepoTags, name)().Success())
|
|
|
+
|
|
|
+ err = client.ImageTag(ctx, name+":latest", "test-tag-official-names/foobar:latest")
|
|
|
+ assert.NilError(t, err)
|
|
|
+ })
|
|
|
}
|
|
|
}
|
|
|
|