mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-21 17:55:30 +01:00
fix cross mount conformance test (#15274)
fixes #15273 set the cross mount namespace for conformance test, the default vaule cannot pass the reponame validation. Signed-off-by: Wang Yan <wangyan@vmware.com>
This commit is contained in:
parent
b158086642
commit
cdb7f4514e
@ -3,11 +3,17 @@ set -e
|
||||
echo "get the conformance testing code..."
|
||||
git clone https://github.com/opencontainers/distribution-spec.git
|
||||
|
||||
echo "create testing project"
|
||||
STATUS=$(curl -w '%{http_code}' -H 'Content-Type: application/json' -H 'Accept: application/json' -X POST -u "admin:Harbor12345" -s --insecure "https://$IP/api/v2.0/projects" --data '{"project_name":"conformance","metadata":{"public":"false"},"storage_limit":-1}')
|
||||
if [ $STATUS -ne 201 ]; then
|
||||
exit 1
|
||||
fi
|
||||
function createPro {
|
||||
echo "create testing project: $2"
|
||||
STATUS=$(curl -w '%{http_code}' -H 'Content-Type: application/json' -H 'Accept: application/json' -X POST -u "admin:Harbor12345" -s --insecure "https://$1/api/v2.0/projects" --data "{\"project_name\":\"$2\",\"metadata\":{\"public\":\"false\"},\"storage_limit\":-1}")
|
||||
if [ $STATUS -ne 201 ]; then
|
||||
echo "fail to create project: $2, rc: $STATUS"
|
||||
exit 1
|
||||
fi
|
||||
}
|
||||
|
||||
createPro $1 conformance
|
||||
createPro $1 crossmount
|
||||
|
||||
echo "run conformance test..."
|
||||
export OCI_ROOT_URL="https://$1"
|
||||
@ -20,6 +26,7 @@ export OCI_TEST_PUSH=1
|
||||
export OCI_TEST_PULL=1
|
||||
export OCI_TEST_CONTENT_DISCOVERY=1
|
||||
export OCI_TEST_CONTENT_MANAGEMENT=1
|
||||
export OCI_CROSSMOUNT_NAMESPACE="crossmount/testrepo"
|
||||
|
||||
cd ./distribution-spec/conformance
|
||||
go test .
|
Loading…
Reference in New Issue
Block a user