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
34ec29b9
Commit
34ec29b9
authored
Jul 13, 2018
by
Kamil Trzciński
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Support multiple scopes when using authing container registry scopes
parent
3d2dad44
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
155 additions
and
39 deletions
+155
-39
app/controllers/jwt_controller.rb
app/controllers/jwt_controller.rb
+17
-1
app/services/auth/container_registry_authentication_service.rb
...ervices/auth/container_registry_authentication_service.rb
+7
-5
changelogs/unreleased/fix-multiple-scopes.yml
changelogs/unreleased/fix-multiple-scopes.yml
+5
-0
spec/requests/jwt_controller_spec.rb
spec/requests/jwt_controller_spec.rb
+19
-0
spec/services/auth/container_registry_authentication_service_spec.rb
...es/auth/container_registry_authentication_service_spec.rb
+107
-33
No files found.
app/controllers/jwt_controller.rb
View file @
34ec29b9
...
@@ -54,6 +54,22 @@ class JwtController < ApplicationController
...
@@ -54,6 +54,22 @@ class JwtController < ApplicationController
end
end
def
auth_params
def
auth_params
params
.
permit
(
:service
,
:scope
,
:account
,
:client_id
)
params
.
permit
(
:service
,
:account
,
:client_id
)
.
merge
(
additional_params
)
end
def
additional_params
{
scopes:
scopes_param
}.
compact
end
# We have to parse scope here, because Docker Client does not send an array of scopes,
# but rather a flat list and we loose second scope when being processed by Rails:
# scope=scopeA&scope=scopeB
#
# This method makes to always return an array of scopes
def
scopes_param
return
unless
params
[
:scope
].
present?
Array
(
Rack
::
Utils
.
parse_query
(
request
.
query_string
)[
'scope'
])
end
end
end
end
app/services/auth/container_registry_authentication_service.rb
View file @
34ec29b9
...
@@ -9,11 +9,11 @@ module Auth
...
@@ -9,11 +9,11 @@ module Auth
return
error
(
'UNAVAILABLE'
,
status:
404
,
message:
'registry not enabled'
)
unless
registry
.
enabled
return
error
(
'UNAVAILABLE'
,
status:
404
,
message:
'registry not enabled'
)
unless
registry
.
enabled
unless
scope
||
current_user
||
project
unless
scope
s
.
any?
||
current_user
||
project
return
error
(
'DENIED'
,
status:
403
,
message:
'access forbidden'
)
return
error
(
'DENIED'
,
status:
403
,
message:
'access forbidden'
)
end
end
{
token:
authorized_token
(
scope
).
encoded
}
{
token:
authorized_token
(
*
scopes
).
encoded
}
end
end
def
self
.
full_access_token
(
*
names
)
def
self
.
full_access_token
(
*
names
)
...
@@ -47,10 +47,12 @@ module Auth
...
@@ -47,10 +47,12 @@ module Auth
end
end
end
end
def
scope
def
scope
s
return
unless
params
[
:scope
]
return
[]
unless
params
[
:scopes
]
@scope
||=
process_scope
(
params
[
:scope
])
@scopes
||=
params
[
:scopes
].
map
do
|
scope
|
process_scope
(
scope
)
end
.
compact
end
end
def
process_scope
(
scope
)
def
process_scope
(
scope
)
...
...
changelogs/unreleased/fix-multiple-scopes.yml
0 → 100644
View file @
34ec29b9
---
title
:
Support multiple scopes when authing container registry scopes
merge_request
:
20617
author
:
type
:
fixed
spec/requests/jwt_controller_spec.rb
View file @
34ec29b9
...
@@ -70,6 +70,25 @@ describe JwtController do
...
@@ -70,6 +70,25 @@ describe JwtController do
it
{
expect
(
service_class
).
to
have_received
(
:new
).
with
(
nil
,
user
,
parameters
)
}
it
{
expect
(
service_class
).
to
have_received
(
:new
).
with
(
nil
,
user
,
parameters
)
}
context
'when passing a flat array of scopes'
do
# We use this trick to make rails to generate a query_string:
# scope=scope1&scope=scope2
# It works because :scope and 'scope' are the same as string, but different objects
let
(
:parameters
)
do
{
:service
=>
service_name
,
:scope
=>
'scope1'
,
'scope'
=>
'scope2'
}
end
let
(
:service_parameters
)
do
{
service:
service_name
,
scopes:
%w(scope1 scope2)
}
end
it
{
expect
(
service_class
).
to
have_received
(
:new
).
with
(
nil
,
user
,
service_parameters
)
}
end
context
'when user has 2FA enabled'
do
context
'when user has 2FA enabled'
do
let
(
:user
)
{
create
(
:user
,
:two_factor
)
}
let
(
:user
)
{
create
(
:user
,
:two_factor
)
}
...
...
spec/services/auth/container_registry_authentication_service_spec.rb
View file @
34ec29b9
...
@@ -142,7 +142,7 @@ describe Auth::ContainerRegistryAuthenticationService do
...
@@ -142,7 +142,7 @@ describe Auth::ContainerRegistryAuthenticationService do
context
'for registry catalog'
do
context
'for registry catalog'
do
let
(
:current_params
)
do
let
(
:current_params
)
do
{
scope
:
"registry:catalog:*"
}
{
scope
s:
[
"registry:catalog:*"
]
}
end
end
context
'disallow browsing for users without Gitlab admin rights'
do
context
'disallow browsing for users without Gitlab admin rights'
do
...
@@ -164,7 +164,7 @@ describe Auth::ContainerRegistryAuthenticationService do
...
@@ -164,7 +164,7 @@ describe Auth::ContainerRegistryAuthenticationService do
end
end
let
(
:current_params
)
do
let
(
:current_params
)
do
{
scope
:
"repository:
#{
project
.
full_path
}
:push"
}
{
scope
s:
[
"repository:
#{
project
.
full_path
}
:push"
]
}
end
end
it_behaves_like
'a pushable'
it_behaves_like
'a pushable'
...
@@ -177,7 +177,7 @@ describe Auth::ContainerRegistryAuthenticationService do
...
@@ -177,7 +177,7 @@ describe Auth::ContainerRegistryAuthenticationService do
end
end
let
(
:current_params
)
do
let
(
:current_params
)
do
{
scope
:
"repository:
#{
project
.
full_path
}
:*"
}
{
scope
s:
[
"repository:
#{
project
.
full_path
}
:*"
]
}
end
end
it_behaves_like
'an inaccessible'
it_behaves_like
'an inaccessible'
...
@@ -191,7 +191,7 @@ describe Auth::ContainerRegistryAuthenticationService do
...
@@ -191,7 +191,7 @@ describe Auth::ContainerRegistryAuthenticationService do
context
'when pulling from root level repository'
do
context
'when pulling from root level repository'
do
let
(
:current_params
)
do
let
(
:current_params
)
do
{
scope
:
"repository:
#{
project
.
full_path
}
:pull"
}
{
scope
s:
[
"repository:
#{
project
.
full_path
}
:pull"
]
}
end
end
it_behaves_like
'a pullable'
it_behaves_like
'a pullable'
...
@@ -205,7 +205,7 @@ describe Auth::ContainerRegistryAuthenticationService do
...
@@ -205,7 +205,7 @@ describe Auth::ContainerRegistryAuthenticationService do
end
end
let
(
:current_params
)
do
let
(
:current_params
)
do
{
scope
:
"repository:
#{
project
.
full_path
}
:*"
}
{
scope
s:
[
"repository:
#{
project
.
full_path
}
:*"
]
}
end
end
it_behaves_like
'an inaccessible'
it_behaves_like
'an inaccessible'
...
@@ -218,7 +218,7 @@ describe Auth::ContainerRegistryAuthenticationService do
...
@@ -218,7 +218,7 @@ describe Auth::ContainerRegistryAuthenticationService do
end
end
let
(
:current_params
)
do
let
(
:current_params
)
do
{
scope
:
"repository:
#{
project
.
full_path
}
:push,pull"
}
{
scope
s:
[
"repository:
#{
project
.
full_path
}
:push,pull"
]
}
end
end
it_behaves_like
'a pullable'
it_behaves_like
'a pullable'
...
@@ -231,7 +231,7 @@ describe Auth::ContainerRegistryAuthenticationService do
...
@@ -231,7 +231,7 @@ describe Auth::ContainerRegistryAuthenticationService do
end
end
let
(
:current_params
)
do
let
(
:current_params
)
do
{
scope
:
"repository:
#{
project
.
full_path
}
:pull,push"
}
{
scope
s:
[
"repository:
#{
project
.
full_path
}
:pull,push"
]
}
end
end
it_behaves_like
'an inaccessible'
it_behaves_like
'an inaccessible'
...
@@ -244,7 +244,7 @@ describe Auth::ContainerRegistryAuthenticationService do
...
@@ -244,7 +244,7 @@ describe Auth::ContainerRegistryAuthenticationService do
end
end
let
(
:current_params
)
do
let
(
:current_params
)
do
{
scope
:
"repository:
#{
project
.
full_path
}
:*"
}
{
scope
s:
[
"repository:
#{
project
.
full_path
}
:*"
]
}
end
end
it_behaves_like
'an inaccessible'
it_behaves_like
'an inaccessible'
...
@@ -257,7 +257,7 @@ describe Auth::ContainerRegistryAuthenticationService do
...
@@ -257,7 +257,7 @@ describe Auth::ContainerRegistryAuthenticationService do
context
'allow anyone to pull images'
do
context
'allow anyone to pull images'
do
let
(
:current_params
)
do
let
(
:current_params
)
do
{
scope
:
"repository:
#{
project
.
full_path
}
:pull"
}
{
scope
s:
[
"repository:
#{
project
.
full_path
}
:pull"
]
}
end
end
it_behaves_like
'a pullable'
it_behaves_like
'a pullable'
...
@@ -266,7 +266,7 @@ describe Auth::ContainerRegistryAuthenticationService do
...
@@ -266,7 +266,7 @@ describe Auth::ContainerRegistryAuthenticationService do
context
'disallow anyone to push images'
do
context
'disallow anyone to push images'
do
let
(
:current_params
)
do
let
(
:current_params
)
do
{
scope
:
"repository:
#{
project
.
full_path
}
:push"
}
{
scope
s:
[
"repository:
#{
project
.
full_path
}
:push"
]
}
end
end
it_behaves_like
'an inaccessible'
it_behaves_like
'an inaccessible'
...
@@ -275,7 +275,7 @@ describe Auth::ContainerRegistryAuthenticationService do
...
@@ -275,7 +275,7 @@ describe Auth::ContainerRegistryAuthenticationService do
context
'disallow anyone to delete images'
do
context
'disallow anyone to delete images'
do
let
(
:current_params
)
do
let
(
:current_params
)
do
{
scope
:
"repository:
#{
project
.
full_path
}
:*"
}
{
scope
s:
[
"repository:
#{
project
.
full_path
}
:*"
]
}
end
end
it_behaves_like
'an inaccessible'
it_behaves_like
'an inaccessible'
...
@@ -284,7 +284,7 @@ describe Auth::ContainerRegistryAuthenticationService do
...
@@ -284,7 +284,7 @@ describe Auth::ContainerRegistryAuthenticationService do
context
'when repository name is invalid'
do
context
'when repository name is invalid'
do
let
(
:current_params
)
do
let
(
:current_params
)
do
{
scope
:
'repository:invalid:push'
}
{
scope
s:
[
'repository:invalid:push'
]
}
end
end
it_behaves_like
'an inaccessible'
it_behaves_like
'an inaccessible'
...
@@ -298,7 +298,7 @@ describe Auth::ContainerRegistryAuthenticationService do
...
@@ -298,7 +298,7 @@ describe Auth::ContainerRegistryAuthenticationService do
context
'for internal user'
do
context
'for internal user'
do
context
'allow anyone to pull images'
do
context
'allow anyone to pull images'
do
let
(
:current_params
)
do
let
(
:current_params
)
do
{
scope
:
"repository:
#{
project
.
full_path
}
:pull"
}
{
scope
s:
[
"repository:
#{
project
.
full_path
}
:pull"
]
}
end
end
it_behaves_like
'a pullable'
it_behaves_like
'a pullable'
...
@@ -307,7 +307,7 @@ describe Auth::ContainerRegistryAuthenticationService do
...
@@ -307,7 +307,7 @@ describe Auth::ContainerRegistryAuthenticationService do
context
'disallow anyone to push images'
do
context
'disallow anyone to push images'
do
let
(
:current_params
)
do
let
(
:current_params
)
do
{
scope
:
"repository:
#{
project
.
full_path
}
:push"
}
{
scope
s:
[
"repository:
#{
project
.
full_path
}
:push"
]
}
end
end
it_behaves_like
'an inaccessible'
it_behaves_like
'an inaccessible'
...
@@ -316,7 +316,7 @@ describe Auth::ContainerRegistryAuthenticationService do
...
@@ -316,7 +316,7 @@ describe Auth::ContainerRegistryAuthenticationService do
context
'disallow anyone to delete images'
do
context
'disallow anyone to delete images'
do
let
(
:current_params
)
do
let
(
:current_params
)
do
{
scope
:
"repository:
#{
project
.
full_path
}
:*"
}
{
scope
s:
[
"repository:
#{
project
.
full_path
}
:*"
]
}
end
end
it_behaves_like
'an inaccessible'
it_behaves_like
'an inaccessible'
...
@@ -328,7 +328,7 @@ describe Auth::ContainerRegistryAuthenticationService do
...
@@ -328,7 +328,7 @@ describe Auth::ContainerRegistryAuthenticationService do
context
'disallow anyone to pull or push images'
do
context
'disallow anyone to pull or push images'
do
let
(
:current_user
)
{
create
(
:user
,
external:
true
)
}
let
(
:current_user
)
{
create
(
:user
,
external:
true
)
}
let
(
:current_params
)
do
let
(
:current_params
)
do
{
scope
:
"repository:
#{
project
.
full_path
}
:pull,push"
}
{
scope
s:
[
"repository:
#{
project
.
full_path
}
:pull,push"
]
}
end
end
it_behaves_like
'an inaccessible'
it_behaves_like
'an inaccessible'
...
@@ -338,7 +338,7 @@ describe Auth::ContainerRegistryAuthenticationService do
...
@@ -338,7 +338,7 @@ describe Auth::ContainerRegistryAuthenticationService do
context
'disallow anyone to delete images'
do
context
'disallow anyone to delete images'
do
let
(
:current_user
)
{
create
(
:user
,
external:
true
)
}
let
(
:current_user
)
{
create
(
:user
,
external:
true
)
}
let
(
:current_params
)
do
let
(
:current_params
)
do
{
scope
:
"repository:
#{
project
.
full_path
}
:*"
}
{
scope
s:
[
"repository:
#{
project
.
full_path
}
:*"
]
}
end
end
it_behaves_like
'an inaccessible'
it_behaves_like
'an inaccessible'
...
@@ -364,7 +364,7 @@ describe Auth::ContainerRegistryAuthenticationService do
...
@@ -364,7 +364,7 @@ describe Auth::ContainerRegistryAuthenticationService do
context
'allow to delete images'
do
context
'allow to delete images'
do
let
(
:current_params
)
do
let
(
:current_params
)
do
{
scope
:
"repository:
#{
current_project
.
full_path
}
:*"
}
{
scope
s:
[
"repository:
#{
current_project
.
full_path
}
:*"
]
}
end
end
it_behaves_like
'a deletable'
do
it_behaves_like
'a deletable'
do
...
@@ -397,7 +397,7 @@ describe Auth::ContainerRegistryAuthenticationService do
...
@@ -397,7 +397,7 @@ describe Auth::ContainerRegistryAuthenticationService do
context
'allow to pull and push images'
do
context
'allow to pull and push images'
do
let
(
:current_params
)
do
let
(
:current_params
)
do
{
scope
:
"repository:
#{
current_project
.
full_path
}
:pull,push"
}
{
scope
s:
[
"repository:
#{
current_project
.
full_path
}
:pull,push"
]
}
end
end
it_behaves_like
'a pullable and pushable'
do
it_behaves_like
'a pullable and pushable'
do
...
@@ -411,7 +411,7 @@ describe Auth::ContainerRegistryAuthenticationService do
...
@@ -411,7 +411,7 @@ describe Auth::ContainerRegistryAuthenticationService do
context
'disallow to delete images'
do
context
'disallow to delete images'
do
let
(
:current_params
)
do
let
(
:current_params
)
do
{
scope
:
"repository:
#{
current_project
.
full_path
}
:*"
}
{
scope
s:
[
"repository:
#{
current_project
.
full_path
}
:*"
]
}
end
end
it_behaves_like
'an inaccessible'
do
it_behaves_like
'an inaccessible'
do
...
@@ -422,7 +422,7 @@ describe Auth::ContainerRegistryAuthenticationService do
...
@@ -422,7 +422,7 @@ describe Auth::ContainerRegistryAuthenticationService do
context
'for other projects'
do
context
'for other projects'
do
context
'when pulling'
do
context
'when pulling'
do
let
(
:current_params
)
do
let
(
:current_params
)
do
{
scope
:
"repository:
#{
project
.
full_path
}
:pull"
}
{
scope
s:
[
"repository:
#{
project
.
full_path
}
:pull"
]
}
end
end
context
'allow for public'
do
context
'allow for public'
do
...
@@ -489,7 +489,7 @@ describe Auth::ContainerRegistryAuthenticationService do
...
@@ -489,7 +489,7 @@ describe Auth::ContainerRegistryAuthenticationService do
context
'when pushing'
do
context
'when pushing'
do
let
(
:current_params
)
do
let
(
:current_params
)
do
{
scope
:
"repository:
#{
project
.
full_path
}
:push"
}
{
scope
s:
[
"repository:
#{
project
.
full_path
}
:push"
]
}
end
end
context
'disallow for all'
do
context
'disallow for all'
do
...
@@ -523,7 +523,7 @@ describe Auth::ContainerRegistryAuthenticationService do
...
@@ -523,7 +523,7 @@ describe Auth::ContainerRegistryAuthenticationService do
context
'disallow when pulling'
do
context
'disallow when pulling'
do
let
(
:current_params
)
do
let
(
:current_params
)
do
{
scope
:
"repository:
#{
project
.
full_path
}
:pull"
}
{
scope
s:
[
"repository:
#{
project
.
full_path
}
:pull"
]
}
end
end
it_behaves_like
'an inaccessible'
it_behaves_like
'an inaccessible'
...
@@ -534,14 +534,66 @@ describe Auth::ContainerRegistryAuthenticationService do
...
@@ -534,14 +534,66 @@ describe Auth::ContainerRegistryAuthenticationService do
context
'registry catalog browsing authorized as admin'
do
context
'registry catalog browsing authorized as admin'
do
let
(
:current_user
)
{
create
(
:user
,
:admin
)
}
let
(
:current_user
)
{
create
(
:user
,
:admin
)
}
let
(
:project
)
{
create
(
:project
,
:public
)
}
let
(
:current_params
)
do
let
(
:current_params
)
do
{
scope
:
"registry:catalog:*"
}
{
scope
s:
[
"registry:catalog:*"
]
}
end
end
it_behaves_like
'a browsable'
it_behaves_like
'a browsable'
end
end
context
'support for multiple scopes'
do
let
(
:internal_project
)
{
create
(
:project
,
:internal
)
}
let
(
:private_project
)
{
create
(
:project
,
:private
)
}
let
(
:current_params
)
do
{
scopes:
[
"repository:
#{
internal_project
.
full_path
}
:pull"
,
"repository:
#{
private_project
.
full_path
}
:pull"
]
}
end
context
'user has access to all projects'
do
let
(
:current_user
)
{
create
(
:user
,
:admin
)
}
it_behaves_like
'a browsable'
do
let
(
:access
)
do
[
{
'type'
=>
'repository'
,
'name'
=>
internal_project
.
full_path
,
'actions'
=>
[
'pull'
]
},
{
'type'
=>
'repository'
,
'name'
=>
private_project
.
full_path
,
'actions'
=>
[
'pull'
]
}
]
end
end
end
context
'user only has access to internal project'
do
let
(
:current_user
)
{
create
(
:user
)
}
it_behaves_like
'a browsable'
do
let
(
:access
)
do
[
{
'type'
=>
'repository'
,
'name'
=>
internal_project
.
full_path
,
'actions'
=>
[
'pull'
]
}
]
end
end
end
context
'anonymous access is rejected'
do
let
(
:current_user
)
{
nil
}
it_behaves_like
'a forbidden'
end
end
context
'unauthorized'
do
context
'unauthorized'
do
context
'disallow to use scope-less authentication'
do
context
'disallow to use scope-less authentication'
do
it_behaves_like
'a forbidden'
it_behaves_like
'a forbidden'
...
@@ -550,7 +602,7 @@ describe Auth::ContainerRegistryAuthenticationService do
...
@@ -550,7 +602,7 @@ describe Auth::ContainerRegistryAuthenticationService do
context
'for invalid scope'
do
context
'for invalid scope'
do
let
(
:current_params
)
do
let
(
:current_params
)
do
{
scope
:
'invalid:aa:bb'
}
{
scope
s:
[
'invalid:aa:bb'
]
}
end
end
it_behaves_like
'a forbidden'
it_behaves_like
'a forbidden'
...
@@ -561,7 +613,7 @@ describe Auth::ContainerRegistryAuthenticationService do
...
@@ -561,7 +613,7 @@ describe Auth::ContainerRegistryAuthenticationService do
let
(
:project
)
{
create
(
:project
,
:private
)
}
let
(
:project
)
{
create
(
:project
,
:private
)
}
let
(
:current_params
)
do
let
(
:current_params
)
do
{
scope
:
"repository:
#{
project
.
full_path
}
:pull"
}
{
scope
s:
[
"repository:
#{
project
.
full_path
}
:pull"
]
}
end
end
it_behaves_like
'a forbidden'
it_behaves_like
'a forbidden'
...
@@ -572,7 +624,7 @@ describe Auth::ContainerRegistryAuthenticationService do
...
@@ -572,7 +624,7 @@ describe Auth::ContainerRegistryAuthenticationService do
context
'when pulling and pushing'
do
context
'when pulling and pushing'
do
let
(
:current_params
)
do
let
(
:current_params
)
do
{
scope
:
"repository:
#{
project
.
full_path
}
:pull,push"
}
{
scope
s:
[
"repository:
#{
project
.
full_path
}
:pull,push"
]
}
end
end
it_behaves_like
'a pullable'
it_behaves_like
'a pullable'
...
@@ -581,7 +633,7 @@ describe Auth::ContainerRegistryAuthenticationService do
...
@@ -581,7 +633,7 @@ describe Auth::ContainerRegistryAuthenticationService do
context
'when pushing'
do
context
'when pushing'
do
let
(
:current_params
)
do
let
(
:current_params
)
do
{
scope
:
"repository:
#{
project
.
full_path
}
:push"
}
{
scope
s:
[
"repository:
#{
project
.
full_path
}
:push"
]
}
end
end
it_behaves_like
'a forbidden'
it_behaves_like
'a forbidden'
...
@@ -591,7 +643,7 @@ describe Auth::ContainerRegistryAuthenticationService do
...
@@ -591,7 +643,7 @@ describe Auth::ContainerRegistryAuthenticationService do
context
'for registry catalog'
do
context
'for registry catalog'
do
let
(
:current_params
)
do
let
(
:current_params
)
do
{
scope
:
"registry:catalog:*"
}
{
scope
s:
[
"registry:catalog:*"
]
}
end
end
it_behaves_like
'a forbidden'
it_behaves_like
'a forbidden'
...
@@ -601,7 +653,7 @@ describe Auth::ContainerRegistryAuthenticationService do
...
@@ -601,7 +653,7 @@ describe Auth::ContainerRegistryAuthenticationService do
context
'for deploy tokens'
do
context
'for deploy tokens'
do
let
(
:current_params
)
do
let
(
:current_params
)
do
{
scope
:
"repository:
#{
project
.
full_path
}
:pull"
}
{
scope
s:
[
"repository:
#{
project
.
full_path
}
:pull"
]
}
end
end
context
'when deploy token has read_registry as a scope'
do
context
'when deploy token has read_registry as a scope'
do
...
@@ -616,7 +668,7 @@ describe Auth::ContainerRegistryAuthenticationService do
...
@@ -616,7 +668,7 @@ describe Auth::ContainerRegistryAuthenticationService do
context
'when pushing'
do
context
'when pushing'
do
let
(
:current_params
)
do
let
(
:current_params
)
do
{
scope
:
"repository:
#{
project
.
full_path
}
:push"
}
{
scope
s:
[
"repository:
#{
project
.
full_path
}
:push"
]
}
end
end
it_behaves_like
'an inaccessible'
it_behaves_like
'an inaccessible'
...
@@ -632,7 +684,7 @@ describe Auth::ContainerRegistryAuthenticationService do
...
@@ -632,7 +684,7 @@ describe Auth::ContainerRegistryAuthenticationService do
context
'when pushing'
do
context
'when pushing'
do
let
(
:current_params
)
do
let
(
:current_params
)
do
{
scope
:
"repository:
#{
project
.
full_path
}
:push"
}
{
scope
s:
[
"repository:
#{
project
.
full_path
}
:push"
]
}
end
end
it_behaves_like
'an inaccessible'
it_behaves_like
'an inaccessible'
...
@@ -648,7 +700,7 @@ describe Auth::ContainerRegistryAuthenticationService do
...
@@ -648,7 +700,7 @@ describe Auth::ContainerRegistryAuthenticationService do
context
'when pushing'
do
context
'when pushing'
do
let
(
:current_params
)
do
let
(
:current_params
)
do
{
scope
:
"repository:
#{
project
.
full_path
}
:push"
}
{
scope
s:
[
"repository:
#{
project
.
full_path
}
:push"
]
}
end
end
it_behaves_like
'an inaccessible'
it_behaves_like
'an inaccessible'
...
@@ -734,4 +786,26 @@ describe Auth::ContainerRegistryAuthenticationService do
...
@@ -734,4 +786,26 @@ describe Auth::ContainerRegistryAuthenticationService do
end
end
end
end
end
end
context
'user authorization'
do
let
(
:current_user
)
{
create
(
:user
)
}
context
'with multiple scopes'
do
let
(
:project
)
{
create
(
:project
)
}
let
(
:project2
)
{
create
}
context
'allow developer to push images'
do
before
do
project
.
add_developer
(
current_user
)
end
let
(
:current_params
)
do
{
scopes:
[
"repository:
#{
project
.
full_path
}
:push"
]
}
end
it_behaves_like
'a pushable'
it_behaves_like
'container repository factory'
end
end
end
end
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