2018-02-05 16:05:59 -05:00
package registry // import "github.com/docker/docker/registry"
2014-10-06 21:54:52 -04:00
import (
2017-05-09 17:00:31 -04:00
"reflect"
"sort"
2017-01-08 22:30:58 -05:00
"strings"
2014-10-06 21:54:52 -04:00
"testing"
2017-09-01 10:35:04 -04:00
2022-02-26 07:45:12 -05:00
"github.com/docker/docker/errdefs"
2020-02-07 08:39:24 -05:00
"gotest.tools/v3/assert"
is "gotest.tools/v3/assert/cmp"
2014-10-06 21:54:52 -04:00
)
2017-05-09 17:00:31 -04:00
func TestLoadAllowNondistributableArtifacts ( t * testing . T ) {
testCases := [ ] struct {
registries [ ] string
cidrStrs [ ] string
hostnames [ ] string
err string
} {
{
registries : [ ] string { "1.2.3.0/24" } ,
cidrStrs : [ ] string { "1.2.3.0/24" } ,
} ,
{
registries : [ ] string { "2001:db8::/120" } ,
cidrStrs : [ ] string { "2001:db8::/120" } ,
} ,
{
registries : [ ] string { "127.0.0.1" } ,
hostnames : [ ] string { "127.0.0.1" } ,
} ,
{
registries : [ ] string { "127.0.0.1:8080" } ,
hostnames : [ ] string { "127.0.0.1:8080" } ,
} ,
{
registries : [ ] string { "2001:db8::1" } ,
hostnames : [ ] string { "2001:db8::1" } ,
} ,
{
registries : [ ] string { "[2001:db8::1]:80" } ,
hostnames : [ ] string { "[2001:db8::1]:80" } ,
} ,
{
registries : [ ] string { "[2001:db8::1]:80" } ,
hostnames : [ ] string { "[2001:db8::1]:80" } ,
} ,
{
registries : [ ] string { "1.2.3.0/24" , "2001:db8::/120" , "127.0.0.1" , "127.0.0.1:8080" } ,
cidrStrs : [ ] string { "1.2.3.0/24" , "2001:db8::/120" } ,
hostnames : [ ] string { "127.0.0.1" , "127.0.0.1:8080" } ,
} ,
{
2021-04-02 08:06:27 -04:00
registries : [ ] string { "http://myregistry.example.com" } ,
err : "allow-nondistributable-artifacts registry http://myregistry.example.com should not contain '://'" ,
2017-05-09 17:00:31 -04:00
} ,
{
2021-04-02 08:06:27 -04:00
registries : [ ] string { "https://myregistry.example.com" } ,
err : "allow-nondistributable-artifacts registry https://myregistry.example.com should not contain '://'" ,
2017-05-09 17:00:31 -04:00
} ,
{
2021-04-02 08:06:27 -04:00
registries : [ ] string { "HTTP://myregistry.example.com" } ,
err : "allow-nondistributable-artifacts registry HTTP://myregistry.example.com should not contain '://'" ,
2017-05-09 17:00:31 -04:00
} ,
{
2021-04-02 08:06:27 -04:00
registries : [ ] string { "svn://myregistry.example.com" } ,
err : "allow-nondistributable-artifacts registry svn://myregistry.example.com should not contain '://'" ,
2017-05-09 17:00:31 -04:00
} ,
{
registries : [ ] string { "-invalid-registry" } ,
err : "Cannot begin or end with a hyphen" ,
} ,
{
registries : [ ] string { ` mytest-.com ` } ,
err : ` allow-nondistributable-artifacts registry mytest-.com is not valid: invalid host "mytest-.com" ` ,
} ,
{
registries : [ ] string { ` 1200:0000:AB00:1234:0000:2552:7777:1313:8080 ` } ,
err : ` allow-nondistributable-artifacts registry 1200:0000:AB00:1234:0000:2552:7777:1313:8080 is not valid: invalid host "1200:0000:AB00:1234:0000:2552:7777:1313:8080" ` ,
} ,
{
2021-04-02 08:06:27 -04:00
registries : [ ] string { ` myregistry.example.com:500000 ` } ,
err : ` allow-nondistributable-artifacts registry myregistry.example.com:500000 is not valid: invalid port "500000" ` ,
2017-05-09 17:00:31 -04:00
} ,
{
2021-04-02 08:06:27 -04:00
registries : [ ] string { ` "myregistry.example.com" ` } ,
err : ` allow-nondistributable-artifacts registry "myregistry.example.com" is not valid: invalid host "\"myregistry.example.com\"" ` ,
2017-05-09 17:00:31 -04:00
} ,
{
2021-04-02 08:06:27 -04:00
registries : [ ] string { ` "myregistry.example.com:5000" ` } ,
err : ` allow-nondistributable-artifacts registry "myregistry.example.com:5000" is not valid: invalid host "\"myregistry.example.com" ` ,
2017-05-09 17:00:31 -04:00
} ,
}
for _ , testCase := range testCases {
2017-09-01 10:35:04 -04:00
config := emptyServiceConfig
2022-02-26 06:58:41 -05:00
err := config . loadAllowNondistributableArtifacts ( testCase . registries )
2017-05-09 17:00:31 -04:00
if testCase . err == "" {
if err != nil {
t . Fatalf ( "expect no error, got '%s'" , err )
}
2018-05-19 07:38:54 -04:00
var cidrStrs [ ] string
2017-05-09 17:00:31 -04:00
for _ , c := range config . AllowNondistributableArtifactsCIDRs {
cidrStrs = append ( cidrStrs , c . String ( ) )
}
sort . Strings ( testCase . cidrStrs )
sort . Strings ( cidrStrs )
if ( len ( testCase . cidrStrs ) > 0 || len ( cidrStrs ) > 0 ) && ! reflect . DeepEqual ( testCase . cidrStrs , cidrStrs ) {
t . Fatalf ( "expect AllowNondistributableArtifactsCIDRs to be '%+v', got '%+v'" , testCase . cidrStrs , cidrStrs )
}
sort . Strings ( testCase . hostnames )
sort . Strings ( config . AllowNondistributableArtifactsHostnames )
if ( len ( testCase . hostnames ) > 0 || len ( config . AllowNondistributableArtifactsHostnames ) > 0 ) && ! reflect . DeepEqual ( testCase . hostnames , config . AllowNondistributableArtifactsHostnames ) {
t . Fatalf ( "expect AllowNondistributableArtifactsHostnames to be '%+v', got '%+v'" , testCase . hostnames , config . AllowNondistributableArtifactsHostnames )
}
} else {
if err == nil {
t . Fatalf ( "expect error '%s', got no error" , testCase . err )
}
if ! strings . Contains ( err . Error ( ) , testCase . err ) {
t . Fatalf ( "expect error '%s', got '%s'" , testCase . err , err )
}
}
}
}
2014-10-06 21:54:52 -04:00
func TestValidateMirror ( t * testing . T ) {
valid := [ ] string {
2021-04-02 08:06:27 -04:00
"http://mirror-1.example.com" ,
"http://mirror-1.example.com/" ,
"https://mirror-1.example.com" ,
"https://mirror-1.example.com/" ,
2014-10-06 21:54:52 -04:00
"http://localhost" ,
"https://localhost" ,
"http://localhost:5000" ,
"https://localhost:5000" ,
"http://127.0.0.1" ,
"https://127.0.0.1" ,
"http://127.0.0.1:5000" ,
"https://127.0.0.1:5000" ,
}
invalid := [ ] string {
"!invalid!://%as%" ,
2021-04-02 08:06:27 -04:00
"ftp://mirror-1.example.com" ,
"http://mirror-1.example.com/?q=foo" ,
"http://mirror-1.example.com/v1/" ,
"http://mirror-1.example.com/v1/?q=foo" ,
"http://mirror-1.example.com/v1/?q=foo#frag" ,
"http://mirror-1.example.com?q=foo" ,
"https://mirror-1.example.com#frag" ,
"https://mirror-1.example.com/#frag" ,
"http://foo:bar@mirror-1.example.com/" ,
"https://mirror-1.example.com/v1/" ,
"https://mirror-1.example.com/v1/#" ,
"https://mirror-1.example.com?q" ,
2014-10-06 21:54:52 -04:00
}
for _ , address := range valid {
if ret , err := ValidateMirror ( address ) ; err != nil || ret == "" {
t . Errorf ( "ValidateMirror(`" + address + "`) got %s %s" , ret , err )
}
}
for _ , address := range invalid {
if ret , err := ValidateMirror ( address ) ; err == nil || ret != "" {
t . Errorf ( "ValidateMirror(`" + address + "`) got %s %s" , ret , err )
}
}
}
2017-01-08 22:30:58 -05:00
func TestLoadInsecureRegistries ( t * testing . T ) {
testCases := [ ] struct {
registries [ ] string
index string
err string
} {
2017-02-05 02:58:12 -05:00
{
registries : [ ] string { "127.0.0.1" } ,
index : "127.0.0.1" ,
} ,
{
registries : [ ] string { "127.0.0.1:8080" } ,
index : "127.0.0.1:8080" ,
} ,
{
registries : [ ] string { "2001:db8::1" } ,
index : "2001:db8::1" ,
} ,
{
registries : [ ] string { "[2001:db8::1]:80" } ,
index : "[2001:db8::1]:80" ,
} ,
2017-01-08 22:30:58 -05:00
{
2021-04-02 08:06:27 -04:00
registries : [ ] string { "http://myregistry.example.com" } ,
index : "myregistry.example.com" ,
2017-01-08 22:30:58 -05:00
} ,
{
2021-04-02 08:06:27 -04:00
registries : [ ] string { "https://myregistry.example.com" } ,
index : "myregistry.example.com" ,
2017-01-08 22:30:58 -05:00
} ,
{
2021-04-02 08:06:27 -04:00
registries : [ ] string { "HTTP://myregistry.example.com" } ,
index : "myregistry.example.com" ,
2017-01-08 22:30:58 -05:00
} ,
{
2021-04-02 08:06:27 -04:00
registries : [ ] string { "svn://myregistry.example.com" } ,
err : "insecure registry svn://myregistry.example.com should not contain '://'" ,
2017-01-08 22:30:58 -05:00
} ,
{
registries : [ ] string { "-invalid-registry" } ,
err : "Cannot begin or end with a hyphen" ,
} ,
2017-02-05 02:58:12 -05:00
{
registries : [ ] string { ` mytest-.com ` } ,
err : ` insecure registry mytest-.com is not valid: invalid host "mytest-.com" ` ,
} ,
{
registries : [ ] string { ` 1200:0000:AB00:1234:0000:2552:7777:1313:8080 ` } ,
err : ` insecure registry 1200:0000:AB00:1234:0000:2552:7777:1313:8080 is not valid: invalid host "1200:0000:AB00:1234:0000:2552:7777:1313:8080" ` ,
} ,
{
2021-04-02 08:06:27 -04:00
registries : [ ] string { ` myregistry.example.com:500000 ` } ,
err : ` insecure registry myregistry.example.com:500000 is not valid: invalid port "500000" ` ,
2017-02-05 02:58:12 -05:00
} ,
{
2021-04-02 08:06:27 -04:00
registries : [ ] string { ` "myregistry.example.com" ` } ,
err : ` insecure registry "myregistry.example.com" is not valid: invalid host "\"myregistry.example.com\"" ` ,
2017-02-05 02:58:12 -05:00
} ,
{
2021-04-02 08:06:27 -04:00
registries : [ ] string { ` "myregistry.example.com:5000" ` } ,
err : ` insecure registry "myregistry.example.com:5000" is not valid: invalid host "\"myregistry.example.com" ` ,
2017-02-05 02:58:12 -05:00
} ,
2017-01-08 22:30:58 -05:00
}
for _ , testCase := range testCases {
2017-09-01 10:35:04 -04:00
config := emptyServiceConfig
2022-02-26 06:58:41 -05:00
err := config . loadInsecureRegistries ( testCase . registries )
2017-01-08 22:30:58 -05:00
if testCase . err == "" {
if err != nil {
t . Fatalf ( "expect no error, got '%s'" , err )
}
match := false
for index := range config . IndexConfigs {
if index == testCase . index {
match = true
}
}
if ! match {
t . Fatalf ( "expect index configs to contain '%s', got %+v" , testCase . index , config . IndexConfigs )
}
} else {
if err == nil {
t . Fatalf ( "expect error '%s', got no error" , testCase . err )
}
2022-02-26 07:45:12 -05:00
assert . ErrorContains ( t , err , testCase . err )
assert . Check ( t , errdefs . IsInvalidParameter ( err ) )
2017-01-08 22:30:58 -05:00
}
}
}
2017-09-01 10:35:04 -04:00
func TestNewServiceConfig ( t * testing . T ) {
testCases := [ ] struct {
opts ServiceOptions
errStr string
} {
{
ServiceOptions { } ,
"" ,
} ,
{
ServiceOptions {
Mirrors : [ ] string { "example.com:5000" } ,
} ,
` invalid mirror: unsupported scheme "example.com" in "example.com:5000" ` ,
} ,
{
ServiceOptions {
Mirrors : [ ] string { "http://example.com:5000" } ,
} ,
"" ,
} ,
{
ServiceOptions {
InsecureRegistries : [ ] string { "[fe80::]/64" } ,
} ,
` insecure registry [fe80::]/64 is not valid: invalid host "[fe80::]/64" ` ,
} ,
{
ServiceOptions {
InsecureRegistries : [ ] string { "102.10.8.1/24" } ,
} ,
"" ,
} ,
{
ServiceOptions {
AllowNondistributableArtifacts : [ ] string { "[fe80::]/64" } ,
} ,
` allow-nondistributable-artifacts registry [fe80::]/64 is not valid: invalid host "[fe80::]/64" ` ,
} ,
{
ServiceOptions {
AllowNondistributableArtifacts : [ ] string { "102.10.8.1/24" } ,
} ,
"" ,
} ,
}
for _ , testCase := range testCases {
_ , err := newServiceConfig ( testCase . opts )
if testCase . errStr != "" {
2018-03-13 15:28:34 -04:00
assert . Check ( t , is . Error ( err , testCase . errStr ) )
2022-02-26 07:45:12 -05:00
assert . Check ( t , errdefs . IsInvalidParameter ( err ) )
2017-09-01 10:35:04 -04:00
} else {
2018-03-13 15:28:34 -04:00
assert . Check ( t , err )
2017-09-01 10:35:04 -04:00
}
}
}
2017-10-11 23:05:38 -04:00
func TestValidateIndexName ( t * testing . T ) {
valid := [ ] struct {
index string
expect string
} {
{
index : "index.docker.io" ,
expect : "docker.io" ,
} ,
{
index : "example.com" ,
expect : "example.com" ,
} ,
{
index : "127.0.0.1:8080" ,
expect : "127.0.0.1:8080" ,
} ,
{
index : "mytest-1.com" ,
expect : "mytest-1.com" ,
} ,
{
2021-04-02 08:06:27 -04:00
index : "mirror-1.example.com/v1/?q=foo" ,
expect : "mirror-1.example.com/v1/?q=foo" ,
2017-10-11 23:05:38 -04:00
} ,
}
for _ , testCase := range valid {
result , err := ValidateIndexName ( testCase . index )
2018-03-13 15:28:34 -04:00
if assert . Check ( t , err ) {
assert . Check ( t , is . Equal ( testCase . expect , result ) )
2017-10-11 23:05:38 -04:00
}
}
}
func TestValidateIndexNameWithError ( t * testing . T ) {
invalid := [ ] struct {
index string
err string
} {
{
index : "docker.io-" ,
err : "invalid index name (docker.io-). Cannot begin or end with a hyphen" ,
} ,
{
index : "-example.com" ,
err : "invalid index name (-example.com). Cannot begin or end with a hyphen" ,
} ,
{
2021-04-02 08:06:27 -04:00
index : "mirror-1.example.com/v1/?q=foo-" ,
err : "invalid index name (mirror-1.example.com/v1/?q=foo-). Cannot begin or end with a hyphen" ,
2017-10-11 23:05:38 -04:00
} ,
}
for _ , testCase := range invalid {
_ , err := ValidateIndexName ( testCase . index )
2018-03-13 15:28:34 -04:00
assert . Check ( t , is . Error ( err , testCase . err ) )
2022-02-26 07:45:12 -05:00
assert . Check ( t , errdefs . IsInvalidParameter ( err ) )
2017-10-11 23:05:38 -04:00
}
}