mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-30 06:03:45 +01:00
b158086642
fixes #15252 Give 404 for invalid digest when to get/head manifest Signed-off-by: Wang Yan <wangyan@vmware.com>
119 lines
3.4 KiB
Go
119 lines
3.4 KiB
Go
// Copyright Project Harbor Authors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package lib
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestMatchManifestURLPattern(t *testing.T) {
|
|
_, _, ok := MatchManifestURLPattern("/v2/library/hello-world/manifests/.Invalid")
|
|
assert.True(t, ok)
|
|
|
|
_, _, ok = MatchManifestURLPattern("/v2/")
|
|
assert.False(t, ok)
|
|
|
|
_, _, ok = MatchManifestURLPattern("/v2/library/hello-world/manifests//")
|
|
assert.True(t, ok)
|
|
|
|
_, _, ok = MatchManifestURLPattern("/v2/library/hello-world/manifests/###")
|
|
assert.True(t, ok)
|
|
|
|
repository, reference, ok := MatchManifestURLPattern("/v2/library/hello-world/manifests/latest")
|
|
assert.True(t, ok)
|
|
assert.Equal(t, "library/hello-world", repository)
|
|
assert.Equal(t, "latest", reference)
|
|
|
|
repository, reference, ok = MatchManifestURLPattern("/v2/library/hello-world/manifests/sha256:e5785cb0c62cebbed4965129bae371f0589cadd6d84798fb58c2c5f9e237efd9")
|
|
assert.True(t, ok)
|
|
assert.Equal(t, "library/hello-world", repository)
|
|
assert.Equal(t, "sha256:e5785cb0c62cebbed4965129bae371f0589cadd6d84798fb58c2c5f9e237efd9", reference)
|
|
}
|
|
|
|
func TestMatchBlobURLPattern(t *testing.T) {
|
|
_, _, ok := MatchBlobURLPattern("")
|
|
assert.False(t, ok)
|
|
|
|
_, _, ok = MatchBlobURLPattern("/v2/")
|
|
assert.False(t, ok)
|
|
|
|
repository, digest, ok := MatchBlobURLPattern("/v2/library/hello-world/blobs/sha256:e5785cb0c62cebbed4965129bae371f0589cadd6d84798fb58c2c5f9e237efd9")
|
|
assert.True(t, ok)
|
|
assert.Equal(t, "library/hello-world", repository)
|
|
assert.Equal(t, "sha256:e5785cb0c62cebbed4965129bae371f0589cadd6d84798fb58c2c5f9e237efd9", digest)
|
|
}
|
|
|
|
func TestMatchBlobUploadURLPattern(t *testing.T) {
|
|
_, ok := MatchBlobUploadURLPattern("")
|
|
assert.False(t, ok)
|
|
|
|
_, ok = MatchBlobUploadURLPattern("/v2/")
|
|
assert.False(t, ok)
|
|
|
|
repository, ok := MatchBlobUploadURLPattern("/v2/library/hello-world/blobs/uploads/")
|
|
assert.True(t, ok)
|
|
assert.Equal(t, "library/hello-world", repository)
|
|
|
|
repository, ok = MatchBlobUploadURLPattern("/v2/library/hello-world/blobs/uploads/uuid")
|
|
assert.True(t, ok)
|
|
assert.Equal(t, "library/hello-world", repository)
|
|
}
|
|
|
|
func TestMatchCatalogURLPattern(t *testing.T) {
|
|
cases := []struct {
|
|
url string
|
|
match bool
|
|
}{
|
|
{
|
|
url: "/v2/_catalog",
|
|
match: true,
|
|
},
|
|
{
|
|
url: "/v2/_catalog/",
|
|
match: true,
|
|
},
|
|
{
|
|
url: "/v2/_catalog////",
|
|
match: true,
|
|
},
|
|
{
|
|
url: "/v2/_catalog/xxx",
|
|
match: true,
|
|
},
|
|
{
|
|
url: "/v2/_catalog////#",
|
|
match: true,
|
|
},
|
|
{
|
|
url: "/v2/_catalog//#//",
|
|
match: true,
|
|
},
|
|
}
|
|
for _, c := range cases {
|
|
|
|
assert.Equal(t, c.match, V2CatalogURLRe.MatchString(c.url), "failed for %s", c.url)
|
|
}
|
|
}
|
|
|
|
func TestRepositoryNamePattern(t *testing.T) {
|
|
assert := assert.New(t)
|
|
assert.False(RepositoryNameRe.MatchString("a/*"))
|
|
assert.False(RepositoryNameRe.MatchString("a/"))
|
|
assert.True(RepositoryNameRe.MatchString("a/b"))
|
|
assert.True(RepositoryNameRe.MatchString("a"))
|
|
}
|