blob: e4835736b8cd5338e7571a0f76a34517750ffa4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
require 'spec_helper'
describe Gitlab::API do
let(:user) { Factory :user }
let!(:project) { Factory :project, :owner => user }
before { project.add_access(user, :read) }
describe "GET /projects" do
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
|