summaryrefslogtreecommitdiff
path: root/spec/requests
diff options
context:
space:
mode:
authorJakub Zienkiewicz <jakub.zienkiewicz@edpauto.com>2013-07-29 14:25:33 +0200
committerJakub Zienkiewicz <jakub.zienkiewicz@edpauto.com>2013-07-30 10:15:36 +0200
commit5e35f21605a15414258c5a857f75679f9df2c102 (patch)
tree7ef71afc5e995d16e2bbfd0652caa436c0588c00 /spec/requests
parent79bea312055751bcd92421927f5ff51b22362d63 (diff)
downloadgitlab-ce-5e35f21605a15414258c5a857f75679f9df2c102.tar.gz
allow all git-upload-* commands for deploy keys
Diffstat (limited to 'spec/requests')
-rw-r--r--spec/requests/api/internal_spec.rb36
1 files changed, 36 insertions, 0 deletions
diff --git a/spec/requests/api/internal_spec.rb b/spec/requests/api/internal_spec.rb
index 5a43953d15c..028617aa08e 100644
--- a/spec/requests/api/internal_spec.rb
+++ b/spec/requests/api/internal_spec.rb
@@ -100,6 +100,32 @@ describe API::API do
end
end
end
+
+ context "deploy key" do
+ let(:key) { create(:deploy_key) }
+
+ context "added to project" do
+ before do
+ key.projects << project
+ end
+
+ it do
+ archive(key, project)
+
+ response.status.should == 200
+ response.body.should == 'true'
+ end
+ end
+
+ context "not added to project" do
+ it do
+ archive(key, project)
+
+ response.status.should == 200
+ response.body.should == 'false'
+ end
+ end
+ end
end
def pull(key, project)
@@ -121,4 +147,14 @@ describe API::API do
action: 'git-receive-pack'
)
end
+
+ def archive(key, project)
+ get(
+ api("/internal/allowed"),
+ ref: 'master',
+ key_id: key.id,
+ project: project.path_with_namespace,
+ action: 'git-upload-archive'
+ )
+ end
end