2012-11-27 14:43:39 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-04-21 16:32:02 -04:00
|
|
|
describe API::Notes do
|
2012-11-27 14:43:39 -05:00
|
|
|
let(:user) { create(:user) }
|
2017-08-02 15:55:11 -04:00
|
|
|
let!(:project) { create(:project, :public, namespace: user.namespace) }
|
2019-01-16 07:09:29 -05:00
|
|
|
let(:private_user) { create(:user) }
|
2016-01-13 13:42:36 -05:00
|
|
|
|
2017-06-14 14:18:56 -04:00
|
|
|
before do
|
2017-12-22 03:18:28 -05:00
|
|
|
project.add_reporter(user)
|
2017-06-14 14:18:56 -04:00
|
|
|
end
|
2012-11-27 14:43:39 -05:00
|
|
|
|
2018-02-28 02:48:23 -05:00
|
|
|
context "when noteable is an Issue" do
|
|
|
|
let!(:issue) { create(:issue, project: project, author: user) }
|
|
|
|
let!(:issue_note) { create(:note, noteable: issue, project: project, author: user) }
|
2017-11-29 11:22:22 -05:00
|
|
|
|
2018-02-28 02:48:23 -05:00
|
|
|
it_behaves_like "noteable API", 'projects', 'issues', 'iid' do
|
|
|
|
let(:parent) { project }
|
|
|
|
let(:noteable) { issue }
|
|
|
|
let(:note) { issue_note }
|
|
|
|
end
|
2017-11-29 11:22:22 -05:00
|
|
|
|
2018-02-28 02:48:23 -05:00
|
|
|
context 'when user does not have access to create noteable' do
|
|
|
|
let(:private_issue) { create(:issue, project: create(:project, :private)) }
|
2017-11-29 11:22:22 -05:00
|
|
|
|
2018-02-28 02:48:23 -05:00
|
|
|
##
|
|
|
|
# We are posting to project user has access to, but we use issue id
|
|
|
|
# from a different project, see #15577
|
|
|
|
#
|
|
|
|
before do
|
|
|
|
post api("/projects/#{private_issue.project.id}/issues/#{private_issue.iid}/notes", user),
|
2018-12-17 17:52:17 -05:00
|
|
|
params: { body: 'Hi!' }
|
2018-02-28 02:48:23 -05:00
|
|
|
end
|
2017-11-29 11:22:22 -05:00
|
|
|
|
2018-02-28 02:48:23 -05:00
|
|
|
it 'responds with resource not found error' do
|
|
|
|
expect(response.status).to eq 404
|
2017-11-29 11:22:22 -05:00
|
|
|
end
|
|
|
|
|
2018-02-28 02:48:23 -05:00
|
|
|
it 'does not create new note' do
|
|
|
|
expect(private_issue.notes.reload).to be_empty
|
|
|
|
end
|
|
|
|
end
|
2016-05-10 15:06:02 -04:00
|
|
|
|
2018-02-28 02:48:23 -05:00
|
|
|
context "when referencing other project" do
|
|
|
|
# For testing the cross-reference of a private issue in a public project
|
|
|
|
let(:private_project) do
|
|
|
|
create(:project, namespace: private_user.namespace)
|
2018-07-11 10:36:08 -04:00
|
|
|
.tap { |p| p.add_maintainer(private_user) }
|
2012-11-27 14:43:39 -05:00
|
|
|
end
|
2019-01-16 07:09:29 -05:00
|
|
|
let(:private_issue) { create(:issue, project: private_project) }
|
2013-02-06 10:34:06 -05:00
|
|
|
|
2018-02-28 02:48:23 -05:00
|
|
|
let(:ext_proj) { create(:project, :public) }
|
|
|
|
let(:ext_issue) { create(:issue, project: ext_proj) }
|
2016-05-10 15:06:02 -04:00
|
|
|
|
2018-02-28 02:48:23 -05:00
|
|
|
let!(:cross_reference_note) do
|
|
|
|
create :note,
|
|
|
|
noteable: ext_issue, project: ext_proj,
|
|
|
|
note: "mentioned in issue #{private_issue.to_reference(ext_proj)}",
|
|
|
|
system: true
|
2013-02-06 10:34:06 -05:00
|
|
|
end
|
2016-01-13 13:42:36 -05:00
|
|
|
|
2018-02-28 02:48:23 -05:00
|
|
|
describe "GET /projects/:id/noteable/:noteable_id/notes" do
|
|
|
|
context "current user cannot view the notes" do
|
|
|
|
it "returns an empty array" do
|
|
|
|
get api("/projects/#{ext_proj.id}/issues/#{ext_issue.iid}/notes", user)
|
2016-01-13 13:42:36 -05:00
|
|
|
|
2018-02-28 02:48:23 -05:00
|
|
|
expect(response).to have_gitlab_http_status(200)
|
|
|
|
expect(response).to include_pagination_headers
|
|
|
|
expect(json_response).to be_an Array
|
|
|
|
expect(json_response).to be_empty
|
2017-06-14 14:18:56 -04:00
|
|
|
end
|
2016-05-09 18:35:37 -04:00
|
|
|
|
2018-02-28 02:48:23 -05:00
|
|
|
context "issue is confidential" do
|
|
|
|
before do
|
2018-07-02 06:43:06 -04:00
|
|
|
ext_issue.update(confidential: true)
|
2018-02-28 02:48:23 -05:00
|
|
|
end
|
2016-05-10 15:06:02 -04:00
|
|
|
|
2018-02-28 02:48:23 -05:00
|
|
|
it "returns 404" do
|
|
|
|
get api("/projects/#{ext_proj.id}/issues/#{ext_issue.iid}/notes", user)
|
|
|
|
|
|
|
|
expect(response).to have_gitlab_http_status(404)
|
|
|
|
end
|
2016-05-09 18:35:37 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-02-28 02:48:23 -05:00
|
|
|
context "current user can view the note" do
|
2016-08-01 11:00:44 -04:00
|
|
|
it "returns an empty array" do
|
2017-03-27 09:01:45 -04:00
|
|
|
get api("/projects/#{ext_proj.id}/issues/#{ext_issue.iid}/notes", private_user)
|
2016-05-10 15:06:02 -04:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(200)
|
2017-01-24 15:49:10 -05:00
|
|
|
expect(response).to include_pagination_headers
|
2016-01-13 13:42:36 -05:00
|
|
|
expect(json_response).to be_an Array
|
|
|
|
expect(json_response.first['body']).to eq(cross_reference_note.note)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2017-11-29 11:22:22 -05:00
|
|
|
|
2018-02-28 02:48:23 -05:00
|
|
|
describe "GET /projects/:id/noteable/:noteable_id/notes/:note_id" do
|
|
|
|
context "current user cannot view the notes" do
|
|
|
|
it "returns a 404 error" do
|
|
|
|
get api("/projects/#{ext_proj.id}/issues/#{ext_issue.iid}/notes/#{cross_reference_note.id}", user)
|
2017-11-29 11:22:22 -05:00
|
|
|
|
2018-02-28 02:48:23 -05:00
|
|
|
expect(response).to have_gitlab_http_status(404)
|
2017-06-14 14:18:56 -04:00
|
|
|
end
|
2016-05-16 15:43:19 -04:00
|
|
|
|
2018-02-28 02:48:23 -05:00
|
|
|
context "when issue is confidential" do
|
|
|
|
before do
|
2018-07-02 06:43:06 -04:00
|
|
|
issue.update(confidential: true)
|
2018-02-28 02:48:23 -05:00
|
|
|
end
|
2016-05-16 15:43:19 -04:00
|
|
|
|
2018-02-28 02:48:23 -05:00
|
|
|
it "returns 404" do
|
|
|
|
get api("/projects/#{project.id}/issues/#{issue.iid}/notes/#{issue_note.id}", private_user)
|
|
|
|
|
|
|
|
expect(response).to have_gitlab_http_status(404)
|
|
|
|
end
|
2016-05-16 15:43:19 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-02-28 02:48:23 -05:00
|
|
|
context "current user can view the note" do
|
2016-08-01 11:00:44 -04:00
|
|
|
it "returns an issue note by id" do
|
2017-03-27 09:01:45 -04:00
|
|
|
get api("/projects/#{ext_proj.id}/issues/#{ext_issue.iid}/notes/#{cross_reference_note.id}", private_user)
|
2016-05-10 15:06:02 -04:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(200)
|
2016-01-13 13:42:36 -05:00
|
|
|
expect(json_response['body']).to eq(cross_reference_note.note)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2012-11-29 14:33:41 -05:00
|
|
|
end
|
|
|
|
end
|
2012-11-29 15:06:24 -05:00
|
|
|
|
2018-02-28 02:48:23 -05:00
|
|
|
context "when noteable is a Snippet" do
|
|
|
|
let!(:snippet) { create(:project_snippet, project: project, author: user) }
|
|
|
|
let!(:snippet_note) { create(:note, noteable: snippet, project: project, author: user) }
|
2016-05-10 15:06:02 -04:00
|
|
|
|
2018-02-28 02:48:23 -05:00
|
|
|
it_behaves_like "noteable API", 'projects', 'snippets', 'id' do
|
|
|
|
let(:parent) { project }
|
|
|
|
let(:noteable) { snippet }
|
|
|
|
let(:note) { snippet_note }
|
2013-02-20 16:17:05 -05:00
|
|
|
end
|
2018-02-28 02:48:23 -05:00
|
|
|
end
|
2016-04-26 12:55:38 -04:00
|
|
|
|
2018-02-28 02:48:23 -05:00
|
|
|
context "when noteable is a Merge Request" do
|
|
|
|
let!(:merge_request) { create(:merge_request, source_project: project, target_project: project, author: user) }
|
|
|
|
let!(:merge_request_note) { create(:note, noteable: merge_request, project: project, author: user) }
|
2016-04-26 12:55:38 -04:00
|
|
|
|
2018-02-28 02:48:23 -05:00
|
|
|
it_behaves_like "noteable API", 'projects', 'merge_requests', 'iid' do
|
|
|
|
let(:parent) { project }
|
|
|
|
let(:noteable) { merge_request }
|
|
|
|
let(:note) { merge_request_note }
|
2016-04-26 12:55:38 -04:00
|
|
|
end
|
2017-09-01 08:03:57 -04:00
|
|
|
|
|
|
|
context 'when the merge request discussion is locked' do
|
|
|
|
before do
|
|
|
|
merge_request.update_attribute(:discussion_locked, true)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when a user is a team member' do
|
2018-12-17 17:52:17 -05:00
|
|
|
subject { post api("/projects/#{project.id}/merge_requests/#{merge_request.iid}/notes", user), params: { body: 'Hi!' } }
|
2017-09-01 08:03:57 -04:00
|
|
|
|
|
|
|
it 'returns 200 status' do
|
|
|
|
subject
|
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(201)
|
2017-09-01 08:03:57 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates a new note' do
|
|
|
|
expect { subject }.to change { Note.count }.by(1)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when a user is not a team member' do
|
2018-12-17 17:52:17 -05:00
|
|
|
subject { post api("/projects/#{project.id}/merge_requests/#{merge_request.iid}/notes", private_user), params: { body: 'Hi!' } }
|
2017-09-01 08:03:57 -04:00
|
|
|
|
|
|
|
it 'returns 403 status' do
|
|
|
|
subject
|
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(403)
|
2017-09-01 08:03:57 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not create a new note' do
|
|
|
|
expect { subject }.not_to change { Note.count }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2012-11-29 15:06:24 -05:00
|
|
|
end
|
2012-11-27 14:43:39 -05:00
|
|
|
end
|