Skip to content
Snippets Groups Projects
Commit d2cec126 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

block user should not be able to push

parent 9c2a6e20
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -20,6 +20,9 @@ module Gitlab
project == key.project && git_cmd == 'git-upload-pack'
else
user = key.user
return false if user.blocked?
action = case git_cmd
when 'git-upload-pack'
then :download_code
Loading
Loading
Loading
Loading
@@ -34,13 +34,7 @@ describe Gitlab::API do
 
context "git pull" do
it do
get(
api("/internal/allowed"),
ref: 'master',
key_id: key.id,
project: project.path_with_namespace,
action: 'git-upload-pack'
)
pull(key, project)
 
response.status.should == 200
response.body.should == 'true'
Loading
Loading
@@ -49,13 +43,7 @@ describe Gitlab::API do
 
context "git push" do
it do
get(
api("/internal/allowed"),
ref: 'master',
key_id: key.id,
project: project.path_with_namespace,
action: 'git-receive-pack'
)
push(key, project)
 
response.status.should == 200
response.body.should == 'true'
Loading
Loading
@@ -70,13 +58,7 @@ describe Gitlab::API do
 
context "git pull" do
it do
get(
api("/internal/allowed"),
ref: 'master',
key_id: key.id,
project: project.path_with_namespace,
action: 'git-upload-pack'
)
pull(key, project)
 
response.status.should == 200
response.body.should == 'false'
Loading
Loading
@@ -85,13 +67,7 @@ describe Gitlab::API do
 
context "git push" do
it do
get(
api("/internal/allowed"),
ref: 'master',
key_id: key.id,
project: project.path_with_namespace,
action: 'git-receive-pack'
)
push(key, project)
 
response.status.should == 200
response.body.should == 'false'
Loading
Loading
@@ -99,5 +75,50 @@ describe Gitlab::API do
end
end
 
context "blocked user" do
let(:personal_project) { create(:project, namespace: user.namespace) }
before do
user.block
end
context "git pull" do
it do
pull(key, personal_project)
response.status.should == 200
response.body.should == 'false'
end
end
context "git push" do
it do
push(key, personal_project)
response.status.should == 200
response.body.should == 'false'
end
end
end
end
def pull(key, project)
get(
api("/internal/allowed"),
ref: 'master',
key_id: key.id,
project: project.path_with_namespace,
action: 'git-upload-pack'
)
end
def push(key, project)
get(
api("/internal/allowed"),
ref: 'master',
key_id: key.id,
project: project.path_with_namespace,
action: 'git-receive-pack'
)
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment