summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorNihad Abbasov <narkoz.2008@gmail.com>2012-06-27 05:51:39 -0700
committerNihad Abbasov <narkoz.2008@gmail.com>2012-06-28 03:44:20 -0700
commit7b5c3cc8be40ee161ae89a06bba6229da1032a0c (patch)
tree46e82de44b1061621357f24c05515327f2795a95 /spec
parent4ad91d3c1144c406e50c7b33bae684bd6837faf8 (diff)
downloadgitlab-ce-7b5c3cc8be40ee161ae89a06bba6229da1032a0c.tar.gz
add projects API
Diffstat (limited to 'spec')
-rw-r--r--spec/api/projects_spec.rb56
1 files changed, 56 insertions, 0 deletions
diff --git a/spec/api/projects_spec.rb b/spec/api/projects_spec.rb
new file mode 100644
index 00000000000..2d1043f961e
--- /dev/null
+++ b/spec/api/projects_spec.rb
@@ -0,0 +1,56 @@
+require 'spec_helper'
+
+describe Gitlab::API do
+ let(:user) { Factory :user }
+ let!(:project) { Factory :project, :owner => user }
+
+ describe "GET /projects" do
+ before { project.add_access(user, :read) }
+
+ it "should return authentication error" do
+ get "/api/projects"
+ response.status.should == 401
+ end
+
+ describe "authenticated GET /projects" do
+ it "should return an array of projects" do
+ get "/api/projects?private_token=#{user.private_token}"
+ response.status.should == 200
+ json = JSON.parse(response.body)
+ json.should be_an Array
+ json.first['name'].should == project.name
+ json.first['owner']['email'].should == user.email
+ end
+ end
+ end
+
+ describe "GET /projects/:id" do
+ it "should return a project by id" do
+ get "/api/projects/#{project.code}?private_token=#{user.private_token}"
+ response.status.should == 200
+ json = JSON.parse(response.body)
+ json['name'].should == project.name
+ json['owner']['email'].should == user.email
+ end
+ end
+
+ describe "GET /projects/:id/repository/branches" do
+ it "should return an array of project branches" do
+ get "/api/projects/#{project.code}/repository/branches?private_token=#{user.private_token}"
+ response.status.should == 200
+ json = JSON.parse(response.body)
+ json.should be_an Array
+ json.first['name'].should == project.repo.heads.sort_by(&:name).first.name
+ end
+ end
+
+ describe "GET /projects/:id/repository/tags" do
+ it "should return an array of project tags" do
+ get "/api/projects/#{project.code}/repository/tags?private_token=#{user.private_token}"
+ response.status.should == 200
+ json = JSON.parse(response.body)
+ json.should be_an Array
+ json.first['name'].should == project.repo.tags.sort_by(&:name).reverse.first.name
+ end
+ end
+end