2014-09-02 18:07:02 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe API::API, api: true do
|
|
|
|
include ApiHelpers
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
let!(:project) { create(:project, namespace: user.namespace ) }
|
2015-04-26 12:48:37 +05:30
|
|
|
let!(:closed_issue) do
|
|
|
|
create :closed_issue,
|
|
|
|
author: user,
|
|
|
|
assignee: user,
|
|
|
|
project: project,
|
|
|
|
state: :closed,
|
|
|
|
milestone: milestone
|
|
|
|
end
|
|
|
|
let!(:issue) do
|
|
|
|
create :issue,
|
|
|
|
author: user,
|
|
|
|
assignee: user,
|
|
|
|
project: project,
|
|
|
|
milestone: milestone
|
|
|
|
end
|
2014-09-02 18:07:02 +05:30
|
|
|
let!(:label) do
|
|
|
|
create(:label, title: 'label', color: '#FFAABB', project: project)
|
|
|
|
end
|
2015-04-26 12:48:37 +05:30
|
|
|
let!(:label_link) { create(:label_link, label: label, target: issue) }
|
|
|
|
let!(:milestone) { create(:milestone, title: '1.0.0', project: project) }
|
|
|
|
let!(:empty_milestone) do
|
|
|
|
create(:milestone, title: '2.0.0', project: project)
|
|
|
|
end
|
2014-09-02 18:07:02 +05:30
|
|
|
|
|
|
|
before { project.team << [user, :reporter] }
|
|
|
|
|
|
|
|
describe "GET /issues" do
|
|
|
|
context "when unauthenticated" do
|
|
|
|
it "should return authentication error" do
|
|
|
|
get api("/issues")
|
2015-04-26 12:48:37 +05:30
|
|
|
expect(response.status).to eq(401)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when authenticated" do
|
|
|
|
it "should return an array of issues" do
|
|
|
|
get api("/issues", user)
|
2015-04-26 12:48:37 +05:30
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(json_response).to be_an Array
|
|
|
|
expect(json_response.first['title']).to eq(issue.title)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it "should add pagination headers" do
|
|
|
|
get api("/issues?per_page=3", user)
|
2015-04-26 12:48:37 +05:30
|
|
|
expect(response.headers['Link']).to eq(
|
2014-09-02 18:07:02 +05:30
|
|
|
'<http://www.example.com/api/v3/issues?page=1&per_page=3>; rel="first", <http://www.example.com/api/v3/issues?page=1&per_page=3>; rel="last"'
|
2015-04-26 12:48:37 +05:30
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should return an array of closed issues' do
|
|
|
|
get api('/issues?state=closed', user)
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(json_response).to be_an Array
|
|
|
|
expect(json_response.length).to eq(1)
|
|
|
|
expect(json_response.first['id']).to eq(closed_issue.id)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should return an array of opened issues' do
|
|
|
|
get api('/issues?state=opened', user)
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(json_response).to be_an Array
|
|
|
|
expect(json_response.length).to eq(1)
|
|
|
|
expect(json_response.first['id']).to eq(issue.id)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should return an array of all issues' do
|
|
|
|
get api('/issues?state=all', user)
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(json_response).to be_an Array
|
|
|
|
expect(json_response.length).to eq(2)
|
|
|
|
expect(json_response.first['id']).to eq(issue.id)
|
|
|
|
expect(json_response.second['id']).to eq(closed_issue.id)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should return an array of labeled issues' do
|
|
|
|
get api("/issues?labels=#{label.title}", user)
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(json_response).to be_an Array
|
|
|
|
expect(json_response.length).to eq(1)
|
|
|
|
expect(json_response.first['labels']).to eq([label.title])
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should return an array of labeled issues when at least one label matches' do
|
|
|
|
get api("/issues?labels=#{label.title},foo,bar", user)
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(json_response).to be_an Array
|
|
|
|
expect(json_response.length).to eq(1)
|
|
|
|
expect(json_response.first['labels']).to eq([label.title])
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should return an empty array if no issue matches labels' do
|
|
|
|
get api('/issues?labels=foo,bar', user)
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(json_response).to be_an Array
|
|
|
|
expect(json_response.length).to eq(0)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should return an array of labeled issues matching given state' do
|
|
|
|
get api("/issues?labels=#{label.title}&state=opened", user)
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(json_response).to be_an Array
|
|
|
|
expect(json_response.length).to eq(1)
|
|
|
|
expect(json_response.first['labels']).to eq([label.title])
|
|
|
|
expect(json_response.first['state']).to eq('opened')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should return an empty array if no issue matches labels and state filters' do
|
|
|
|
get api("/issues?labels=#{label.title}&state=closed", user)
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(json_response).to be_an Array
|
|
|
|
expect(json_response.length).to eq(0)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "GET /projects/:id/issues" do
|
2015-04-26 12:48:37 +05:30
|
|
|
let(:base_url) { "/projects/#{project.id}" }
|
|
|
|
let(:title) { milestone.title }
|
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
it "should return project issues" do
|
2015-04-26 12:48:37 +05:30
|
|
|
get api("#{base_url}/issues", user)
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(json_response).to be_an Array
|
|
|
|
expect(json_response.first['title']).to eq(issue.title)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should return an array of labeled project issues' do
|
|
|
|
get api("#{base_url}/issues?labels=#{label.title}", user)
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(json_response).to be_an Array
|
|
|
|
expect(json_response.length).to eq(1)
|
|
|
|
expect(json_response.first['labels']).to eq([label.title])
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should return an array of labeled project issues when at least one label matches' do
|
|
|
|
get api("#{base_url}/issues?labels=#{label.title},foo,bar", user)
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(json_response).to be_an Array
|
|
|
|
expect(json_response.length).to eq(1)
|
|
|
|
expect(json_response.first['labels']).to eq([label.title])
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should return an empty array if no project issue matches labels' do
|
|
|
|
get api("#{base_url}/issues?labels=foo,bar", user)
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(json_response).to be_an Array
|
|
|
|
expect(json_response.length).to eq(0)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should return an empty array if no issue matches milestone' do
|
|
|
|
get api("#{base_url}/issues?milestone=#{empty_milestone.title}", user)
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(json_response).to be_an Array
|
|
|
|
expect(json_response.length).to eq(0)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should return an empty array if milestone does not exist' do
|
|
|
|
get api("#{base_url}/issues?milestone=foo", user)
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(json_response).to be_an Array
|
|
|
|
expect(json_response.length).to eq(0)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should return an array of issues in given milestone' do
|
|
|
|
get api("#{base_url}/issues?milestone=#{title}", user)
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(json_response).to be_an Array
|
|
|
|
expect(json_response.length).to eq(2)
|
|
|
|
expect(json_response.first['id']).to eq(issue.id)
|
|
|
|
expect(json_response.second['id']).to eq(closed_issue.id)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should return an array of issues matching state in milestone' do
|
|
|
|
get api("#{base_url}/issues?milestone=#{milestone.title}"\
|
|
|
|
'&state=closed', user)
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(json_response).to be_an Array
|
|
|
|
expect(json_response.length).to eq(1)
|
|
|
|
expect(json_response.first['id']).to eq(closed_issue.id)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "GET /projects/:id/issues/:issue_id" do
|
|
|
|
it "should return a project issue by id" do
|
|
|
|
get api("/projects/#{project.id}/issues/#{issue.id}", user)
|
2015-04-26 12:48:37 +05:30
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(json_response['title']).to eq(issue.title)
|
|
|
|
expect(json_response['iid']).to eq(issue.iid)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
it 'should return a project issue by iid' do
|
|
|
|
get api("/projects/#{project.id}/issues?iid=#{issue.iid}", user)
|
|
|
|
expect(response.status).to eq 200
|
|
|
|
expect(json_response.first['title']).to eq issue.title
|
|
|
|
expect(json_response.first['id']).to eq issue.id
|
|
|
|
expect(json_response.first['iid']).to eq issue.iid
|
|
|
|
end
|
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
it "should return 404 if issue id not found" do
|
|
|
|
get api("/projects/#{project.id}/issues/54321", user)
|
2015-04-26 12:48:37 +05:30
|
|
|
expect(response.status).to eq(404)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "POST /projects/:id/issues" do
|
|
|
|
it "should create a new project issue" do
|
|
|
|
post api("/projects/#{project.id}/issues", user),
|
|
|
|
title: 'new issue', labels: 'label, label2'
|
2015-04-26 12:48:37 +05:30
|
|
|
expect(response.status).to eq(201)
|
|
|
|
expect(json_response['title']).to eq('new issue')
|
|
|
|
expect(json_response['description']).to be_nil
|
|
|
|
expect(json_response['labels']).to eq(['label', 'label2'])
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it "should return a 400 bad request if title not given" do
|
|
|
|
post api("/projects/#{project.id}/issues", user), labels: 'label, label2'
|
2015-04-26 12:48:37 +05:30
|
|
|
expect(response.status).to eq(400)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it 'should return 400 on invalid label names' do
|
|
|
|
post api("/projects/#{project.id}/issues", user),
|
|
|
|
title: 'new issue',
|
|
|
|
labels: 'label, ?'
|
2015-04-26 12:48:37 +05:30
|
|
|
expect(response.status).to eq(400)
|
|
|
|
expect(json_response['message']['labels']['?']['title']).to eq(['is invalid'])
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should return 400 if title is too long' do
|
|
|
|
post api("/projects/#{project.id}/issues", user),
|
|
|
|
title: 'g' * 256
|
|
|
|
expect(response.status).to eq(400)
|
|
|
|
expect(json_response['message']['title']).to eq([
|
|
|
|
'is too long (maximum is 255 characters)'
|
|
|
|
])
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "PUT /projects/:id/issues/:issue_id to update only title" do
|
|
|
|
it "should update a project issue" do
|
|
|
|
put api("/projects/#{project.id}/issues/#{issue.id}", user),
|
|
|
|
title: 'updated title'
|
2015-04-26 12:48:37 +05:30
|
|
|
expect(response.status).to eq(200)
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
expect(json_response['title']).to eq('updated title')
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it "should return 404 error if issue id not found" do
|
|
|
|
put api("/projects/#{project.id}/issues/44444", user),
|
|
|
|
title: 'updated title'
|
2015-04-26 12:48:37 +05:30
|
|
|
expect(response.status).to eq(404)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it 'should return 400 on invalid label names' do
|
|
|
|
put api("/projects/#{project.id}/issues/#{issue.id}", user),
|
|
|
|
title: 'updated title',
|
|
|
|
labels: 'label, ?'
|
2015-04-26 12:48:37 +05:30
|
|
|
expect(response.status).to eq(400)
|
|
|
|
expect(json_response['message']['labels']['?']['title']).to eq(['is invalid'])
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'PUT /projects/:id/issues/:issue_id to update labels' do
|
|
|
|
let!(:label) { create(:label, title: 'dummy', project: project) }
|
|
|
|
let!(:label_link) { create(:label_link, label: label, target: issue) }
|
|
|
|
|
|
|
|
it 'should not update labels if not present' do
|
|
|
|
put api("/projects/#{project.id}/issues/#{issue.id}", user),
|
|
|
|
title: 'updated title'
|
2015-04-26 12:48:37 +05:30
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(json_response['labels']).to eq([label.title])
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it 'should remove all labels' do
|
|
|
|
put api("/projects/#{project.id}/issues/#{issue.id}", user),
|
|
|
|
labels: ''
|
2015-04-26 12:48:37 +05:30
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(json_response['labels']).to eq([])
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it 'should update labels' do
|
|
|
|
put api("/projects/#{project.id}/issues/#{issue.id}", user),
|
|
|
|
labels: 'foo,bar'
|
2015-04-26 12:48:37 +05:30
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(json_response['labels']).to include 'foo'
|
|
|
|
expect(json_response['labels']).to include 'bar'
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it 'should return 400 on invalid label names' do
|
|
|
|
put api("/projects/#{project.id}/issues/#{issue.id}", user),
|
|
|
|
labels: 'label, ?'
|
2015-04-26 12:48:37 +05:30
|
|
|
expect(response.status).to eq(400)
|
|
|
|
expect(json_response['message']['labels']['?']['title']).to eq(['is invalid'])
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it 'should allow special label names' do
|
|
|
|
put api("/projects/#{project.id}/issues/#{issue.id}", user),
|
|
|
|
labels: 'label:foo, label-bar,label_bar,label/bar'
|
2015-04-26 12:48:37 +05:30
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(json_response['labels']).to include 'label:foo'
|
|
|
|
expect(json_response['labels']).to include 'label-bar'
|
|
|
|
expect(json_response['labels']).to include 'label_bar'
|
|
|
|
expect(json_response['labels']).to include 'label/bar'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should return 400 if title is too long' do
|
|
|
|
put api("/projects/#{project.id}/issues/#{issue.id}", user),
|
|
|
|
title: 'g' * 256
|
|
|
|
expect(response.status).to eq(400)
|
|
|
|
expect(json_response['message']['title']).to eq([
|
|
|
|
'is too long (maximum is 255 characters)'
|
|
|
|
])
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "PUT /projects/:id/issues/:issue_id to update state and label" do
|
|
|
|
it "should update a project issue" do
|
|
|
|
put api("/projects/#{project.id}/issues/#{issue.id}", user),
|
|
|
|
labels: 'label2', state_event: "close"
|
2015-04-26 12:48:37 +05:30
|
|
|
expect(response.status).to eq(200)
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
expect(json_response['labels']).to include 'label2'
|
|
|
|
expect(json_response['state']).to eq "closed"
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "DELETE /projects/:id/issues/:issue_id" do
|
|
|
|
it "should delete a project issue" do
|
|
|
|
delete api("/projects/#{project.id}/issues/#{issue.id}", user)
|
2015-04-26 12:48:37 +05:30
|
|
|
expect(response.status).to eq(405)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|