update
This commit is contained in:
31
internal/hubmodule/docker/hooks_test.go
Normal file
31
internal/hubmodule/docker/hooks_test.go
Normal file
@@ -0,0 +1,31 @@
|
||||
package docker
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/any-hub/any-hub/internal/proxy/hooks"
|
||||
)
|
||||
|
||||
func TestNormalizePathAddsLibraryForDockerHub(t *testing.T) {
|
||||
ctx := &hooks.RequestContext{UpstreamHost: "registry-1.docker.io"}
|
||||
path, _ := normalizePath(ctx, "/v2/nginx/manifests/latest", nil)
|
||||
if path != "/v2/library/nginx/manifests/latest" {
|
||||
t.Fatalf("expected library namespace, got %s", path)
|
||||
}
|
||||
|
||||
path, _ = normalizePath(ctx, "/v2/library/nginx/manifests/latest", nil)
|
||||
if path != "/v2/library/nginx/manifests/latest" {
|
||||
t.Fatalf("unexpected rewrite for existing namespace")
|
||||
}
|
||||
}
|
||||
|
||||
func TestSplitDockerRepoPath(t *testing.T) {
|
||||
repo, rest, ok := splitDockerRepoPath("/v2/library/nginx/manifests/latest")
|
||||
if !ok || repo != "library/nginx" || rest != "/manifests/latest" {
|
||||
t.Fatalf("unexpected split result repo=%s rest=%s ok=%v", repo, rest, ok)
|
||||
}
|
||||
|
||||
if _, _, ok := splitDockerRepoPath("/v2/_catalog"); ok {
|
||||
t.Fatalf("expected catalog path to be ignored")
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user