Make ParseAuthHost public
Signed-off-by: guillaume <guillaume.derouville@gmail.com>
This commit is contained in:
parent
f6a71b95cf
commit
1a98c572b8
@ -51,7 +51,7 @@ func (a *RegistryAuthProvider) Credentials(ctx context.Context, req *bkauth.Cred
|
|||||||
defer a.m.RUnlock()
|
defer a.m.RUnlock()
|
||||||
|
|
||||||
for authHost, auth := range a.credentials {
|
for authHost, auth := range a.credentials {
|
||||||
u, err := parseAuthHost(authHost)
|
u, err := ParseAuthHost(authHost)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
@ -65,7 +65,7 @@ func (a *RegistryAuthProvider) Credentials(ctx context.Context, req *bkauth.Cred
|
|||||||
|
|
||||||
// Parsing function based on splitReposSearchTerm
|
// Parsing function based on splitReposSearchTerm
|
||||||
// "github.com/docker/docker/registry"
|
// "github.com/docker/docker/registry"
|
||||||
func parseAuthHost(host string) (string, error) {
|
func ParseAuthHost(host string) (string, error) {
|
||||||
host = strings.TrimPrefix(host, "http://")
|
host = strings.TrimPrefix(host, "http://")
|
||||||
host = strings.TrimPrefix(host, "https://")
|
host = strings.TrimPrefix(host, "https://")
|
||||||
host = strings.TrimSuffix(host, "/")
|
host = strings.TrimSuffix(host, "/")
|
||||||
|
@ -257,7 +257,7 @@ func TestParseAuthHost(t *testing.T) {
|
|||||||
|
|
||||||
successRefs := []output{}
|
successRefs := []output{}
|
||||||
for _, scase := range scases {
|
for _, scase := range scases {
|
||||||
named, err := parseAuthHost(scase.Host)
|
named, err := ParseAuthHost(scase.Host)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("Invalid normalized reference for [%q]. Got %q", scase, err)
|
t.Fatalf("Invalid normalized reference for [%q]. Got %q", scase, err)
|
||||||
}
|
}
|
||||||
@ -273,7 +273,7 @@ func TestParseAuthHost(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
for _, fcase := range fcases {
|
for _, fcase := range fcases {
|
||||||
named, err := parseAuthHost(fcase.Host)
|
named, err := ParseAuthHost(fcase.Host)
|
||||||
if err == nil {
|
if err == nil {
|
||||||
t.Fatalf("Invalid normalized reference for [%q]. Expected failure for %q", fcase, named)
|
t.Fatalf("Invalid normalized reference for [%q]. Expected failure for %q", fcase, named)
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user