2012-06-27 14:51:39 +02:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Gitlab::API do
|
2012-08-25 19:31:50 +02:00
|
|
|
include ApiHelpers
|
|
|
|
|
2012-06-27 14:51:39 +02:00
|
|
|
let(:user) { Factory :user }
|
2012-08-11 00:07:50 +02:00
|
|
|
let!(:project) { Factory :project, owner: user }
|
|
|
|
let!(:snippet) { Factory :snippet, author: user, project: project, title: 'example' }
|
2012-06-28 16:02:20 +02:00
|
|
|
before { project.add_access(user, :read) }
|
2012-06-27 14:51:39 +02:00
|
|
|
|
|
|
|
describe "GET /projects" do
|
|
|
|
it "should return authentication error" do
|
2012-08-25 19:43:55 +02:00
|
|
|
get api("/projects")
|
2012-06-27 14:51:39 +02:00
|
|
|
response.status.should == 401
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "authenticated GET /projects" do
|
|
|
|
it "should return an array of projects" do
|
2012-08-25 19:43:55 +02:00
|
|
|
get api("/projects", user)
|
2012-06-27 14:51:39 +02:00
|
|
|
response.status.should == 200
|
2012-07-04 09:48:00 +02:00
|
|
|
json_response.should be_an Array
|
|
|
|
json_response.first['name'].should == project.name
|
|
|
|
json_response.first['owner']['email'].should == user.email
|
2012-06-27 14:51:39 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-08-31 09:15:37 +02:00
|
|
|
describe "POST /projects" do
|
|
|
|
it "should create new project without code and path" do
|
|
|
|
lambda {
|
|
|
|
name = "foo"
|
|
|
|
post api("/projects", user), {
|
|
|
|
name: name
|
|
|
|
}
|
|
|
|
response.status.should == 201
|
|
|
|
json_response["name"].should == name
|
|
|
|
json_response["code"].should == name
|
|
|
|
json_response["path"].should == name
|
|
|
|
}.should change{Project.count}.by(1)
|
|
|
|
end
|
|
|
|
it "should create new project" do
|
|
|
|
lambda {
|
|
|
|
name = "foo"
|
|
|
|
path = "bar"
|
|
|
|
code = "bazz"
|
|
|
|
post api("/projects", user), {
|
|
|
|
code: code,
|
|
|
|
path: path,
|
|
|
|
name: name
|
|
|
|
}
|
|
|
|
response.status.should == 201
|
|
|
|
json_response["name"].should == name
|
|
|
|
json_response["path"].should == path
|
|
|
|
json_response["code"].should == code
|
|
|
|
}.should change{Project.count}.by(1)
|
|
|
|
end
|
|
|
|
it "should not create project without name" do
|
|
|
|
lambda {
|
|
|
|
post api("/projects", user)
|
|
|
|
response.status.should == 404
|
|
|
|
}.should_not change{Project.count}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-09-05 22:01:03 +02:00
|
|
|
describe "PUT /projects/:id/add_users" do
|
|
|
|
@user2 = Factory :user
|
|
|
|
@user3 = Factory :user
|
|
|
|
|
|
|
|
it "should add users to existing project" do
|
|
|
|
expect {
|
|
|
|
put api("/projects/#{project.code}/add_users", user),
|
|
|
|
user_ids: [@user2.id, @user3.id], project_access: UsersProject::DEVELOPER
|
2012-09-06 00:06:02 +02:00
|
|
|
}.to change {Project.last.users_projects.where(:project_access => UsersProject::DEVELOPER).count}.by(2)
|
2012-09-05 22:01:03 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-06-27 14:51:39 +02:00
|
|
|
describe "GET /projects/:id" do
|
|
|
|
it "should return a project by id" do
|
2012-08-25 19:43:55 +02:00
|
|
|
get api("/projects/#{project.id}", user)
|
2012-06-27 14:51:39 +02:00
|
|
|
response.status.should == 200
|
2012-07-04 09:48:00 +02:00
|
|
|
json_response['name'].should == project.name
|
|
|
|
json_response['owner']['email'].should == user.email
|
2012-06-27 14:51:39 +02:00
|
|
|
end
|
2012-07-25 11:18:30 +02:00
|
|
|
|
|
|
|
it "should return a project by code name" do
|
2012-08-25 19:43:55 +02:00
|
|
|
get api("/projects/#{project.code}", user)
|
2012-07-25 11:18:30 +02:00
|
|
|
response.status.should == 200
|
|
|
|
json_response['name'].should == project.name
|
|
|
|
end
|
2012-07-25 14:24:28 +02:00
|
|
|
|
|
|
|
it "should return a 404 error if not found" do
|
2012-08-25 19:43:55 +02:00
|
|
|
get api("/projects/42", user)
|
2012-07-25 14:24:28 +02:00
|
|
|
response.status.should == 404
|
|
|
|
json_response['message'].should == '404 Not found'
|
|
|
|
end
|
2012-06-27 14:51:39 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
describe "GET /projects/:id/repository/branches" do
|
|
|
|
it "should return an array of project branches" do
|
2012-08-25 19:43:55 +02:00
|
|
|
get api("/projects/#{project.code}/repository/branches", user)
|
2012-06-27 14:51:39 +02:00
|
|
|
response.status.should == 200
|
2012-07-04 09:48:00 +02:00
|
|
|
json_response.should be_an Array
|
|
|
|
json_response.first['name'].should == project.repo.heads.sort_by(&:name).first.name
|
2012-06-27 14:51:39 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-07-26 16:29:53 +02:00
|
|
|
describe "GET /projects/:id/repository/branches/:branch" do
|
|
|
|
it "should return the branch information for a single branch" do
|
2012-08-25 19:43:55 +02:00
|
|
|
get api("/projects/#{project.code}/repository/branches/new_design", user)
|
2012-07-26 16:29:53 +02:00
|
|
|
response.status.should == 200
|
|
|
|
|
|
|
|
json_response['name'].should == 'new_design'
|
|
|
|
json_response['commit']['id'].should == '621491c677087aa243f165eab467bfdfbee00be1'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-06-27 14:51:39 +02:00
|
|
|
describe "GET /projects/:id/repository/tags" do
|
|
|
|
it "should return an array of project tags" do
|
2012-08-25 19:43:55 +02:00
|
|
|
get api("/projects/#{project.code}/repository/tags", user)
|
2012-06-27 14:51:39 +02:00
|
|
|
response.status.should == 200
|
2012-07-04 09:48:00 +02:00
|
|
|
json_response.should be_an Array
|
|
|
|
json_response.first['name'].should == project.repo.tags.sort_by(&:name).reverse.first.name
|
2012-06-27 14:51:39 +02:00
|
|
|
end
|
|
|
|
end
|
2012-06-29 15:34:08 +02:00
|
|
|
|
|
|
|
describe "GET /projects/:id/snippets/:snippet_id" do
|
|
|
|
it "should return a project snippet" do
|
2012-08-25 19:43:55 +02:00
|
|
|
get api("/projects/#{project.code}/snippets/#{snippet.id}", user)
|
2012-06-29 15:34:08 +02:00
|
|
|
response.status.should == 200
|
2012-07-04 09:48:00 +02:00
|
|
|
json_response['title'].should == snippet.title
|
2012-06-29 15:34:08 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "POST /projects/:id/snippets" do
|
|
|
|
it "should create a new project snippet" do
|
2012-08-25 19:43:55 +02:00
|
|
|
post api("/projects/#{project.code}/snippets", user),
|
2012-08-11 00:07:50 +02:00
|
|
|
title: 'api test', file_name: 'sample.rb', code: 'test'
|
2012-06-29 15:34:08 +02:00
|
|
|
response.status.should == 201
|
2012-07-04 09:48:00 +02:00
|
|
|
json_response['title'].should == 'api test'
|
2012-06-29 15:34:08 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-07-04 11:03:32 +02:00
|
|
|
describe "PUT /projects/:id/snippets" do
|
|
|
|
it "should update an existing project snippet" do
|
2012-08-25 19:43:55 +02:00
|
|
|
put api("/projects/#{project.code}/snippets/#{snippet.id}", user),
|
2012-08-11 00:07:50 +02:00
|
|
|
code: 'updated code'
|
2012-07-04 11:03:32 +02:00
|
|
|
response.status.should == 200
|
|
|
|
json_response['title'].should == 'example'
|
|
|
|
snippet.reload.content.should == 'updated code'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-06-29 15:34:08 +02:00
|
|
|
describe "DELETE /projects/:id/snippets/:snippet_id" do
|
2012-07-13 15:10:30 +02:00
|
|
|
it "should delete existing project snippet" do
|
2012-06-29 15:34:08 +02:00
|
|
|
expect {
|
2012-08-25 19:43:55 +02:00
|
|
|
delete api("/projects/#{project.code}/snippets/#{snippet.id}", user)
|
2012-07-26 16:29:53 +02:00
|
|
|
}.to change { Snippet.count }.by(-1)
|
2012-06-29 15:34:08 +02:00
|
|
|
end
|
|
|
|
end
|
2012-07-04 11:03:32 +02:00
|
|
|
|
|
|
|
describe "GET /projects/:id/snippets/:snippet_id/raw" do
|
|
|
|
it "should get a raw project snippet" do
|
2012-08-25 19:43:55 +02:00
|
|
|
get api("/projects/#{project.code}/snippets/#{snippet.id}/raw", user)
|
2012-07-04 11:03:32 +02:00
|
|
|
response.status.should == 200
|
|
|
|
end
|
|
|
|
end
|
2012-07-26 16:29:53 +02:00
|
|
|
|
|
|
|
describe "GET /projects/:id/:sha/blob" do
|
|
|
|
it "should get the raw file contents" do
|
2012-08-25 19:43:55 +02:00
|
|
|
get api("/projects/#{project.code}/repository/commits/master/blob?filepath=README.md", user)
|
2012-07-26 16:29:53 +02:00
|
|
|
response.status.should == 200
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should return 404 for invalid branch_name" do
|
2012-08-25 19:43:55 +02:00
|
|
|
get api("/projects/#{project.code}/repository/commits/invalid_branch_name/blob?filepath=README.md", user)
|
2012-07-26 16:29:53 +02:00
|
|
|
response.status.should == 404
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should return 404 for invalid file" do
|
2012-08-25 19:43:55 +02:00
|
|
|
get api("/projects/#{project.code}/repository/commits/master/blob?filepath=README.invalid", user)
|
2012-07-26 16:29:53 +02:00
|
|
|
response.status.should == 404
|
|
|
|
end
|
|
|
|
end
|
2012-06-27 14:51:39 +02:00
|
|
|
end
|