123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535 |
- package reference
- import (
- "encoding/json"
- "strconv"
- "strings"
- "testing"
- "github.com/docker/distribution/digest"
- )
- func TestReferenceParse(t *testing.T) {
- // referenceTestcases is a unified set of testcases for
- // testing the parsing of references
- referenceTestcases := []struct {
- // input is the repository name or name component testcase
- input string
- // err is the error expected from Parse, or nil
- err error
- // repository is the string representation for the reference
- repository string
- // hostname is the hostname expected in the reference
- hostname string
- // tag is the tag for the reference
- tag string
- // digest is the digest for the reference (enforces digest reference)
- digest string
- }{
- {
- input: "test_com",
- repository: "test_com",
- },
- {
- input: "test.com:tag",
- repository: "test.com",
- tag: "tag",
- },
- {
- input: "test.com:5000",
- repository: "test.com",
- tag: "5000",
- },
- {
- input: "test.com/repo:tag",
- hostname: "test.com",
- repository: "test.com/repo",
- tag: "tag",
- },
- {
- input: "test:5000/repo",
- hostname: "test:5000",
- repository: "test:5000/repo",
- },
- {
- input: "test:5000/repo:tag",
- hostname: "test:5000",
- repository: "test:5000/repo",
- tag: "tag",
- },
- {
- input: "test:5000/repo@sha256:ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff",
- hostname: "test:5000",
- repository: "test:5000/repo",
- digest: "sha256:ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff",
- },
- {
- input: "test:5000/repo:tag@sha256:ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff",
- hostname: "test:5000",
- repository: "test:5000/repo",
- tag: "tag",
- digest: "sha256:ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff",
- },
- {
- input: "test:5000/repo",
- hostname: "test:5000",
- repository: "test:5000/repo",
- },
- {
- input: "",
- err: ErrNameEmpty,
- },
- {
- input: ":justtag",
- err: ErrReferenceInvalidFormat,
- },
- {
- input: "@sha256:ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff",
- err: ErrReferenceInvalidFormat,
- },
- {
- input: "repo@sha256:ffffffffffffffffffffffffffffffffff",
- err: digest.ErrDigestInvalidLength,
- },
- {
- input: "validname@invaliddigest:ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff",
- err: digest.ErrDigestUnsupported,
- },
- {
- input: strings.Repeat("a/", 128) + "a:tag",
- err: ErrNameTooLong,
- },
- {
- input: strings.Repeat("a/", 127) + "a:tag-puts-this-over-max",
- hostname: "a",
- repository: strings.Repeat("a/", 127) + "a",
- tag: "tag-puts-this-over-max",
- },
- {
- input: "aa/asdf$$^/aa",
- err: ErrReferenceInvalidFormat,
- },
- {
- input: "sub-dom1.foo.com/bar/baz/quux",
- hostname: "sub-dom1.foo.com",
- repository: "sub-dom1.foo.com/bar/baz/quux",
- },
- {
- input: "sub-dom1.foo.com/bar/baz/quux:some-long-tag",
- hostname: "sub-dom1.foo.com",
- repository: "sub-dom1.foo.com/bar/baz/quux",
- tag: "some-long-tag",
- },
- {
- input: "b.gcr.io/test.example.com/my-app:test.example.com",
- hostname: "b.gcr.io",
- repository: "b.gcr.io/test.example.com/my-app",
- tag: "test.example.com",
- },
- {
- input: "xn--n3h.com/myimage:xn--n3h.com", // ☃.com in punycode
- hostname: "xn--n3h.com",
- repository: "xn--n3h.com/myimage",
- tag: "xn--n3h.com",
- },
- {
- input: "xn--7o8h.com/myimage:xn--7o8h.com@sha512:ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", // 🐳.com in punycode
- hostname: "xn--7o8h.com",
- repository: "xn--7o8h.com/myimage",
- tag: "xn--7o8h.com",
- digest: "sha512:ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff",
- },
- {
- input: "foo_bar.com:8080",
- repository: "foo_bar.com",
- tag: "8080",
- },
- {
- input: "foo/foo_bar.com:8080",
- hostname: "foo",
- repository: "foo/foo_bar.com",
- tag: "8080",
- },
- }
- for _, testcase := range referenceTestcases {
- failf := func(format string, v ...interface{}) {
- t.Logf(strconv.Quote(testcase.input)+": "+format, v...)
- t.Fail()
- }
- repo, err := Parse(testcase.input)
- if testcase.err != nil {
- if err == nil {
- failf("missing expected error: %v", testcase.err)
- } else if testcase.err != err {
- failf("mismatched error: got %v, expected %v", err, testcase.err)
- }
- continue
- } else if err != nil {
- failf("unexpected parse error: %v", err)
- continue
- }
- if repo.String() != testcase.input {
- failf("mismatched repo: got %q, expected %q", repo.String(), testcase.input)
- }
- if named, ok := repo.(Named); ok {
- if named.Name() != testcase.repository {
- failf("unexpected repository: got %q, expected %q", named.Name(), testcase.repository)
- }
- hostname, _ := SplitHostname(named)
- if hostname != testcase.hostname {
- failf("unexpected hostname: got %q, expected %q", hostname, testcase.hostname)
- }
- } else if testcase.repository != "" || testcase.hostname != "" {
- failf("expected named type, got %T", repo)
- }
- tagged, ok := repo.(Tagged)
- if testcase.tag != "" {
- if ok {
- if tagged.Tag() != testcase.tag {
- failf("unexpected tag: got %q, expected %q", tagged.Tag(), testcase.tag)
- }
- } else {
- failf("expected tagged type, got %T", repo)
- }
- } else if ok {
- failf("unexpected tagged type")
- }
- digested, ok := repo.(Digested)
- if testcase.digest != "" {
- if ok {
- if digested.Digest().String() != testcase.digest {
- failf("unexpected digest: got %q, expected %q", digested.Digest().String(), testcase.digest)
- }
- } else {
- failf("expected digested type, got %T", repo)
- }
- } else if ok {
- failf("unexpected digested type")
- }
- }
- }
- // TestWithNameFailure tests cases where WithName should fail. Cases where it
- // should succeed are covered by TestSplitHostname, below.
- func TestWithNameFailure(t *testing.T) {
- testcases := []struct {
- input string
- err error
- }{
- {
- input: "",
- err: ErrNameEmpty,
- },
- {
- input: ":justtag",
- err: ErrReferenceInvalidFormat,
- },
- {
- input: "@sha256:ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff",
- err: ErrReferenceInvalidFormat,
- },
- {
- input: "validname@invaliddigest:ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff",
- err: ErrReferenceInvalidFormat,
- },
- {
- input: strings.Repeat("a/", 128) + "a:tag",
- err: ErrNameTooLong,
- },
- {
- input: "aa/asdf$$^/aa",
- err: ErrReferenceInvalidFormat,
- },
- }
- for _, testcase := range testcases {
- failf := func(format string, v ...interface{}) {
- t.Logf(strconv.Quote(testcase.input)+": "+format, v...)
- t.Fail()
- }
- _, err := WithName(testcase.input)
- if err == nil {
- failf("no error parsing name. expected: %s", testcase.err)
- }
- }
- }
- func TestSplitHostname(t *testing.T) {
- testcases := []struct {
- input string
- hostname string
- name string
- }{
- {
- input: "test.com/foo",
- hostname: "test.com",
- name: "foo",
- },
- {
- input: "test_com/foo",
- hostname: "",
- name: "test_com/foo",
- },
- {
- input: "test:8080/foo",
- hostname: "test:8080",
- name: "foo",
- },
- {
- input: "test.com:8080/foo",
- hostname: "test.com:8080",
- name: "foo",
- },
- {
- input: "test-com:8080/foo",
- hostname: "test-com:8080",
- name: "foo",
- },
- {
- input: "xn--n3h.com:18080/foo",
- hostname: "xn--n3h.com:18080",
- name: "foo",
- },
- }
- for _, testcase := range testcases {
- failf := func(format string, v ...interface{}) {
- t.Logf(strconv.Quote(testcase.input)+": "+format, v...)
- t.Fail()
- }
- named, err := WithName(testcase.input)
- if err != nil {
- failf("error parsing name: %s", err)
- }
- hostname, name := SplitHostname(named)
- if hostname != testcase.hostname {
- failf("unexpected hostname: got %q, expected %q", hostname, testcase.hostname)
- }
- if name != testcase.name {
- failf("unexpected name: got %q, expected %q", name, testcase.name)
- }
- }
- }
- type serializationType struct {
- Description string
- Field Field
- }
- func TestSerialization(t *testing.T) {
- testcases := []struct {
- description string
- input string
- name string
- tag string
- digest string
- err error
- }{
- {
- description: "empty value",
- err: ErrNameEmpty,
- },
- {
- description: "just a name",
- input: "example.com:8000/named",
- name: "example.com:8000/named",
- },
- {
- description: "name with a tag",
- input: "example.com:8000/named:tagged",
- name: "example.com:8000/named",
- tag: "tagged",
- },
- {
- description: "name with digest",
- input: "other.com/named@sha256:1234567890098765432112345667890098765432112345667890098765432112",
- name: "other.com/named",
- digest: "sha256:1234567890098765432112345667890098765432112345667890098765432112",
- },
- }
- for _, testcase := range testcases {
- failf := func(format string, v ...interface{}) {
- t.Logf(strconv.Quote(testcase.input)+": "+format, v...)
- t.Fail()
- }
- m := map[string]string{
- "Description": testcase.description,
- "Field": testcase.input,
- }
- b, err := json.Marshal(m)
- if err != nil {
- failf("error marshalling: %v", err)
- }
- t := serializationType{}
- if err := json.Unmarshal(b, &t); err != nil {
- if testcase.err == nil {
- failf("error unmarshalling: %v", err)
- }
- if err != testcase.err {
- failf("wrong error, expected %v, got %v", testcase.err, err)
- }
- continue
- } else if testcase.err != nil {
- failf("expected error unmarshalling: %v", testcase.err)
- }
- if t.Description != testcase.description {
- failf("wrong description, expected %q, got %q", testcase.description, t.Description)
- }
- ref := t.Field.Reference()
- if named, ok := ref.(Named); ok {
- if named.Name() != testcase.name {
- failf("unexpected repository: got %q, expected %q", named.Name(), testcase.name)
- }
- } else if testcase.name != "" {
- failf("expected named type, got %T", ref)
- }
- tagged, ok := ref.(Tagged)
- if testcase.tag != "" {
- if ok {
- if tagged.Tag() != testcase.tag {
- failf("unexpected tag: got %q, expected %q", tagged.Tag(), testcase.tag)
- }
- } else {
- failf("expected tagged type, got %T", ref)
- }
- } else if ok {
- failf("unexpected tagged type")
- }
- digested, ok := ref.(Digested)
- if testcase.digest != "" {
- if ok {
- if digested.Digest().String() != testcase.digest {
- failf("unexpected digest: got %q, expected %q", digested.Digest().String(), testcase.digest)
- }
- } else {
- failf("expected digested type, got %T", ref)
- }
- } else if ok {
- failf("unexpected digested type")
- }
- t = serializationType{
- Description: testcase.description,
- Field: AsField(ref),
- }
- b2, err := json.Marshal(t)
- if err != nil {
- failf("error marshing serialization type: %v", err)
- }
- if string(b) != string(b2) {
- failf("unexpected serialized value: expected %q, got %q", string(b), string(b2))
- }
- // Ensure t.Field is not implementing "Reference" directly, getting
- // around the Reference type system
- var fieldInterface interface{} = t.Field
- if _, ok := fieldInterface.(Reference); ok {
- failf("field should not implement Reference interface")
- }
- }
- }
- func TestWithTag(t *testing.T) {
- testcases := []struct {
- name string
- tag string
- combined string
- }{
- {
- name: "test.com/foo",
- tag: "tag",
- combined: "test.com/foo:tag",
- },
- {
- name: "foo",
- tag: "tag2",
- combined: "foo:tag2",
- },
- {
- name: "test.com:8000/foo",
- tag: "tag4",
- combined: "test.com:8000/foo:tag4",
- },
- {
- name: "test.com:8000/foo",
- tag: "TAG5",
- combined: "test.com:8000/foo:TAG5",
- },
- }
- for _, testcase := range testcases {
- failf := func(format string, v ...interface{}) {
- t.Logf(strconv.Quote(testcase.name)+": "+format, v...)
- t.Fail()
- }
- named, err := WithName(testcase.name)
- if err != nil {
- failf("error parsing name: %s", err)
- }
- tagged, err := WithTag(named, testcase.tag)
- if err != nil {
- failf("WithTag failed: %s", err)
- }
- if tagged.String() != testcase.combined {
- failf("unexpected: got %q, expected %q", tagged.String(), testcase.combined)
- }
- }
- }
- func TestWithDigest(t *testing.T) {
- testcases := []struct {
- name string
- digest digest.Digest
- combined string
- }{
- {
- name: "test.com/foo",
- digest: "sha256:1234567890098765432112345667890098765",
- combined: "test.com/foo@sha256:1234567890098765432112345667890098765",
- },
- {
- name: "foo",
- digest: "sha256:1234567890098765432112345667890098765",
- combined: "foo@sha256:1234567890098765432112345667890098765",
- },
- {
- name: "test.com:8000/foo",
- digest: "sha256:1234567890098765432112345667890098765",
- combined: "test.com:8000/foo@sha256:1234567890098765432112345667890098765",
- },
- }
- for _, testcase := range testcases {
- failf := func(format string, v ...interface{}) {
- t.Logf(strconv.Quote(testcase.name)+": "+format, v...)
- t.Fail()
- }
- named, err := WithName(testcase.name)
- if err != nil {
- failf("error parsing name: %s", err)
- }
- digested, err := WithDigest(named, testcase.digest)
- if err != nil {
- failf("WithDigest failed: %s", err)
- }
- if digested.String() != testcase.combined {
- failf("unexpected: got %q, expected %q", digested.String(), testcase.combined)
- }
- }
- }
|