Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
132380bf
Commit
132380bf
authored
May 20, 2021
by
Sofia Vistas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add Container Registry API test to preprod
parent
e7a075f7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
4 deletions
+12
-4
qa/qa/specs/features/api/5_package/container_registry_spec.rb
...a/specs/features/api/5_package/container_registry_spec.rb
+12
-4
No files found.
qa/qa/specs/features/api/5_package/container_registry_spec.rb
View file @
132380bf
...
...
@@ -3,7 +3,7 @@
require
'airborne'
module
QA
RSpec
.
describe
'Package'
,
only:
{
subdomain:
:staging
}
do
RSpec
.
describe
'Package'
,
only:
{
subdomain:
%i[staging pre]
}
do
include
Support
::
Api
describe
'Container Registry'
do
...
...
@@ -13,6 +13,7 @@ module QA
Resource
::
Project
.
fabricate_via_api!
do
|
project
|
project
.
name
=
'project-with-registry-api'
project
.
template_name
=
'express'
project
.
api_client
=
api_client
end
end
...
...
@@ -37,6 +38,12 @@ module QA
- docker:19.03.12-dind
variables:
IMAGE_TAG: $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG
DOCKER_HOST: tcp://docker:2376
DOCKER_TLS_CERTDIR: "/certs"
DOCKER_TLS_VERIFY: 1
DOCKER_CERT_PATH: "$DOCKER_TLS_CERTDIR/client"
before_script:
- until docker info; do sleep 1; done
script:
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
- docker build -t $IMAGE_TAG .
...
...
@@ -50,6 +57,7 @@ module QA
MEDIA_TYPE: 'application/vnd.docker.distribution.manifest.v2+json'
before_script:
- token=$(curl -u "$CI_REGISTRY_USER:$CI_REGISTRY_PASSWORD" "https://$CI_SERVER_HOST/jwt/auth?service=container_registry&scope=repository:$CI_PROJECT_PATH:pull,push,delete" | jq -r '.token')
- echo $token
script:
- 'digest=$(curl -L -H "Authorization: Bearer $token" -H "Accept: $MEDIA_TYPE" "https://$CI_REGISTRY/v2/$CI_PROJECT_PATH/manifests/master" | jq -r ".layers[0].digest")'
- 'curl -L -X DELETE -H "Authorization: Bearer $token" -H "Accept: $MEDIA_TYPE" "https://$CI_REGISTRY/v2/$CI_PROJECT_PATH/blobs/$digest"'
...
...
@@ -57,7 +65,6 @@ module QA
- 'digest=$(curl -L -H "Authorization: Bearer $token" -H "Accept: $MEDIA_TYPE" "https://$CI_REGISTRY/v2/$CI_PROJECT_PATH/manifests/master" | jq -r ".config.digest")'
- 'curl -L -X DELETE -H "Authorization: Bearer $token" -H "Accept: $MEDIA_TYPE" "https://$CI_REGISTRY/v2/$CI_PROJECT_PATH/manifests/$digest"'
- 'curl -L --head -H "Authorization: Bearer $token" -H "Accept: $MEDIA_TYPE" "https://$CI_REGISTRY/v2/$CI_PROJECT_PATH/manifests/$digest"'
YAML
end
...
...
@@ -67,8 +74,9 @@ module QA
it
'pushes, pulls image to the registry and deletes image blob, manifest and tag'
,
testcase:
'https://gitlab.com/gitlab-org/quality/testcases/-/issues/1738'
do
Resource
::
Repository
::
Commit
.
fabricate_via_api!
do
|
commit
|
commit
.
project
=
projec
t
commit
.
api_client
=
api_clien
t
commit
.
commit_message
=
'Add .gitlab-ci.yml'
commit
.
project
=
project
commit
.
add_files
([{
file_path:
'.gitlab-ci.yml'
,
content:
gitlab_ci_yaml
...
...
@@ -77,7 +85,7 @@ module QA
Support
::
Waiter
.
wait_until
(
max_duration:
10
)
{
pipeline_is_triggered?
}
Support
::
Retrier
.
retry_until
(
max_duration:
26
0
,
sleep_interval:
5
)
do
Support
::
Retrier
.
retry_until
(
max_duration:
30
0
,
sleep_interval:
5
)
do
latest_pipeline_succeed?
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment