debian-mirror-gitlab/spec/requests/api/issues_spec.rb

1886 lines
66 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
require 'spec_helper'
2018-03-27 19:54:05 +05:30
describe API::Issues do
2017-08-17 22:00:37 +05:30
set(:user) { create(:user) }
set(:project) do
2017-09-10 17:25:29 +05:30
create(:project, :public, creator_id: user.id, namespace: user.namespace)
2017-08-17 22:00:37 +05:30
end
2016-09-29 09:46:39 +05:30
2016-06-02 11:05:42 +05:30
let(:user2) { create(:user) }
let(:non_member) { create(:user) }
2017-08-17 22:00:37 +05:30
set(:guest) { create(:user) }
set(:author) { create(:author) }
set(:assignee) { create(:assignee) }
2016-06-02 11:05:42 +05:30
let(:admin) { create(:user, :admin) }
2017-08-17 22:00:37 +05:30
let(:issue_title) { 'foo' }
let(:issue_description) { 'closed' }
2015-04-26 12:48:37 +05:30
let!(:closed_issue) do
create :closed_issue,
author: user,
2017-08-17 22:00:37 +05:30
assignees: [user],
2015-04-26 12:48:37 +05:30
project: project,
state: :closed,
2016-09-29 09:46:39 +05:30
milestone: milestone,
2017-08-17 22:00:37 +05:30
created_at: generate(:past_time),
2018-03-17 18:26:18 +05:30
updated_at: 3.hours.ago,
closed_at: 1.hour.ago
2015-04-26 12:48:37 +05:30
end
2016-06-02 11:05:42 +05:30
let!(:confidential_issue) do
create :issue,
:confidential,
project: project,
author: author,
2017-08-17 22:00:37 +05:30
assignees: [assignee],
created_at: generate(:past_time),
2016-09-29 09:46:39 +05:30
updated_at: 2.hours.ago
2016-06-02 11:05:42 +05:30
end
2015-04-26 12:48:37 +05:30
let!(:issue) do
create :issue,
author: user,
2017-08-17 22:00:37 +05:30
assignees: [user],
2015-04-26 12:48:37 +05:30
project: project,
2016-09-29 09:46:39 +05:30
milestone: milestone,
2017-08-17 22:00:37 +05:30
created_at: generate(:past_time),
updated_at: 1.hour.ago,
title: issue_title,
description: issue_description
2015-04-26 12:48:37 +05:30
end
2017-08-17 22:00:37 +05:30
set(:label) do
2014-09-02 18:07:02 +05:30
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) }
2017-08-17 22:00:37 +05:30
set(:milestone) { create(:milestone, title: '1.0.0', project: project) }
set(:empty_milestone) do
2015-04-26 12:48:37 +05:30
create(:milestone, title: '2.0.0', project: project)
end
2016-06-02 11:05:42 +05:30
let!(:note) { create(:note_on_issue, author: user, project: project, noteable: issue) }
2014-09-02 18:07:02 +05:30
2018-12-13 13:39:08 +05:30
let(:no_milestone_title) { "None" }
let(:any_milestone_title) { "Any" }
2017-08-17 22:00:37 +05:30
before(:all) do
2018-03-17 18:26:18 +05:30
project.add_reporter(user)
project.add_guest(guest)
end
2014-09-02 18:07:02 +05:30
describe "GET /issues" do
context "when unauthenticated" do
2018-11-08 19:23:39 +05:30
it "returns an array of all issues" do
2019-02-15 15:39:39 +05:30
get api("/issues"), params: { scope: 'all' }
2018-11-08 19:23:39 +05:30
expect(response).to have_http_status(200)
expect(json_response).to be_an Array
end
it "returns authentication error without any scope" do
2014-09-02 18:07:02 +05:30
get api("/issues")
2017-08-17 22:00:37 +05:30
2018-11-08 19:23:39 +05:30
expect(response).to have_http_status(401)
end
it "returns authentication error when scope is assigned-to-me" do
2019-02-15 15:39:39 +05:30
get api("/issues"), params: { scope: 'assigned-to-me' }
2018-11-08 19:23:39 +05:30
expect(response).to have_http_status(401)
end
it "returns authentication error when scope is created-by-me" do
2019-02-15 15:39:39 +05:30
get api("/issues"), params: { scope: 'created-by-me' }
2018-11-08 19:23:39 +05:30
expect(response).to have_http_status(401)
2014-09-02 18:07:02 +05:30
end
end
2018-11-08 19:23:39 +05:30
2014-09-02 18:07:02 +05:30
context "when authenticated" do
2016-09-13 17:45:13 +05:30
it "returns an array of issues" do
2014-09-02 18:07:02 +05:30
get api("/issues", user)
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([issue.id, closed_issue.id])
2015-04-26 12:48:37 +05:30
expect(json_response.first['title']).to eq(issue.title)
2016-09-29 09:46:39 +05:30
expect(json_response.last).to have_key('web_url')
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns an array of closed issues' do
2019-02-15 15:39:39 +05:30
get api('/issues', user), params: { state: :closed }
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(closed_issue.id)
2015-04-26 12:48:37 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns an array of opened issues' do
2019-02-15 15:39:39 +05:30
get api('/issues', user), params: { state: :opened }
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(issue.id)
2015-04-26 12:48:37 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns an array of all issues' do
2019-02-15 15:39:39 +05:30
get api('/issues', user), params: { state: :all }
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([issue.id, closed_issue.id])
2015-04-26 12:48:37 +05:30
end
2017-09-10 17:25:29 +05:30
it 'returns issues assigned to me' do
issue2 = create(:issue, assignees: [user2], project: project)
2019-02-15 15:39:39 +05:30
get api('/issues', user2), params: { scope: 'assigned_to_me' }
2018-11-08 19:23:39 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(issue2.id)
2018-11-08 19:23:39 +05:30
end
it 'returns issues assigned to me (kebab-case)' do
issue2 = create(:issue, assignees: [user2], project: project)
2019-02-15 15:39:39 +05:30
get api('/issues', user2), params: { scope: 'assigned-to-me' }
2017-09-10 17:25:29 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(issue2.id)
2017-09-10 17:25:29 +05:30
end
it 'returns issues authored by the given author id' do
issue2 = create(:issue, author: user2, project: project)
2019-02-15 15:39:39 +05:30
get api('/issues', user), params: { author_id: user2.id, scope: 'all' }
2017-09-10 17:25:29 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(issue2.id)
2017-09-10 17:25:29 +05:30
end
it 'returns issues assigned to the given assignee id' do
issue2 = create(:issue, assignees: [user2], project: project)
2019-02-15 15:39:39 +05:30
get api('/issues', user), params: { assignee_id: user2.id, scope: 'all' }
2017-09-10 17:25:29 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(issue2.id)
2017-09-10 17:25:29 +05:30
end
it 'returns issues authored by the given author id and assigned to the given assignee id' do
issue2 = create(:issue, author: user2, assignees: [user2], project: project)
2019-02-15 15:39:39 +05:30
get api('/issues', user), params: { author_id: user2.id, assignee_id: user2.id, scope: 'all' }
2017-09-10 17:25:29 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(issue2.id)
2017-09-10 17:25:29 +05:30
end
2018-12-05 23:21:45 +05:30
it 'returns issues with no assignee' do
issue2 = create(:issue, author: user2, project: project)
2019-02-15 15:39:39 +05:30
get api('/issues', user), params: { assignee_id: 0, scope: 'all' }
2018-12-05 23:21:45 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(issue2.id)
2018-12-05 23:21:45 +05:30
end
2018-12-13 13:39:08 +05:30
it 'returns issues with no assignee' do
issue2 = create(:issue, author: user2, project: project)
2018-03-17 18:26:18 +05:30
2019-02-15 15:39:39 +05:30
get api('/issues', user), params: { assignee_id: 'None', scope: 'all' }
2018-03-17 18:26:18 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(issue2.id)
2018-03-17 18:26:18 +05:30
end
2018-12-13 13:39:08 +05:30
it 'returns issues with any assignee' do
# This issue without assignee should not be returned
create(:issue, author: user2, project: project)
2019-02-15 15:39:39 +05:30
get api('/issues', user), params: { assignee_id: 'Any', scope: 'all' }
2018-12-13 13:39:08 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([issue.id, confidential_issue.id, closed_issue.id])
2018-12-13 13:39:08 +05:30
end
it 'returns issues reacted by the authenticated user' do
issue2 = create(:issue, project: project, author: user, assignees: [user])
create(:award_emoji, awardable: issue2, user: user2, name: 'star')
create(:award_emoji, awardable: issue, user: user2, name: 'thumbsup')
2019-02-15 15:39:39 +05:30
get api('/issues', user2), params: { my_reaction_emoji: 'Any', scope: 'all' }
2018-12-13 13:39:08 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([issue2.id, issue.id])
2018-12-13 13:39:08 +05:30
end
it 'returns issues not reacted by the authenticated user' do
issue2 = create(:issue, project: project, author: user, assignees: [user])
create(:award_emoji, awardable: issue2, user: user2, name: 'star')
2019-02-15 15:39:39 +05:30
get api('/issues', user2), params: { my_reaction_emoji: 'None', scope: 'all' }
2018-12-13 13:39:08 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([issue.id, closed_issue.id])
2018-12-13 13:39:08 +05:30
end
2017-08-17 22:00:37 +05:30
it 'returns issues matching given search string for title' do
2019-02-15 15:39:39 +05:30
get api("/issues", user), params: { search: issue.title }
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(issue.id)
end
it 'returns issues matching given search string for title and scoped in title' do
get api("/issues", user), params: { search: issue.title, in: 'title' }
expect_paginated_array_response(issue.id)
end
it 'returns an empty array if no issue matches given search string for title and scoped in description' do
get api("/issues", user), params: { search: issue.title, in: 'description' }
expect_paginated_array_response([])
2017-08-17 22:00:37 +05:30
end
it 'returns issues matching given search string for description' do
2019-02-15 15:39:39 +05:30
get api("/issues", user), params: { search: issue.description }
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(issue.id)
2017-08-17 22:00:37 +05:30
end
2018-03-27 19:54:05 +05:30
context 'filtering before a specific date' do
let!(:issue2) { create(:issue, project: project, author: user, created_at: Date.new(2000, 1, 1), updated_at: Date.new(2000, 1, 1)) }
it 'returns issues created before a specific date' do
get api('/issues?created_before=2000-01-02T00:00:00.060Z', user)
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(issue2.id)
2018-03-27 19:54:05 +05:30
end
it 'returns issues updated before a specific date' do
get api('/issues?updated_before=2000-01-02T00:00:00.060Z', user)
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(issue2.id)
2018-03-27 19:54:05 +05:30
end
end
context 'filtering after a specific date' do
let!(:issue2) { create(:issue, project: project, author: user, created_at: 1.week.from_now, updated_at: 1.week.from_now) }
it 'returns issues created after a specific date' do
get api("/issues?created_after=#{issue2.created_at}", user)
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(issue2.id)
2018-03-27 19:54:05 +05:30
end
it 'returns issues updated after a specific date' do
get api("/issues?updated_after=#{issue2.updated_at}", user)
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(issue2.id)
2018-03-27 19:54:05 +05:30
end
end
2016-09-13 17:45:13 +05:30
it 'returns an array of labeled issues' do
2019-02-15 15:39:39 +05:30
get api("/issues", user), params: { labels: label.title }
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(issue.id)
expect(json_response.first['labels']).to eq([label.title])
2015-04-26 12:48:37 +05:30
end
2017-08-17 22:00:37 +05:30
it 'returns an array of labeled issues when all labels matches' do
label_b = create(:label, title: 'foo', project: project)
label_c = create(:label, title: 'bar', project: project)
create(:label_link, label: label_b, target: issue)
create(:label_link, label: label_c, target: issue)
2019-02-15 15:39:39 +05:30
get api("/issues", user), params: { labels: "#{label.title},#{label_b.title},#{label_c.title}" }
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(issue.id)
2017-08-17 22:00:37 +05:30
expect(json_response.first['labels']).to eq([label_c.title, label_b.title, label.title])
2015-04-26 12:48:37 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns an empty array if no issue matches labels' do
2019-02-15 15:39:39 +05:30
get api('/issues', user), params: { labels: 'foo,bar' }
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([])
2015-04-26 12:48:37 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns an array of labeled issues matching given state' do
2019-02-15 15:39:39 +05:30
get api("/issues", user), params: { labels: label.title, state: :opened }
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(issue.id)
2015-04-26 12:48:37 +05:30
expect(json_response.first['labels']).to eq([label.title])
expect(json_response.first['state']).to eq('opened')
end
2019-02-15 15:39:39 +05:30
it 'returns an empty array if no issue matches labels and state filters' do
get api("/issues", user), params: { labels: label.title, state: :closed }
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([])
2019-02-15 15:39:39 +05:30
end
it 'returns an array of issues with any label' do
get api("/issues", user), params: { labels: IssuesFinder::FILTER_ANY }
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(issue.id)
2017-08-17 22:00:37 +05:30
end
2019-02-15 15:39:39 +05:30
it 'returns an array of issues with no label' do
get api("/issues", user), params: { labels: IssuesFinder::FILTER_NONE }
2018-12-23 12:14:25 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(closed_issue.id)
2019-02-15 15:39:39 +05:30
end
it 'returns an array of issues with no label when using the legacy No+Label filter' do
get api("/issues", user), params: { labels: "No Label" }
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(closed_issue.id)
2017-08-17 22:00:37 +05:30
end
it 'returns an empty array if no issue matches milestone' do
get api("/issues?milestone=#{empty_milestone.title}", user)
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([])
2017-08-17 22:00:37 +05:30
end
it 'returns an empty array if milestone does not exist' do
get api("/issues?milestone=foo", user)
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([])
2017-08-17 22:00:37 +05:30
end
it 'returns an array of issues in given milestone' do
get api("/issues?milestone=#{milestone.title}", user)
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([issue.id, closed_issue.id])
2017-08-17 22:00:37 +05:30
end
it 'returns an array of issues matching state in milestone' do
get api("/issues?milestone=#{milestone.title}"\
'&state=closed', user)
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(closed_issue.id)
2017-08-17 22:00:37 +05:30
end
it 'returns an array of issues with no milestone' do
get api("/issues?milestone=#{no_milestone_title}", author)
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(confidential_issue.id)
2017-08-17 22:00:37 +05:30
end
it 'returns an array of issues found by iids' do
2019-02-15 15:39:39 +05:30
get api('/issues', user), params: { iids: [closed_issue.iid] }
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(closed_issue.id)
2017-08-17 22:00:37 +05:30
end
it 'returns an empty array if iid does not exist' do
2019-02-15 15:39:39 +05:30
get api("/issues", user), params: { iids: [99999] }
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([])
2014-09-02 18:07:02 +05:30
end
2016-09-29 09:46:39 +05:30
it 'sorts by created_at descending by default' do
get api('/issues', user)
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([issue.id, closed_issue.id])
2016-09-29 09:46:39 +05:30
end
it 'sorts ascending when requested' do
get api('/issues?sort=asc', user)
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([closed_issue.id, issue.id])
2016-09-29 09:46:39 +05:30
end
it 'sorts by updated_at descending when requested' do
get api('/issues?order_by=updated_at', user)
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
issue.touch(:updated_at)
2016-09-29 09:46:39 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([issue.id, closed_issue.id])
2016-09-29 09:46:39 +05:30
end
it 'sorts by updated_at ascending when requested' do
get api('/issues?order_by=updated_at&sort=asc', user)
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
issue.touch(:updated_at)
2016-09-29 09:46:39 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([closed_issue.id, issue.id])
2016-09-29 09:46:39 +05:30
end
2017-08-17 22:00:37 +05:30
it 'matches V4 response schema' do
get api('/issues', user)
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(200)
2017-08-17 22:00:37 +05:30
expect(response).to match_response_schema('public_api/v4/issues')
end
2014-09-02 18:07:02 +05:30
end
end
2016-08-24 12:49:21 +05:30
describe "GET /groups/:id/issues" do
let!(:group) { create(:group) }
2017-09-10 17:25:29 +05:30
let!(:group_project) { create(:project, :public, creator_id: user.id, namespace: group) }
2016-08-24 12:49:21 +05:30
let!(:group_closed_issue) do
create :closed_issue,
author: user,
2017-08-17 22:00:37 +05:30
assignees: [user],
2016-08-24 12:49:21 +05:30
project: group_project,
state: :closed,
2016-09-29 09:46:39 +05:30
milestone: group_milestone,
2019-03-02 22:35:43 +05:30
updated_at: 3.hours.ago,
created_at: 1.day.ago
2016-08-24 12:49:21 +05:30
end
let!(:group_confidential_issue) do
create :issue,
:confidential,
project: group_project,
author: author,
2017-08-17 22:00:37 +05:30
assignees: [assignee],
2019-03-02 22:35:43 +05:30
updated_at: 2.hours.ago,
created_at: 2.days.ago
2016-08-24 12:49:21 +05:30
end
let!(:group_issue) do
create :issue,
author: user,
2017-08-17 22:00:37 +05:30
assignees: [user],
2016-08-24 12:49:21 +05:30
project: group_project,
2016-09-29 09:46:39 +05:30
milestone: group_milestone,
2017-08-17 22:00:37 +05:30
updated_at: 1.hour.ago,
title: issue_title,
2019-03-02 22:35:43 +05:30
description: issue_description,
created_at: 5.days.ago
2016-08-24 12:49:21 +05:30
end
let!(:group_label) do
create(:label, title: 'group_lbl', color: '#FFAABB', project: group_project)
end
let!(:group_label_link) { create(:label_link, label: group_label, target: group_issue) }
let!(:group_milestone) { create(:milestone, title: '3.0.0', project: group_project) }
let!(:group_empty_milestone) do
create(:milestone, title: '4.0.0', project: group_project)
end
let!(:group_note) { create(:note_on_issue, author: user, project: group_project, noteable: group_issue) }
let(:base_url) { "/groups/#{group.id}/issues" }
2018-05-09 12:01:36 +05:30
context 'when group has subgroups', :nested_groups do
let(:subgroup_1) { create(:group, parent: group) }
let(:subgroup_2) { create(:group, parent: subgroup_1) }
let(:subgroup_1_project) { create(:project, namespace: subgroup_1) }
let(:subgroup_2_project) { create(:project, namespace: subgroup_2) }
let!(:issue_1) { create(:issue, project: subgroup_1_project) }
let!(:issue_2) { create(:issue, project: subgroup_2_project) }
before do
group.add_developer(user)
end
it 'also returns subgroups projects issues' do
get api(base_url, user)
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([issue_2.id, issue_1.id, group_closed_issue.id, group_confidential_issue.id, group_issue.id])
2018-05-09 12:01:36 +05:30
end
end
2018-11-08 19:23:39 +05:30
context 'when user is unauthenticated' do
it 'lists all issues in public projects' do
get api(base_url)
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([group_closed_issue.id, group_issue.id])
2018-11-08 19:23:39 +05:30
end
2017-08-17 22:00:37 +05:30
end
2018-11-08 19:23:39 +05:30
context 'when user is a group member' do
before do
group_project.add_reporter(user)
end
2016-08-24 12:49:21 +05:30
2018-11-08 19:23:39 +05:30
it 'returns all group issues (including opened and closed)' do
get api(base_url, admin)
2016-08-24 12:49:21 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([group_closed_issue.id, group_confidential_issue.id, group_issue.id])
2018-11-08 19:23:39 +05:30
end
2016-08-24 12:49:21 +05:30
2018-11-08 19:23:39 +05:30
it 'returns group issues without confidential issues for non project members' do
2019-02-15 15:39:39 +05:30
get api(base_url, non_member), params: { state: :opened }
2016-08-24 12:49:21 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(group_issue.id)
2018-11-08 19:23:39 +05:30
end
2016-08-24 12:49:21 +05:30
2018-11-08 19:23:39 +05:30
it 'returns group confidential issues for author' do
2019-02-15 15:39:39 +05:30
get api(base_url, author), params: { state: :opened }
2016-08-24 12:49:21 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([group_confidential_issue.id, group_issue.id])
2018-11-08 19:23:39 +05:30
end
2016-08-24 12:49:21 +05:30
2018-11-08 19:23:39 +05:30
it 'returns group confidential issues for assignee' do
2019-02-15 15:39:39 +05:30
get api(base_url, assignee), params: { state: :opened }
2016-08-24 12:49:21 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([group_confidential_issue.id, group_issue.id])
2018-11-08 19:23:39 +05:30
end
2016-08-24 12:49:21 +05:30
2018-11-08 19:23:39 +05:30
it 'returns group issues with confidential issues for project members' do
2019-02-15 15:39:39 +05:30
get api(base_url, user), params: { state: :opened }
2016-08-24 12:49:21 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([group_confidential_issue.id, group_issue.id])
2018-11-08 19:23:39 +05:30
end
2016-08-24 12:49:21 +05:30
2018-11-08 19:23:39 +05:30
it 'returns group confidential issues for admin' do
2019-02-15 15:39:39 +05:30
get api(base_url, admin), params: { state: :opened }
2016-08-24 12:49:21 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([group_confidential_issue.id, group_issue.id])
2018-11-08 19:23:39 +05:30
end
2016-08-24 12:49:21 +05:30
2018-11-08 19:23:39 +05:30
it 'returns an array of labeled group issues' do
2019-02-15 15:39:39 +05:30
get api(base_url, user), params: { labels: group_label.title }
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(group_issue.id)
2018-11-08 19:23:39 +05:30
expect(json_response.first['labels']).to eq([group_label.title])
end
2017-08-17 22:00:37 +05:30
2018-11-08 19:23:39 +05:30
it 'returns an array of labeled group issues where all labels match' do
2019-02-15 15:39:39 +05:30
get api(base_url, user), params: { labels: "#{group_label.title},foo,bar" }
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([])
2018-11-08 19:23:39 +05:30
end
2017-08-17 22:00:37 +05:30
2018-11-08 19:23:39 +05:30
it 'returns issues matching given search string for title' do
2019-02-15 15:39:39 +05:30
get api(base_url, user), params: { search: group_issue.title }
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(group_issue.id)
2018-11-08 19:23:39 +05:30
end
2017-08-17 22:00:37 +05:30
2018-11-08 19:23:39 +05:30
it 'returns issues matching given search string for description' do
2019-02-15 15:39:39 +05:30
get api(base_url, user), params: { search: group_issue.description }
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(group_issue.id)
2018-11-08 19:23:39 +05:30
end
2017-08-17 22:00:37 +05:30
2018-11-08 19:23:39 +05:30
it 'returns an array of labeled issues when all labels matches' do
label_b = create(:label, title: 'foo', project: group_project)
label_c = create(:label, title: 'bar', project: group_project)
2017-08-17 22:00:37 +05:30
2018-11-08 19:23:39 +05:30
create(:label_link, label: label_b, target: group_issue)
create(:label_link, label: label_c, target: group_issue)
2017-08-17 22:00:37 +05:30
2019-02-15 15:39:39 +05:30
get api(base_url, user), params: { labels: "#{group_label.title},#{label_b.title},#{label_c.title}" }
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(group_issue.id)
2018-11-08 19:23:39 +05:30
expect(json_response.first['labels']).to eq([label_c.title, label_b.title, group_label.title])
end
2017-08-17 22:00:37 +05:30
2018-11-08 19:23:39 +05:30
it 'returns an array of issues found by iids' do
2019-02-15 15:39:39 +05:30
get api(base_url, user), params: { iids: [group_issue.iid] }
2016-08-24 12:49:21 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(group_issue.id)
2018-11-08 19:23:39 +05:30
expect(json_response.first['id']).to eq(group_issue.id)
end
2016-08-24 12:49:21 +05:30
2018-11-08 19:23:39 +05:30
it 'returns an empty array if iid does not exist' do
2019-02-15 15:39:39 +05:30
get api(base_url, user), params: { iids: [99999] }
2016-08-24 12:49:21 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([])
2018-11-08 19:23:39 +05:30
end
2016-08-24 12:49:21 +05:30
2018-11-08 19:23:39 +05:30
it 'returns an empty array if no group issue matches labels' do
2019-02-15 15:39:39 +05:30
get api(base_url, user), params: { labels: 'foo,bar' }
2016-08-24 12:49:21 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([])
2018-11-08 19:23:39 +05:30
end
2016-08-24 12:49:21 +05:30
2019-02-15 15:39:39 +05:30
it 'returns an array of group issues with any label' do
get api(base_url, user), params: { labels: IssuesFinder::FILTER_ANY }
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(group_issue.id)
2019-02-15 15:39:39 +05:30
expect(json_response.first['id']).to eq(group_issue.id)
end
it 'returns an array of group issues with no label' do
get api(base_url, user), params: { labels: IssuesFinder::FILTER_NONE }
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([group_closed_issue.id, group_confidential_issue.id])
2019-02-15 15:39:39 +05:30
end
2018-11-08 19:23:39 +05:30
it 'returns an empty array if no issue matches milestone' do
2019-02-15 15:39:39 +05:30
get api(base_url, user), params: { milestone: group_empty_milestone.title }
2016-08-24 12:49:21 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([])
2018-11-08 19:23:39 +05:30
end
2016-08-24 12:49:21 +05:30
2018-11-08 19:23:39 +05:30
it 'returns an empty array if milestone does not exist' do
2019-02-15 15:39:39 +05:30
get api(base_url, user), params: { milestone: 'foo' }
2016-08-24 12:49:21 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([])
2018-11-08 19:23:39 +05:30
end
2016-08-24 12:49:21 +05:30
2018-11-08 19:23:39 +05:30
it 'returns an array of issues in given milestone' do
2019-02-15 15:39:39 +05:30
get api(base_url, user), params: { state: :opened, milestone: group_milestone.title }
2016-09-29 09:46:39 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(group_issue.id)
2018-11-08 19:23:39 +05:30
end
2017-08-17 22:00:37 +05:30
2018-11-08 19:23:39 +05:30
it 'returns an array of issues matching state in milestone' do
2019-02-15 15:39:39 +05:30
get api(base_url, user), params: { milestone: group_milestone.title, state: :closed }
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(group_closed_issue.id)
2018-11-08 19:23:39 +05:30
end
2017-08-17 22:00:37 +05:30
2018-11-08 19:23:39 +05:30
it 'returns an array of issues with no milestone' do
2019-02-15 15:39:39 +05:30
get api(base_url, user), params: { milestone: no_milestone_title }
2017-08-17 22:00:37 +05:30
2018-11-08 19:23:39 +05:30
expect(response).to have_gitlab_http_status(200)
2016-09-29 09:46:39 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(group_confidential_issue.id)
2018-11-08 19:23:39 +05:30
end
2016-09-29 09:46:39 +05:30
2018-11-08 19:23:39 +05:30
it 'sorts by created_at descending by default' do
get api(base_url, user)
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([group_closed_issue.id, group_confidential_issue.id, group_issue.id])
2018-11-08 19:23:39 +05:30
end
2016-09-29 09:46:39 +05:30
2018-11-08 19:23:39 +05:30
it 'sorts ascending when requested' do
get api("#{base_url}?sort=asc", user)
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([group_issue.id, group_confidential_issue.id, group_closed_issue.id])
2018-11-08 19:23:39 +05:30
end
2016-09-29 09:46:39 +05:30
2018-11-08 19:23:39 +05:30
it 'sorts by updated_at descending when requested' do
get api("#{base_url}?order_by=updated_at", user)
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
group_issue.touch(:updated_at)
2016-09-29 09:46:39 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([group_issue.id, group_confidential_issue.id, group_closed_issue.id])
2018-11-08 19:23:39 +05:30
end
it 'sorts by updated_at ascending when requested' do
2019-02-15 15:39:39 +05:30
get api(base_url, user), params: { order_by: :updated_at, sort: :asc }
2018-11-08 19:23:39 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([group_closed_issue.id, group_confidential_issue.id, group_issue.id])
2018-11-08 19:23:39 +05:30
end
2016-09-29 09:46:39 +05:30
end
2016-08-24 12:49:21 +05:30
end
2014-09-02 18:07:02 +05:30
describe "GET /projects/:id/issues" do
2015-04-26 12:48:37 +05:30
let(:base_url) { "/projects/#{project.id}" }
2017-08-17 22:00:37 +05:30
2018-11-08 19:23:39 +05:30
context 'when unauthenticated' do
it 'returns public project issues' do
get api("/projects/#{project.id}/issues")
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([issue.id, closed_issue.id])
2018-11-08 19:23:39 +05:30
end
end
2018-03-17 18:26:18 +05:30
it 'avoids N+1 queries' do
2018-11-08 19:23:39 +05:30
get api("/projects/#{project.id}/issues", user)
control_count = ActiveRecord::QueryRecorder.new(skip_cached: false) do
2018-03-17 18:26:18 +05:30
get api("/projects/#{project.id}/issues", user)
end.count
2018-11-08 19:23:39 +05:30
create_list(:issue, 3, project: project)
2018-03-17 18:26:18 +05:30
expect do
get api("/projects/#{project.id}/issues", user)
2018-11-08 19:23:39 +05:30
end.not_to exceed_all_query_limit(control_count)
2018-03-17 18:26:18 +05:30
end
2017-08-17 22:00:37 +05:30
it 'returns 404 when project does not exist' do
get api('/projects/1000/issues', non_member)
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(404)
2017-08-17 22:00:37 +05:30
end
2015-04-26 12:48:37 +05:30
2017-01-15 13:20:01 +05:30
it "returns 404 on private projects for other users" do
2017-09-10 17:25:29 +05:30
private_project = create(:project, :private)
2017-01-15 13:20:01 +05:30
create(:issue, project: private_project)
get api("/projects/#{private_project.id}/issues", non_member)
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(404)
2017-01-15 13:20:01 +05:30
end
it 'returns no issues when user has access to project but not issues' do
2017-09-10 17:25:29 +05:30
restricted_project = create(:project, :public, :issues_private)
2017-01-15 13:20:01 +05:30
create(:issue, project: restricted_project)
get api("/projects/#{restricted_project.id}/issues", non_member)
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([])
2017-01-15 13:20:01 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns project issues without confidential issues for non project members' do
2016-06-02 11:05:42 +05:30
get api("#{base_url}/issues", non_member)
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([issue.id, closed_issue.id])
2016-06-02 11:05:42 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns project issues without confidential issues for project members with guest role' do
get api("#{base_url}/issues", guest)
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([issue.id, closed_issue.id])
end
2016-09-13 17:45:13 +05:30
it 'returns project confidential issues for author' do
2016-06-02 11:05:42 +05:30
get api("#{base_url}/issues", author)
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([issue.id, confidential_issue.id, closed_issue.id])
2016-06-02 11:05:42 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns project confidential issues for assignee' do
2016-06-02 11:05:42 +05:30
get api("#{base_url}/issues", assignee)
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([issue.id, confidential_issue.id, closed_issue.id])
2016-06-02 11:05:42 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns project issues with confidential issues for project members' do
2015-04-26 12:48:37 +05:30
get api("#{base_url}/issues", user)
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([issue.id, confidential_issue.id, closed_issue.id])
2016-06-02 11:05:42 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns project confidential issues for admin' do
2016-06-02 11:05:42 +05:30
get api("#{base_url}/issues", admin)
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([issue.id, confidential_issue.id, closed_issue.id])
2015-04-26 12:48:37 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns an array of labeled project issues' do
2019-02-15 15:39:39 +05:30
get api("#{base_url}/issues", user), params: { labels: label.title }
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(issue.id)
2015-04-26 12:48:37 +05:30
end
2017-08-17 22:00:37 +05:30
it 'returns an array of labeled issues when all labels matches' do
label_b = create(:label, title: 'foo', project: project)
label_c = create(:label, title: 'bar', project: project)
create(:label_link, label: label_b, target: issue)
create(:label_link, label: label_c, target: issue)
2019-02-15 15:39:39 +05:30
get api("#{base_url}/issues", user), params: { labels: "#{label.title},#{label_b.title},#{label_c.title}" }
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(issue.id)
2017-08-17 22:00:37 +05:30
end
it 'returns issues matching given search string for title' do
get api("#{base_url}/issues?search=#{issue.title}", user)
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(issue.id)
2017-08-17 22:00:37 +05:30
end
it 'returns issues matching given search string for description' do
get api("#{base_url}/issues?search=#{issue.description}", user)
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(issue.id)
2017-08-17 22:00:37 +05:30
end
it 'returns an array of issues found by iids' do
2019-02-15 15:39:39 +05:30
get api("#{base_url}/issues", user), params: { iids: [issue.iid] }
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(issue.id)
2017-08-17 22:00:37 +05:30
end
it 'returns an empty array if iid does not exist' do
2019-02-15 15:39:39 +05:30
get api("#{base_url}/issues", user), params: { iids: [99999] }
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([])
2017-08-17 22:00:37 +05:30
end
it 'returns an empty array if not all labels matches' do
get api("#{base_url}/issues?labels=#{label.title},foo", user)
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([])
2015-04-26 12:48:37 +05:30
end
2019-02-15 15:39:39 +05:30
it 'returns an array of project issues with any label' do
get api("#{base_url}/issues", user), params: { labels: IssuesFinder::FILTER_ANY }
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(issue.id)
2019-02-15 15:39:39 +05:30
end
it 'returns an array of project issues with no label' do
get api("#{base_url}/issues", user), params: { labels: IssuesFinder::FILTER_NONE }
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([confidential_issue.id, closed_issue.id])
2019-02-15 15:39:39 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns an empty array if no project issue matches labels' do
2019-02-15 15:39:39 +05:30
get api("#{base_url}/issues", user), params: { labels: 'foo,bar' }
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([])
2015-04-26 12:48:37 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns an empty array if no issue matches milestone' do
2019-02-15 15:39:39 +05:30
get api("#{base_url}/issues", user), params: { milestone: empty_milestone.title }
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([])
2015-04-26 12:48:37 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns an empty array if milestone does not exist' do
2019-02-15 15:39:39 +05:30
get api("#{base_url}/issues", user), params: { milestone: :foo }
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([])
2015-04-26 12:48:37 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns an array of issues in given milestone' do
2019-02-15 15:39:39 +05:30
get api("#{base_url}/issues", user), params: { milestone: milestone.title }
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([issue.id, closed_issue.id])
2015-04-26 12:48:37 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns an array of issues matching state in milestone' do
2019-02-15 15:39:39 +05:30
get api("#{base_url}/issues", user), params: { milestone: milestone.title, state: :closed }
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(closed_issue.id)
2014-09-02 18:07:02 +05:30
end
2016-09-29 09:46:39 +05:30
2017-08-17 22:00:37 +05:30
it 'returns an array of issues with no milestone' do
2019-02-15 15:39:39 +05:30
get api("#{base_url}/issues", user), params: { milestone: no_milestone_title }
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(confidential_issue.id)
2017-08-17 22:00:37 +05:30
end
2018-12-05 23:21:45 +05:30
it 'returns an array of issues with any milestone' do
2019-02-15 15:39:39 +05:30
get api("#{base_url}/issues", user), params: { milestone: any_milestone_title }
2018-12-05 23:21:45 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([issue.id, closed_issue.id])
2018-12-05 23:21:45 +05:30
end
2016-09-29 09:46:39 +05:30
it 'sorts by created_at descending by default' do
get api("#{base_url}/issues", user)
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([issue.id, confidential_issue.id, closed_issue.id])
2016-09-29 09:46:39 +05:30
end
it 'sorts ascending when requested' do
2019-02-15 15:39:39 +05:30
get api("#{base_url}/issues", user), params: { sort: :asc }
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([closed_issue.id, confidential_issue.id, issue.id])
2016-09-29 09:46:39 +05:30
end
it 'sorts by updated_at descending when requested' do
2019-02-15 15:39:39 +05:30
get api("#{base_url}/issues", user), params: { order_by: :updated_at }
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
issue.touch(:updated_at)
2016-09-29 09:46:39 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([issue.id, confidential_issue.id, closed_issue.id])
2016-09-29 09:46:39 +05:30
end
it 'sorts by updated_at ascending when requested' do
2019-02-15 15:39:39 +05:30
get api("#{base_url}/issues", user), params: { order_by: :updated_at, sort: :asc }
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([closed_issue.id, confidential_issue.id, issue.id])
2016-09-29 09:46:39 +05:30
end
2014-09-02 18:07:02 +05:30
end
2017-08-17 22:00:37 +05:30
describe "GET /projects/:id/issues/:issue_iid" do
2018-11-08 19:23:39 +05:30
context 'when unauthenticated' do
it 'returns public issues' do
get api("/projects/#{project.id}/issues/#{issue.iid}")
expect(response).to have_gitlab_http_status(200)
end
end
2016-06-02 11:05:42 +05:30
it 'exposes known attributes' do
2017-08-17 22:00:37 +05:30
get api("/projects/#{project.id}/issues/#{issue.iid}", user)
2016-06-02 11:05:42 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(200)
2016-06-02 11:05:42 +05:30
expect(json_response['id']).to eq(issue.id)
expect(json_response['iid']).to eq(issue.iid)
expect(json_response['project_id']).to eq(issue.project.id)
expect(json_response['title']).to eq(issue.title)
expect(json_response['description']).to eq(issue.description)
expect(json_response['state']).to eq(issue.state)
2018-03-17 18:26:18 +05:30
expect(json_response['closed_at']).to be_falsy
2016-06-02 11:05:42 +05:30
expect(json_response['created_at']).to be_present
expect(json_response['updated_at']).to be_present
expect(json_response['labels']).to eq(issue.label_names)
expect(json_response['milestone']).to be_a Hash
2017-08-17 22:00:37 +05:30
expect(json_response['assignees']).to be_a Array
2016-06-02 11:05:42 +05:30
expect(json_response['assignee']).to be_a Hash
expect(json_response['author']).to be_a Hash
2016-09-29 09:46:39 +05:30
expect(json_response['confidential']).to be_falsy
2016-06-02 11:05:42 +05:30
end
2018-03-17 18:26:18 +05:30
it "exposes the 'closed_at' attribute" do
get api("/projects/#{project.id}/issues/#{closed_issue.iid}", user)
expect(response).to have_gitlab_http_status(200)
expect(json_response['closed_at']).to be_present
end
2017-09-10 17:25:29 +05:30
context 'links exposure' do
it 'exposes related resources full URIs' do
get api("/projects/#{project.id}/issues/#{issue.iid}", user)
links = json_response['_links']
expect(links['self']).to end_with("/api/v4/projects/#{project.id}/issues/#{issue.iid}")
expect(links['notes']).to end_with("/api/v4/projects/#{project.id}/issues/#{issue.iid}/notes")
expect(links['award_emoji']).to end_with("/api/v4/projects/#{project.id}/issues/#{issue.iid}/award_emoji")
expect(links['project']).to end_with("/api/v4/projects/#{project.id}")
end
end
2017-08-17 22:00:37 +05:30
it "returns a project issue by internal id" do
get api("/projects/#{project.id}/issues/#{issue.iid}", user)
2016-06-02 11:05:42 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(200)
2015-04-26 12:48:37 +05:30
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
2016-09-13 17:45:13 +05:30
it "returns 404 if issue id not found" do
2014-09-02 18:07:02 +05:30
get api("/projects/#{project.id}/issues/54321", user)
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(404)
2014-09-02 18:07:02 +05:30
end
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
it "returns 404 if the issue ID is used" do
get api("/projects/#{project.id}/issues/#{issue.id}", user)
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(404)
2017-08-17 22:00:37 +05:30
end
2016-06-02 11:05:42 +05:30
context 'confidential issues' do
2016-09-13 17:45:13 +05:30
it "returns 404 for non project members" do
2017-08-17 22:00:37 +05:30
get api("/projects/#{project.id}/issues/#{confidential_issue.iid}", non_member)
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(404)
2016-06-02 11:05:42 +05:30
end
2016-09-13 17:45:13 +05:30
it "returns 404 for project members with guest role" do
2017-08-17 22:00:37 +05:30
get api("/projects/#{project.id}/issues/#{confidential_issue.iid}", guest)
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(404)
end
2016-09-13 17:45:13 +05:30
it "returns confidential issue for project members" do
2017-08-17 22:00:37 +05:30
get api("/projects/#{project.id}/issues/#{confidential_issue.iid}", user)
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(200)
2016-06-02 11:05:42 +05:30
expect(json_response['title']).to eq(confidential_issue.title)
expect(json_response['iid']).to eq(confidential_issue.iid)
end
2016-09-13 17:45:13 +05:30
it "returns confidential issue for author" do
2017-08-17 22:00:37 +05:30
get api("/projects/#{project.id}/issues/#{confidential_issue.iid}", author)
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(200)
2016-06-02 11:05:42 +05:30
expect(json_response['title']).to eq(confidential_issue.title)
expect(json_response['iid']).to eq(confidential_issue.iid)
end
2016-09-13 17:45:13 +05:30
it "returns confidential issue for assignee" do
2017-08-17 22:00:37 +05:30
get api("/projects/#{project.id}/issues/#{confidential_issue.iid}", assignee)
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(200)
2016-06-02 11:05:42 +05:30
expect(json_response['title']).to eq(confidential_issue.title)
expect(json_response['iid']).to eq(confidential_issue.iid)
end
2016-09-13 17:45:13 +05:30
it "returns confidential issue for admin" do
2017-08-17 22:00:37 +05:30
get api("/projects/#{project.id}/issues/#{confidential_issue.iid}", admin)
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(200)
2016-06-02 11:05:42 +05:30
expect(json_response['title']).to eq(confidential_issue.title)
expect(json_response['iid']).to eq(confidential_issue.iid)
end
end
2014-09-02 18:07:02 +05:30
end
describe "POST /projects/:id/issues" do
2017-08-17 22:00:37 +05:30
context 'support for deprecated assignee_id' do
it 'creates a new project issue' do
post api("/projects/#{project.id}/issues", user),
2019-02-15 15:39:39 +05:30
params: { title: 'new issue', assignee_id: user2.id }
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(201)
2017-08-17 22:00:37 +05:30
expect(json_response['title']).to eq('new issue')
expect(json_response['assignee']['name']).to eq(user2.name)
expect(json_response['assignees'].first['name']).to eq(user2.name)
end
2018-03-17 18:26:18 +05:30
it 'creates a new project issue when assignee_id is empty' do
post api("/projects/#{project.id}/issues", user),
2019-02-15 15:39:39 +05:30
params: { title: 'new issue', assignee_id: '' }
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(201)
expect(json_response['title']).to eq('new issue')
expect(json_response['assignee']).to be_nil
end
2017-08-17 22:00:37 +05:30
end
2017-09-10 17:25:29 +05:30
context 'single assignee restrictions' do
2017-08-17 22:00:37 +05:30
it 'creates a new project issue with no more than one assignee' do
post api("/projects/#{project.id}/issues", user),
2019-02-15 15:39:39 +05:30
params: { title: 'new issue', assignee_ids: [user2.id, guest.id] }
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(201)
2017-08-17 22:00:37 +05:30
expect(json_response['title']).to eq('new issue')
expect(json_response['assignees'].count).to eq(1)
end
end
2018-03-17 18:26:18 +05:30
context 'user does not have permissions to create issue' do
2019-03-02 22:35:43 +05:30
let(:not_member) { create(:user) }
2018-03-17 18:26:18 +05:30
before do
project.project_feature.update(issues_access_level: ProjectFeature::PRIVATE)
end
it 'renders 403' do
2019-02-15 15:39:39 +05:30
post api("/projects/#{project.id}/issues", not_member), params: { title: 'new issue' }
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(403)
end
end
2018-11-18 11:00:15 +05:30
context 'an internal ID is provided' do
context 'by an admin' do
it 'sets the internal ID on the new issue' do
post api("/projects/#{project.id}/issues", admin),
2019-02-15 15:39:39 +05:30
params: { title: 'new issue', iid: 9001 }
2018-11-18 11:00:15 +05:30
expect(response).to have_gitlab_http_status(201)
expect(json_response['iid']).to eq 9001
end
end
context 'by an owner' do
it 'sets the internal ID on the new issue' do
post api("/projects/#{project.id}/issues", user),
2019-02-15 15:39:39 +05:30
params: { title: 'new issue', iid: 9001 }
2018-11-18 11:00:15 +05:30
expect(response).to have_gitlab_http_status(201)
expect(json_response['iid']).to eq 9001
end
end
2018-11-20 20:47:30 +05:30
context 'by a group owner' do
let(:group) { create(:group) }
let(:group_project) { create(:project, :public, namespace: group) }
it 'sets the internal ID on the new issue' do
group.add_owner(user2)
post api("/projects/#{group_project.id}/issues", user2),
2019-02-15 15:39:39 +05:30
params: { title: 'new issue', iid: 9001 }
2018-11-20 20:47:30 +05:30
expect(response).to have_gitlab_http_status(201)
expect(json_response['iid']).to eq 9001
end
end
2018-11-18 11:00:15 +05:30
context 'by another user' do
it 'ignores the given internal ID' do
post api("/projects/#{project.id}/issues", user2),
2019-02-15 15:39:39 +05:30
params: { title: 'new issue', iid: 9001 }
2018-11-18 11:00:15 +05:30
expect(response).to have_gitlab_http_status(201)
expect(json_response['iid']).not_to eq 9001
end
end
end
2016-09-29 09:46:39 +05:30
it 'creates a new project issue' do
2014-09-02 18:07:02 +05:30
post api("/projects/#{project.id}/issues", user),
2019-02-15 15:39:39 +05:30
params: { title: 'new issue', labels: 'label, label2', weight: 3, assignee_ids: [user2.id] }
2016-09-29 09:46:39 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(201)
2015-04-26 12:48:37 +05:30
expect(json_response['title']).to eq('new issue')
expect(json_response['description']).to be_nil
2017-08-17 22:00:37 +05:30
expect(json_response['labels']).to eq(%w(label label2))
2016-09-29 09:46:39 +05:30
expect(json_response['confidential']).to be_falsy
2017-08-17 22:00:37 +05:30
expect(json_response['assignee']['name']).to eq(user2.name)
expect(json_response['assignees'].first['name']).to eq(user2.name)
2016-09-29 09:46:39 +05:30
end
it 'creates a new confidential project issue' do
post api("/projects/#{project.id}/issues", user),
2019-02-15 15:39:39 +05:30
params: { title: 'new issue', confidential: true }
2016-09-29 09:46:39 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(201)
2016-09-29 09:46:39 +05:30
expect(json_response['title']).to eq('new issue')
expect(json_response['confidential']).to be_truthy
end
it 'creates a new confidential project issue with a different param' do
post api("/projects/#{project.id}/issues", user),
2019-02-15 15:39:39 +05:30
params: { title: 'new issue', confidential: 'y' }
2016-09-29 09:46:39 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(201)
2016-09-29 09:46:39 +05:30
expect(json_response['title']).to eq('new issue')
expect(json_response['confidential']).to be_truthy
end
it 'creates a public issue when confidential param is false' do
post api("/projects/#{project.id}/issues", user),
2019-02-15 15:39:39 +05:30
params: { title: 'new issue', confidential: false }
2016-09-29 09:46:39 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(201)
2016-09-29 09:46:39 +05:30
expect(json_response['title']).to eq('new issue')
expect(json_response['confidential']).to be_falsy
end
it 'creates a public issue when confidential param is invalid' do
post api("/projects/#{project.id}/issues", user),
2019-02-15 15:39:39 +05:30
params: { title: 'new issue', confidential: 'foo' }
2016-09-29 09:46:39 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(400)
2017-08-17 22:00:37 +05:30
expect(json_response['error']).to eq('confidential is invalid')
2016-09-29 09:46:39 +05:30
end
2016-09-13 17:45:13 +05:30
it "returns a 400 bad request if title not given" do
2019-02-15 15:39:39 +05:30
post api("/projects/#{project.id}/issues", user), params: { labels: 'label, label2' }
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(400)
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it 'allows special label names' do
2014-09-02 18:07:02 +05:30
post api("/projects/#{project.id}/issues", user),
2019-02-15 15:39:39 +05:30
params: {
title: 'new issue',
labels: 'label, label?, label&foo, ?, &'
}
2016-08-24 12:49:21 +05:30
expect(response.status).to eq(201)
expect(json_response['labels']).to include 'label'
expect(json_response['labels']).to include 'label?'
expect(json_response['labels']).to include 'label&foo'
expect(json_response['labels']).to include '?'
expect(json_response['labels']).to include '&'
2015-04-26 12:48:37 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns 400 if title is too long' do
2015-04-26 12:48:37 +05:30
post api("/projects/#{project.id}/issues", user),
2019-02-15 15:39:39 +05:30
params: { title: 'g' * 256 }
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(400)
2015-04-26 12:48:37 +05:30
expect(json_response['message']['title']).to eq([
'is too long (maximum is 255 characters)'
])
2014-09-02 18:07:02 +05:30
end
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
context 'resolving discussions' do
let(:discussion) { create(:diff_note_on_merge_request).to_discussion }
let(:merge_request) { discussion.noteable }
let(:project) { merge_request.source_project }
before do
2018-11-18 11:00:15 +05:30
project.add_maintainer(user)
2017-08-17 22:00:37 +05:30
end
context 'resolving all discussions in a merge request' do
before do
post api("/projects/#{project.id}/issues", user),
2019-02-15 15:39:39 +05:30
params: {
title: 'New Issue',
merge_request_to_resolve_discussions_of: merge_request.iid
}
2017-08-17 22:00:37 +05:30
end
it_behaves_like 'creating an issue resolving discussions through the API'
end
context 'resolving a single discussion' do
before do
post api("/projects/#{project.id}/issues", user),
2019-02-15 15:39:39 +05:30
params: {
title: 'New Issue',
merge_request_to_resolve_discussions_of: merge_request.iid,
discussion_to_resolve: discussion.id
}
2017-08-17 22:00:37 +05:30
end
it_behaves_like 'creating an issue resolving discussions through the API'
end
end
2016-08-24 12:49:21 +05:30
context 'with due date' do
it 'creates a new project issue' do
due_date = 2.weeks.from_now.strftime('%Y-%m-%d')
post api("/projects/#{project.id}/issues", user),
2019-02-15 15:39:39 +05:30
params: { title: 'new issue', due_date: due_date }
2016-08-24 12:49:21 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(201)
2016-08-24 12:49:21 +05:30
expect(json_response['title']).to eq('new issue')
expect(json_response['description']).to be_nil
expect(json_response['due_date']).to eq(due_date)
end
end
2018-11-20 20:47:30 +05:30
context 'setting created_at' do
let(:creation_time) { 2.weeks.ago }
let(:params) { { title: 'new issue', labels: 'label, label2', created_at: creation_time } }
2016-06-02 11:05:42 +05:30
2018-11-20 20:47:30 +05:30
context 'by an admin' do
it 'sets the creation time on the new issue' do
2019-02-15 15:39:39 +05:30
post api("/projects/#{project.id}/issues", admin), params: params
2018-11-20 20:47:30 +05:30
expect(response).to have_gitlab_http_status(201)
expect(Time.parse(json_response['created_at'])).to be_like_time(creation_time)
end
end
context 'by a project owner' do
it 'sets the creation time on the new issue' do
2019-02-15 15:39:39 +05:30
post api("/projects/#{project.id}/issues", user), params: params
2018-11-20 20:47:30 +05:30
expect(response).to have_gitlab_http_status(201)
expect(Time.parse(json_response['created_at'])).to be_like_time(creation_time)
end
end
context 'by a group owner' do
it 'sets the creation time on the new issue' do
group = create(:group)
group_project = create(:project, :public, namespace: group)
group.add_owner(user2)
2019-02-15 15:39:39 +05:30
post api("/projects/#{group_project.id}/issues", user2), params: params
2018-11-20 20:47:30 +05:30
expect(response).to have_gitlab_http_status(201)
expect(Time.parse(json_response['created_at'])).to be_like_time(creation_time)
end
end
context 'by another user' do
it 'ignores the given creation time' do
2019-02-15 15:39:39 +05:30
post api("/projects/#{project.id}/issues", user2), params: params
2018-11-20 20:47:30 +05:30
expect(response).to have_gitlab_http_status(201)
expect(Time.parse(json_response['created_at'])).not_to be_like_time(creation_time)
end
2016-06-02 11:05:42 +05:30
end
end
2017-01-15 13:20:01 +05:30
context 'the user can only read the issue' do
it 'cannot create new labels' do
expect do
2019-02-15 15:39:39 +05:30
post api("/projects/#{project.id}/issues", non_member), params: { title: 'new issue', labels: 'label, label2' }
2017-01-15 13:20:01 +05:30
end.not_to change { project.labels.count }
end
end
2014-09-02 18:07:02 +05:30
end
2016-04-02 18:10:28 +05:30
describe 'POST /projects/:id/issues with spam filtering' do
before do
2016-09-13 17:45:13 +05:30
allow_any_instance_of(SpamService).to receive(:check_for_spam?).and_return(true)
2018-03-17 18:26:18 +05:30
allow_any_instance_of(AkismetService).to receive_messages(spam?: true)
2016-04-02 18:10:28 +05:30
end
let(:params) do
{
title: 'new issue',
description: 'content here',
labels: 'label, label2'
}
end
2016-09-13 17:45:13 +05:30
it "does not create a new project issue" do
2019-02-15 15:39:39 +05:30
expect { post api("/projects/#{project.id}/issues", user), params: params }.not_to change(Issue, :count)
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(400)
2016-04-02 18:10:28 +05:30
expect(json_response['message']).to eq({ "error" => "Spam detected" })
spam_logs = SpamLog.all
expect(spam_logs.count).to eq(1)
expect(spam_logs[0].title).to eq('new issue')
expect(spam_logs[0].description).to eq('content here')
expect(spam_logs[0].user).to eq(user)
expect(spam_logs[0].noteable_type).to eq('Issue')
end
end
2017-08-17 22:00:37 +05:30
describe "PUT /projects/:id/issues/:issue_iid to update only title" do
2016-09-13 17:45:13 +05:30
it "updates a project issue" do
2017-08-17 22:00:37 +05:30
put api("/projects/#{project.id}/issues/#{issue.iid}", user),
2019-02-15 15:39:39 +05:30
params: { title: 'updated title' }
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(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
2017-08-17 22:00:37 +05:30
it "returns 404 error if issue iid not found" do
2014-09-02 18:07:02 +05:30
put api("/projects/#{project.id}/issues/44444", user),
2019-02-15 15:39:39 +05:30
params: { title: 'updated title' }
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(404)
2014-09-02 18:07:02 +05:30
end
2017-08-17 22:00:37 +05:30
it "returns 404 error if issue id is used instead of the iid" do
2014-09-02 18:07:02 +05:30
put api("/projects/#{project.id}/issues/#{issue.id}", user),
2019-02-15 15:39:39 +05:30
params: { title: 'updated title' }
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(404)
2017-08-17 22:00:37 +05:30
end
it 'allows special label names' do
put api("/projects/#{project.id}/issues/#{issue.iid}", user),
2019-02-15 15:39:39 +05:30
params: {
title: 'updated title',
labels: 'label, label?, label&foo, ?, &'
}
2016-08-24 12:49:21 +05:30
expect(response.status).to eq(200)
expect(json_response['labels']).to include 'label'
expect(json_response['labels']).to include 'label?'
expect(json_response['labels']).to include 'label&foo'
expect(json_response['labels']).to include '?'
expect(json_response['labels']).to include '&'
2014-09-02 18:07:02 +05:30
end
2016-06-02 11:05:42 +05:30
context 'confidential issues' do
2016-09-13 17:45:13 +05:30
it "returns 403 for non project members" do
2017-08-17 22:00:37 +05:30
put api("/projects/#{project.id}/issues/#{confidential_issue.iid}", non_member),
2019-02-15 15:39:39 +05:30
params: { title: 'updated title' }
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(403)
2016-06-02 11:05:42 +05:30
end
2016-09-13 17:45:13 +05:30
it "returns 403 for project members with guest role" do
2017-08-17 22:00:37 +05:30
put api("/projects/#{project.id}/issues/#{confidential_issue.iid}", guest),
2019-02-15 15:39:39 +05:30
params: { title: 'updated title' }
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(403)
end
2016-09-13 17:45:13 +05:30
it "updates a confidential issue for project members" do
2017-08-17 22:00:37 +05:30
put api("/projects/#{project.id}/issues/#{confidential_issue.iid}", user),
2019-02-15 15:39:39 +05:30
params: { title: 'updated title' }
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(200)
2016-06-02 11:05:42 +05:30
expect(json_response['title']).to eq('updated title')
end
2016-09-13 17:45:13 +05:30
it "updates a confidential issue for author" do
2017-08-17 22:00:37 +05:30
put api("/projects/#{project.id}/issues/#{confidential_issue.iid}", author),
2019-02-15 15:39:39 +05:30
params: { title: 'updated title' }
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(200)
2016-06-02 11:05:42 +05:30
expect(json_response['title']).to eq('updated title')
end
2016-09-13 17:45:13 +05:30
it "updates a confidential issue for admin" do
2017-08-17 22:00:37 +05:30
put api("/projects/#{project.id}/issues/#{confidential_issue.iid}", admin),
2019-02-15 15:39:39 +05:30
params: { title: 'updated title' }
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(200)
2016-06-02 11:05:42 +05:30
expect(json_response['title']).to eq('updated title')
end
2016-09-29 09:46:39 +05:30
it 'sets an issue to confidential' do
2017-08-17 22:00:37 +05:30
put api("/projects/#{project.id}/issues/#{issue.iid}", user),
2019-02-15 15:39:39 +05:30
params: { confidential: true }
2016-09-29 09:46:39 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(200)
2016-09-29 09:46:39 +05:30
expect(json_response['confidential']).to be_truthy
end
it 'makes a confidential issue public' do
2017-08-17 22:00:37 +05:30
put api("/projects/#{project.id}/issues/#{confidential_issue.iid}", user),
2019-02-15 15:39:39 +05:30
params: { confidential: false }
2016-09-29 09:46:39 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(200)
2016-09-29 09:46:39 +05:30
expect(json_response['confidential']).to be_falsy
end
it 'does not update a confidential issue with wrong confidential flag' do
2017-08-17 22:00:37 +05:30
put api("/projects/#{project.id}/issues/#{confidential_issue.iid}", user),
2019-02-15 15:39:39 +05:30
params: { confidential: 'foo' }
2016-09-29 09:46:39 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(400)
2017-08-17 22:00:37 +05:30
expect(json_response['error']).to eq('confidential is invalid')
end
end
end
describe 'PUT /projects/:id/issues/:issue_iid with spam filtering' do
let(:params) do
{
title: 'updated title',
description: 'content here',
labels: 'label, label2'
}
end
it "does not create a new project issue" do
allow_any_instance_of(SpamService).to receive_messages(check_for_spam?: true)
2018-03-17 18:26:18 +05:30
allow_any_instance_of(AkismetService).to receive_messages(spam?: true)
2017-08-17 22:00:37 +05:30
2019-02-15 15:39:39 +05:30
put api("/projects/#{project.id}/issues/#{issue.iid}", user), params: params
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(400)
2017-08-17 22:00:37 +05:30
expect(json_response['message']).to eq({ "error" => "Spam detected" })
spam_logs = SpamLog.all
expect(spam_logs.count).to eq(1)
expect(spam_logs[0].title).to eq('updated title')
expect(spam_logs[0].description).to eq('content here')
expect(spam_logs[0].user).to eq(user)
expect(spam_logs[0].noteable_type).to eq('Issue')
end
end
describe 'PUT /projects/:id/issues/:issue_iid to update assignee' do
context 'support for deprecated assignee_id' do
it 'removes assignee' do
put api("/projects/#{project.id}/issues/#{issue.iid}", user),
2019-02-15 15:39:39 +05:30
params: { assignee_id: 0 }
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(200)
2017-08-17 22:00:37 +05:30
expect(json_response['assignee']).to be_nil
end
it 'updates an issue with new assignee' do
put api("/projects/#{project.id}/issues/#{issue.iid}", user),
2019-02-15 15:39:39 +05:30
params: { assignee_id: user2.id }
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(200)
2017-08-17 22:00:37 +05:30
expect(json_response['assignee']['name']).to eq(user2.name)
end
end
it 'removes assignee' do
put api("/projects/#{project.id}/issues/#{issue.iid}", user),
2019-02-15 15:39:39 +05:30
params: { assignee_ids: [0] }
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(200)
2017-08-17 22:00:37 +05:30
expect(json_response['assignees']).to be_empty
end
it 'updates an issue with new assignee' do
put api("/projects/#{project.id}/issues/#{issue.iid}", user),
2019-02-15 15:39:39 +05:30
params: { assignee_ids: [user2.id] }
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(200)
2017-08-17 22:00:37 +05:30
expect(json_response['assignees'].first['name']).to eq(user2.name)
end
2017-09-10 17:25:29 +05:30
context 'single assignee restrictions' do
2017-08-17 22:00:37 +05:30
it 'updates an issue with several assignees but only one has been applied' do
put api("/projects/#{project.id}/issues/#{issue.iid}", user),
2019-02-15 15:39:39 +05:30
params: { assignee_ids: [user2.id, guest.id] }
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(200)
2017-08-17 22:00:37 +05:30
expect(json_response['assignees'].size).to eq(1)
2016-09-29 09:46:39 +05:30
end
2016-06-02 11:05:42 +05:30
end
2014-09-02 18:07:02 +05:30
end
2017-08-17 22:00:37 +05:30
describe 'PUT /projects/:id/issues/:issue_iid to update labels' do
2014-09-02 18:07:02 +05:30
let!(:label) { create(:label, title: 'dummy', project: project) }
let!(:label_link) { create(:label_link, label: label, target: issue) }
2016-09-13 17:45:13 +05:30
it 'does not update labels if not present' do
2017-08-17 22:00:37 +05:30
put api("/projects/#{project.id}/issues/#{issue.iid}", user),
2019-02-15 15:39:39 +05:30
params: { title: 'updated title' }
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(200)
2015-04-26 12:48:37 +05:30
expect(json_response['labels']).to eq([label.title])
2014-09-02 18:07:02 +05:30
end
2018-11-08 19:23:39 +05:30
it 'removes all labels and touches the record' do
Timecop.travel(1.minute.from_now) do
2019-02-15 15:39:39 +05:30
put api("/projects/#{project.id}/issues/#{issue.iid}", user), params: { labels: '' }
2018-11-08 19:23:39 +05:30
end
2017-01-15 13:20:01 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(200)
2015-04-26 12:48:37 +05:30
expect(json_response['labels']).to eq([])
2018-11-08 19:23:39 +05:30
expect(json_response['updated_at']).to be > Time.now
2014-09-02 18:07:02 +05:30
end
2018-11-08 19:23:39 +05:30
it 'updates labels and touches the record' do
Timecop.travel(1.minute.from_now) do
put api("/projects/#{project.id}/issues/#{issue.iid}", user),
2019-02-15 15:39:39 +05:30
params: { labels: 'foo,bar' }
2018-11-08 19:23:39 +05:30
end
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(200)
2015-04-26 12:48:37 +05:30
expect(json_response['labels']).to include 'foo'
expect(json_response['labels']).to include 'bar'
2018-11-08 19:23:39 +05:30
expect(json_response['updated_at']).to be > Time.now
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it 'allows special label names' do
2017-08-17 22:00:37 +05:30
put api("/projects/#{project.id}/issues/#{issue.iid}", user),
2019-02-15 15:39:39 +05:30
params: { labels: 'label:foo, label-bar,label_bar,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'
2016-08-24 12:49:21 +05:30
expect(json_response['labels']).to include 'label?bar'
expect(json_response['labels']).to include 'label&bar'
expect(json_response['labels']).to include '?'
expect(json_response['labels']).to include '&'
2015-04-26 12:48:37 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns 400 if title is too long' do
2017-08-17 22:00:37 +05:30
put api("/projects/#{project.id}/issues/#{issue.iid}", user),
2019-02-15 15:39:39 +05:30
params: { title: 'g' * 256 }
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(400)
2015-04-26 12:48:37 +05:30
expect(json_response['message']['title']).to eq([
'is too long (maximum is 255 characters)'
])
2014-09-02 18:07:02 +05:30
end
end
2017-08-17 22:00:37 +05:30
describe "PUT /projects/:id/issues/:issue_iid to update state and label" do
2016-09-13 17:45:13 +05:30
it "updates a project issue" do
2017-08-17 22:00:37 +05:30
put api("/projects/#{project.id}/issues/#{issue.iid}", user),
2019-02-15 15:39:39 +05:30
params: { labels: 'label2', state_event: "close" }
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(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
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
it 'reopens a project isssue' do
2019-02-15 15:39:39 +05:30
put api("/projects/#{project.id}/issues/#{closed_issue.iid}", user), params: { state_event: 'reopen' }
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(200)
2017-09-10 17:25:29 +05:30
expect(json_response['state']).to eq 'opened'
2017-08-17 22:00:37 +05:30
end
2016-06-02 11:05:42 +05:30
context 'when an admin or owner makes the request' do
it 'accepts the update date to be set' do
update_time = 2.weeks.ago
2017-08-17 22:00:37 +05:30
put api("/projects/#{project.id}/issues/#{issue.iid}", user),
2019-02-15 15:39:39 +05:30
params: { labels: 'label3', state_event: 'close', updated_at: update_time }
2016-06-02 11:05:42 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(200)
2016-06-02 11:05:42 +05:30
expect(json_response['labels']).to include 'label3'
2016-11-03 12:29:30 +05:30
expect(Time.parse(json_response['updated_at'])).to be_like_time(update_time)
2016-06-02 11:05:42 +05:30
end
end
2014-09-02 18:07:02 +05:30
end
2017-08-17 22:00:37 +05:30
describe 'PUT /projects/:id/issues/:issue_iid to update due date' do
2016-08-24 12:49:21 +05:30
it 'creates a new project issue' do
due_date = 2.weeks.from_now.strftime('%Y-%m-%d')
2019-02-15 15:39:39 +05:30
put api("/projects/#{project.id}/issues/#{issue.iid}", user), params: { due_date: due_date }
2016-08-24 12:49:21 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(200)
2016-08-24 12:49:21 +05:30
expect(json_response['due_date']).to eq(due_date)
end
end
2017-08-17 22:00:37 +05:30
describe "DELETE /projects/:id/issues/:issue_iid" do
2016-06-02 11:05:42 +05:30
it "rejects a non member from deleting an issue" do
2017-08-17 22:00:37 +05:30
delete api("/projects/#{project.id}/issues/#{issue.iid}", non_member)
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(403)
2016-06-02 11:05:42 +05:30
end
it "rejects a developer from deleting an issue" do
2017-08-17 22:00:37 +05:30
delete api("/projects/#{project.id}/issues/#{issue.iid}", author)
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(403)
2016-06-02 11:05:42 +05:30
end
context "when the user is project owner" do
let(:owner) { create(:user) }
2017-09-10 17:25:29 +05:30
let(:project) { create(:project, namespace: owner.namespace) }
2016-06-02 11:05:42 +05:30
it "deletes the issue if an admin requests it" do
2017-08-17 22:00:37 +05:30
delete api("/projects/#{project.id}/issues/#{issue.iid}", owner)
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(204)
end
it_behaves_like '412 response' do
let(:request) { api("/projects/#{project.id}/issues/#{issue.iid}", owner) }
2016-06-02 11:05:42 +05:30
end
end
2017-08-17 22:00:37 +05:30
context 'when issue does not exist' do
it 'returns 404 when trying to move an issue' do
delete api("/projects/#{project.id}/issues/123", user)
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(404)
2017-08-17 22:00:37 +05:30
end
end
it 'returns 404 when using the issue ID instead of IID' do
delete api("/projects/#{project.id}/issues/#{issue.id}", user)
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(404)
2017-08-17 22:00:37 +05:30
end
2016-06-02 11:05:42 +05:30
end
2017-08-17 22:00:37 +05:30
describe '/projects/:id/issues/:issue_iid/move' do
2018-03-17 18:26:18 +05:30
let!(:target_project) { create(:project, creator_id: user.id, namespace: user.namespace ) }
2017-09-10 17:25:29 +05:30
let!(:target_project2) { create(:project, creator_id: non_member.id, namespace: non_member.namespace ) }
2016-06-02 11:05:42 +05:30
it 'moves an issue' do
2017-08-17 22:00:37 +05:30
post api("/projects/#{project.id}/issues/#{issue.iid}/move", user),
2019-02-15 15:39:39 +05:30
params: { to_project_id: target_project.id }
2016-06-02 11:05:42 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(201)
2016-06-02 11:05:42 +05:30
expect(json_response['project_id']).to eq(target_project.id)
end
context 'when source and target projects are the same' do
it 'returns 400 when trying to move an issue' do
2017-08-17 22:00:37 +05:30
post api("/projects/#{project.id}/issues/#{issue.iid}/move", user),
2019-02-15 15:39:39 +05:30
params: { to_project_id: project.id }
2016-06-02 11:05:42 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(400)
2016-06-02 11:05:42 +05:30
expect(json_response['message']).to eq('Cannot move issue to project it originates from!')
end
end
context 'when the user does not have the permission to move issues' do
it 'returns 400 when trying to move an issue' do
2017-08-17 22:00:37 +05:30
post api("/projects/#{project.id}/issues/#{issue.iid}/move", user),
2019-02-15 15:39:39 +05:30
params: { to_project_id: target_project2.id }
2016-06-02 11:05:42 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(400)
2016-06-02 11:05:42 +05:30
expect(json_response['message']).to eq('Cannot move issue due to insufficient permissions!')
end
end
it 'moves the issue to another namespace if I am admin' do
2017-08-17 22:00:37 +05:30
post api("/projects/#{project.id}/issues/#{issue.iid}/move", admin),
2019-02-15 15:39:39 +05:30
params: { to_project_id: target_project2.id }
2016-06-02 11:05:42 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(201)
2016-06-02 11:05:42 +05:30
expect(json_response['project_id']).to eq(target_project2.id)
end
2017-08-17 22:00:37 +05:30
context 'when using the issue ID instead of iid' do
it 'returns 404 when trying to move an issue' do
post api("/projects/#{project.id}/issues/#{issue.id}/move", user),
2019-02-15 15:39:39 +05:30
params: { to_project_id: target_project.id }
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(404)
2017-08-17 22:00:37 +05:30
expect(json_response['message']).to eq('404 Issue Not Found')
end
end
2016-06-02 11:05:42 +05:30
context 'when issue does not exist' do
it 'returns 404 when trying to move an issue' do
post api("/projects/#{project.id}/issues/123/move", user),
2019-02-15 15:39:39 +05:30
params: { to_project_id: target_project.id }
2016-06-02 11:05:42 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(404)
2017-08-17 22:00:37 +05:30
expect(json_response['message']).to eq('404 Issue Not Found')
2016-06-02 11:05:42 +05:30
end
end
context 'when source project does not exist' do
it 'returns 404 when trying to move an issue' do
2018-03-27 19:54:05 +05:30
post api("/projects/0/issues/#{issue.iid}/move", user),
2019-02-15 15:39:39 +05:30
params: { to_project_id: target_project.id }
2016-06-02 11:05:42 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(404)
2017-08-17 22:00:37 +05:30
expect(json_response['message']).to eq('404 Project Not Found')
2016-06-02 11:05:42 +05:30
end
end
context 'when target project does not exist' do
it 'returns 404 when trying to move an issue' do
2017-08-17 22:00:37 +05:30
post api("/projects/#{project.id}/issues/#{issue.iid}/move", user),
2019-02-15 15:39:39 +05:30
params: { to_project_id: 0 }
2016-06-02 11:05:42 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(404)
2016-06-02 11:05:42 +05:30
end
end
end
2017-08-17 22:00:37 +05:30
describe 'POST :id/issues/:issue_iid/subscribe' do
2016-06-02 11:05:42 +05:30
it 'subscribes to an issue' do
2017-08-17 22:00:37 +05:30
post api("/projects/#{project.id}/issues/#{issue.iid}/subscribe", user2)
2016-06-02 11:05:42 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(201)
2016-06-02 11:05:42 +05:30
expect(json_response['subscribed']).to eq(true)
end
it 'returns 304 if already subscribed' do
2017-08-17 22:00:37 +05:30
post api("/projects/#{project.id}/issues/#{issue.iid}/subscribe", user)
2016-06-02 11:05:42 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(304)
2016-06-02 11:05:42 +05:30
end
it 'returns 404 if the issue is not found' do
2017-08-17 22:00:37 +05:30
post api("/projects/#{project.id}/issues/123/subscribe", user)
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(404)
2017-08-17 22:00:37 +05:30
end
it 'returns 404 if the issue ID is used instead of the iid' do
post api("/projects/#{project.id}/issues/#{issue.id}/subscribe", user)
2016-06-02 11:05:42 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(404)
2016-06-02 11:05:42 +05:30
end
it 'returns 404 if the issue is confidential' do
2017-08-17 22:00:37 +05:30
post api("/projects/#{project.id}/issues/#{confidential_issue.iid}/subscribe", non_member)
2016-06-02 11:05:42 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(404)
2016-06-02 11:05:42 +05:30
end
end
2017-08-17 22:00:37 +05:30
describe 'POST :id/issues/:issue_id/unsubscribe' do
2016-06-02 11:05:42 +05:30
it 'unsubscribes from an issue' do
2017-08-17 22:00:37 +05:30
post api("/projects/#{project.id}/issues/#{issue.iid}/unsubscribe", user)
2016-06-02 11:05:42 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(201)
2016-06-02 11:05:42 +05:30
expect(json_response['subscribed']).to eq(false)
end
it 'returns 304 if not subscribed' do
2017-08-17 22:00:37 +05:30
post api("/projects/#{project.id}/issues/#{issue.iid}/unsubscribe", user2)
2016-06-02 11:05:42 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(304)
2016-06-02 11:05:42 +05:30
end
it 'returns 404 if the issue is not found' do
2017-08-17 22:00:37 +05:30
post api("/projects/#{project.id}/issues/123/unsubscribe", user)
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(404)
2017-08-17 22:00:37 +05:30
end
it 'returns 404 if using the issue ID instead of iid' do
post api("/projects/#{project.id}/issues/#{issue.id}/unsubscribe", user)
2016-06-02 11:05:42 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(404)
2016-06-02 11:05:42 +05:30
end
it 'returns 404 if the issue is confidential' do
2017-08-17 22:00:37 +05:30
post api("/projects/#{project.id}/issues/#{confidential_issue.iid}/unsubscribe", non_member)
2016-06-02 11:05:42 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(404)
2014-09-02 18:07:02 +05:30
end
end
2017-08-17 22:00:37 +05:30
describe 'time tracking endpoints' do
let(:issuable) { issue }
include_examples 'time tracking endpoints', 'issue'
end
describe 'GET :id/issues/:issue_iid/closed_by' do
let(:merge_request) do
create(:merge_request,
:simple,
author: user,
source_project: project,
target_project: project,
description: "closes #{issue.to_reference}")
end
before do
create(:merge_requests_closing_issues, issue: issue, merge_request: merge_request)
end
2018-11-08 19:23:39 +05:30
context 'when unauthenticated' do
it 'return public project issues' do
get api("/projects/#{project.id}/issues/#{issue.iid}/closed_by")
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(merge_request.id)
2018-11-08 19:23:39 +05:30
end
end
2017-08-17 22:00:37 +05:30
it 'returns merge requests that will close issue on merge' do
get api("/projects/#{project.id}/issues/#{issue.iid}/closed_by", user)
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(merge_request.id)
2017-08-17 22:00:37 +05:30
end
context 'when no merge requests will close issue' do
it 'returns empty array' do
get api("/projects/#{project.id}/issues/#{closed_issue.iid}/closed_by", user)
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([])
2017-08-17 22:00:37 +05:30
end
end
it "returns 404 when issue doesn't exists" do
get api("/projects/#{project.id}/issues/9999/closed_by", user)
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(404)
2017-08-17 22:00:37 +05:30
end
end
2018-12-13 13:39:08 +05:30
describe 'GET :id/issues/:issue_iid/related_merge_requests' do
def get_related_merge_requests(project_id, issue_iid, user = nil)
get api("/projects/#{project_id}/issues/#{issue_iid}/related_merge_requests", user)
end
def create_referencing_mr(user, project, issue)
attributes = {
author: user,
source_project: project,
target_project: project,
source_branch: "master",
target_branch: "test",
description: "See #{issue.to_reference}"
}
create(:merge_request, attributes).tap do |merge_request|
create(:note, :system, project: project, noteable: issue, author: user, note: merge_request.to_reference(full: true))
end
end
let!(:related_mr) { create_referencing_mr(user, project, issue) }
context 'when unauthenticated' do
it 'return list of referenced merge requests from issue' do
get_related_merge_requests(project.id, issue.iid)
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(related_mr.id)
2018-12-13 13:39:08 +05:30
end
it 'renders 404 if project is not visible' do
private_project = create(:project, :private)
private_issue = create(:issue, project: private_project)
create_referencing_mr(user, private_project, private_issue)
get_related_merge_requests(private_project.id, private_issue.iid)
expect(response).to have_gitlab_http_status(404)
end
end
it 'returns merge requests that mentioned a issue' do
create(:merge_request,
:simple,
author: user,
source_project: project,
target_project: project,
description: "Some description")
get_related_merge_requests(project.id, issue.iid, user)
2019-03-02 22:35:43 +05:30
expect_paginated_array_response(related_mr.id)
2018-12-13 13:39:08 +05:30
end
context 'no merge request mentioned a issue' do
it 'returns empty array' do
get_related_merge_requests(project.id, closed_issue.iid, user)
2019-03-02 22:35:43 +05:30
expect_paginated_array_response([])
2018-12-13 13:39:08 +05:30
end
end
it "returns 404 when issue doesn't exists" do
get_related_merge_requests(project.id, 999999, user)
expect(response).to have_gitlab_http_status(404)
end
end
2017-09-10 17:25:29 +05:30
describe "GET /projects/:id/issues/:issue_iid/user_agent_detail" do
let!(:user_agent_detail) { create(:user_agent_detail, subject: issue) }
2018-11-08 19:23:39 +05:30
context 'when unauthenticated' do
it "returns unauthorized" do
get api("/projects/#{project.id}/issues/#{issue.iid}/user_agent_detail")
expect(response).to have_gitlab_http_status(401)
end
end
2017-09-10 17:25:29 +05:30
it 'exposes known attributes' do
get api("/projects/#{project.id}/issues/#{issue.iid}/user_agent_detail", admin)
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(200)
2017-09-10 17:25:29 +05:30
expect(json_response['user_agent']).to eq(user_agent_detail.user_agent)
expect(json_response['ip_address']).to eq(user_agent_detail.ip_address)
expect(json_response['akismet_submitted']).to eq(user_agent_detail.submitted)
end
2018-11-08 19:23:39 +05:30
it "returns unauthorized for non-admin users" do
2017-09-10 17:25:29 +05:30
get api("/projects/#{project.id}/issues/#{issue.iid}/user_agent_detail", user)
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(403)
2017-09-10 17:25:29 +05:30
end
end
2018-03-17 18:26:18 +05:30
describe 'GET projects/:id/issues/:issue_iid/participants' do
it_behaves_like 'issuable participants endpoint' do
let(:entity) { issue }
end
it 'returns 404 if the issue is confidential' do
post api("/projects/#{project.id}/issues/#{confidential_issue.iid}/participants", non_member)
expect(response).to have_gitlab_http_status(404)
end
end
2014-09-02 18:07:02 +05:30
end