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
3e35f653
Commit
3e35f653
authored
Apr 10, 2018
by
Mayra Cabrera
Committed by
Kamil Trzciński
Apr 10, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Verify that deploy token has valid access when pulling container registry image
parent
bc841c7d
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
165 additions
and
12 deletions
+165
-12
app/models/deploy_token.rb
app/models/deploy_token.rb
+1
-1
app/services/auth/container_registry_authentication_service.rb
...ervices/auth/container_registry_authentication_service.rb
+2
-1
changelogs/unreleased/deploy-tokens-container-registry-specs.yml
...ogs/unreleased/deploy-tokens-container-registry-specs.yml
+5
-0
spec/models/deploy_token_spec.rb
spec/models/deploy_token_spec.rb
+21
-10
spec/services/auth/container_registry_authentication_service_spec.rb
...es/auth/container_registry_authentication_service_spec.rb
+136
-0
No files found.
app/models/deploy_token.rb
View file @
3e35f653
...
...
@@ -34,7 +34,7 @@ class DeployToken < ActiveRecord::Base
end
def
has_access_to?
(
requested_project
)
project
==
requested_project
active?
&&
project
==
requested_project
end
# This is temporal. Currently we limit DeployToken
...
...
app/services/auth/container_registry_authentication_service.rb
View file @
3e35f653
...
...
@@ -149,7 +149,8 @@ module Auth
def
deploy_token_can_pull?
(
requested_project
)
has_authentication_ability?
(
:read_container_image
)
&&
current_user
.
is_a?
(
DeployToken
)
&&
current_user
.
has_access_to?
(
requested_project
)
current_user
.
has_access_to?
(
requested_project
)
&&
current_user
.
read_registry?
end
##
...
...
changelogs/unreleased/deploy-tokens-container-registry-specs.yml
0 → 100644
View file @
3e35f653
---
title
:
Verify that deploy token has valid access when pulling container registry image
merge_request
:
18260
author
:
type
:
fixed
spec/models/deploy_token_spec.rb
View file @
3e35f653
...
...
@@ -78,19 +78,30 @@ describe DeployToken do
describe
'#has_access_to?'
do
let
(
:project
)
{
create
(
:project
)
}
subject
(
:deploy_token
)
{
create
(
:deploy_token
,
projects:
[
project
]
)
}
subject
{
deploy_token
.
has_access_to?
(
project
)
}
context
'when
the deploy token has access to the
project'
do
it
'should return true'
do
expect
(
deploy_token
.
has_access_to?
(
project
)).
to
be_truthy
end
context
'when
deploy token is active and related to
project'
do
let
(
:deploy_token
)
{
create
(
:deploy_token
,
projects:
[
project
])
}
it
{
is_expected
.
to
be_truthy
}
end
context
'when the deploy token does not have access to the project'
do
it
'should return false'
do
another_project
=
create
(
:project
)
expect
(
deploy_token
.
has_access_to?
(
another_project
)).
to
be_falsy
end
context
'when deploy token is active but not related to project'
do
let
(
:deploy_token
)
{
create
(
:deploy_token
)
}
it
{
is_expected
.
to
be_falsy
}
end
context
'when deploy token is revoked and related to project'
do
let
(
:deploy_token
)
{
create
(
:deploy_token
,
:revoked
,
projects:
[
project
])
}
it
{
is_expected
.
to
be_falsy
}
end
context
'when deploy token is revoked and not related to the project'
do
let
(
:deploy_token
)
{
create
(
:deploy_token
,
:revoked
)
}
it
{
is_expected
.
to
be_falsy
}
end
end
...
...
spec/services/auth/container_registry_authentication_service_spec.rb
View file @
3e35f653
...
...
@@ -585,4 +585,140 @@ describe Auth::ContainerRegistryAuthenticationService do
it_behaves_like
'not a container repository factory'
end
end
context
'for deploy tokens'
do
let
(
:current_params
)
do
{
scope:
"repository:
#{
project
.
full_path
}
:pull"
}
end
context
'when deploy token has read_registry as a scope'
do
let
(
:current_user
)
{
create
(
:deploy_token
,
projects:
[
project
])
}
context
'for public project'
do
let
(
:project
)
{
create
(
:project
,
:public
)
}
context
'when pulling'
do
it_behaves_like
'a pullable'
end
context
'when pushing'
do
let
(
:current_params
)
do
{
scope:
"repository:
#{
project
.
full_path
}
:push"
}
end
it_behaves_like
'an inaccessible'
end
end
context
'for internal project'
do
let
(
:project
)
{
create
(
:project
,
:internal
)
}
context
'when pulling'
do
it_behaves_like
'a pullable'
end
context
'when pushing'
do
let
(
:current_params
)
do
{
scope:
"repository:
#{
project
.
full_path
}
:push"
}
end
it_behaves_like
'an inaccessible'
end
end
context
'for private project'
do
let
(
:project
)
{
create
(
:project
,
:private
)
}
context
'when pulling'
do
it_behaves_like
'a pullable'
end
context
'when pushing'
do
let
(
:current_params
)
do
{
scope:
"repository:
#{
project
.
full_path
}
:push"
}
end
it_behaves_like
'an inaccessible'
end
end
end
context
'when deploy token does not have read_registry scope'
do
let
(
:current_user
)
{
create
(
:deploy_token
,
projects:
[
project
],
read_registry:
false
)
}
context
'for public project'
do
let
(
:project
)
{
create
(
:project
,
:public
)
}
context
'when pulling'
do
it_behaves_like
'a pullable'
end
end
context
'for internal project'
do
let
(
:project
)
{
create
(
:project
,
:internal
)
}
context
'when pulling'
do
it_behaves_like
'an inaccessible'
end
end
context
'for private project'
do
let
(
:project
)
{
create
(
:project
,
:internal
)
}
context
'when pulling'
do
it_behaves_like
'an inaccessible'
end
end
end
context
'when deploy token is not related to the project'
do
let
(
:current_user
)
{
create
(
:deploy_token
,
read_registry:
false
)
}
context
'for public project'
do
let
(
:project
)
{
create
(
:project
,
:public
)
}
context
'when pulling'
do
it_behaves_like
'a pullable'
end
end
context
'for internal project'
do
let
(
:project
)
{
create
(
:project
,
:internal
)
}
context
'when pulling'
do
it_behaves_like
'an inaccessible'
end
end
context
'for private project'
do
let
(
:project
)
{
create
(
:project
,
:internal
)
}
context
'when pulling'
do
it_behaves_like
'an inaccessible'
end
end
end
context
'when deploy token has been revoked'
do
let
(
:current_user
)
{
create
(
:deploy_token
,
:revoked
,
projects:
[
project
])
}
context
'for public project'
do
let
(
:project
)
{
create
(
:project
,
:public
)
}
it_behaves_like
'a pullable'
end
context
'for internal project'
do
let
(
:project
)
{
create
(
:project
,
:internal
)
}
it_behaves_like
'an inaccessible'
end
context
'for private project'
do
let
(
:project
)
{
create
(
:project
,
:internal
)
}
it_behaves_like
'an inaccessible'
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