2014-09-02 18:07:02 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe API::API, api: true do
|
|
|
|
include ApiHelpers
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
let!(:project) { create(:project, namespace: user.namespace ) }
|
|
|
|
let!(:issue) { create(:issue, project: project, author: user) }
|
|
|
|
let!(:merge_request) { create(:merge_request, source_project: project, target_project: project, author: user) }
|
|
|
|
let!(:snippet) { create(:project_snippet, project: project, author: user) }
|
|
|
|
let!(:issue_note) { create(:note, noteable: issue, project: project, author: user) }
|
|
|
|
let!(:merge_request_note) { create(:note, noteable: merge_request, project: project, author: user) }
|
|
|
|
let!(:snippet_note) { create(:note, noteable: snippet, project: project, author: user) }
|
|
|
|
before { project.team << [user, :reporter] }
|
|
|
|
|
|
|
|
describe "GET /projects/:id/noteable/:noteable_id/notes" do
|
|
|
|
context "when noteable is an Issue" do
|
|
|
|
it "should return an array of issue notes" do
|
|
|
|
get api("/projects/#{project.id}/issues/#{issue.id}/notes", user)
|
2015-04-26 12:48:37 +05:30
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(json_response).to be_an Array
|
|
|
|
expect(json_response.first['body']).to eq(issue_note.note)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it "should return a 404 error when issue id not found" do
|
|
|
|
get api("/projects/#{project.id}/issues/123/notes", user)
|
2015-04-26 12:48:37 +05:30
|
|
|
expect(response.status).to eq(404)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when noteable is a Snippet" do
|
|
|
|
it "should return an array of snippet notes" do
|
|
|
|
get api("/projects/#{project.id}/snippets/#{snippet.id}/notes", user)
|
2015-04-26 12:48:37 +05:30
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(json_response).to be_an Array
|
|
|
|
expect(json_response.first['body']).to eq(snippet_note.note)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it "should return a 404 error when snippet id not found" do
|
|
|
|
get api("/projects/#{project.id}/snippets/42/notes", user)
|
2015-04-26 12:48:37 +05:30
|
|
|
expect(response.status).to eq(404)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when noteable is a Merge Request" do
|
|
|
|
it "should return an array of merge_requests notes" do
|
|
|
|
get api("/projects/#{project.id}/merge_requests/#{merge_request.id}/notes", user)
|
2015-04-26 12:48:37 +05:30
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(json_response).to be_an Array
|
|
|
|
expect(json_response.first['body']).to eq(merge_request_note.note)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it "should return a 404 error if merge request id not found" do
|
|
|
|
get api("/projects/#{project.id}/merge_requests/4444/notes", user)
|
2015-04-26 12:48:37 +05:30
|
|
|
expect(response.status).to eq(404)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "GET /projects/:id/noteable/:noteable_id/notes/:note_id" do
|
|
|
|
context "when noteable is an Issue" do
|
|
|
|
it "should return an issue note by id" do
|
|
|
|
get api("/projects/#{project.id}/issues/#{issue.id}/notes/#{issue_note.id}", user)
|
2015-04-26 12:48:37 +05:30
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(json_response['body']).to eq(issue_note.note)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it "should return a 404 error if issue note not found" do
|
|
|
|
get api("/projects/#{project.id}/issues/#{issue.id}/notes/123", user)
|
2015-04-26 12:48:37 +05:30
|
|
|
expect(response.status).to eq(404)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when noteable is a Snippet" do
|
|
|
|
it "should return a snippet note by id" do
|
|
|
|
get api("/projects/#{project.id}/snippets/#{snippet.id}/notes/#{snippet_note.id}", user)
|
2015-04-26 12:48:37 +05:30
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(json_response['body']).to eq(snippet_note.note)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it "should return a 404 error if snippet note not found" do
|
|
|
|
get api("/projects/#{project.id}/snippets/#{snippet.id}/notes/123", user)
|
2015-04-26 12:48:37 +05:30
|
|
|
expect(response.status).to eq(404)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "POST /projects/:id/noteable/:noteable_id/notes" do
|
|
|
|
context "when noteable is an Issue" do
|
|
|
|
it "should create a new issue note" do
|
|
|
|
post api("/projects/#{project.id}/issues/#{issue.id}/notes", user), body: 'hi!'
|
2015-04-26 12:48:37 +05:30
|
|
|
expect(response.status).to eq(201)
|
|
|
|
expect(json_response['body']).to eq('hi!')
|
|
|
|
expect(json_response['author']['username']).to eq(user.username)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it "should return a 400 bad request error if body not given" do
|
|
|
|
post api("/projects/#{project.id}/issues/#{issue.id}/notes", user)
|
2015-04-26 12:48:37 +05:30
|
|
|
expect(response.status).to eq(400)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it "should return a 401 unauthorized error if user not authenticated" do
|
|
|
|
post api("/projects/#{project.id}/issues/#{issue.id}/notes"), body: 'hi!'
|
2015-04-26 12:48:37 +05:30
|
|
|
expect(response.status).to eq(401)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when noteable is a Snippet" do
|
|
|
|
it "should create a new snippet note" do
|
|
|
|
post api("/projects/#{project.id}/snippets/#{snippet.id}/notes", user), body: 'hi!'
|
2015-04-26 12:48:37 +05:30
|
|
|
expect(response.status).to eq(201)
|
|
|
|
expect(json_response['body']).to eq('hi!')
|
|
|
|
expect(json_response['author']['username']).to eq(user.username)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it "should return a 400 bad request error if body not given" do
|
|
|
|
post api("/projects/#{project.id}/snippets/#{snippet.id}/notes", user)
|
2015-04-26 12:48:37 +05:30
|
|
|
expect(response.status).to eq(400)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it "should return a 401 unauthorized error if user not authenticated" do
|
|
|
|
post api("/projects/#{project.id}/snippets/#{snippet.id}/notes"), body: 'hi!'
|
2015-04-26 12:48:37 +05:30
|
|
|
expect(response.status).to eq(401)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "POST /projects/:id/noteable/:noteable_id/notes to test observer on create" do
|
|
|
|
it "should create an activity event when an issue note is created" do
|
2015-04-26 12:48:37 +05:30
|
|
|
expect(Event).to receive(:create)
|
2014-09-02 18:07:02 +05:30
|
|
|
|
|
|
|
post api("/projects/#{project.id}/issues/#{issue.id}/notes", user), body: 'hi!'
|
|
|
|
end
|
|
|
|
end
|
2015-04-26 12:48:37 +05:30
|
|
|
|
|
|
|
describe 'PUT /projects/:id/noteable/:noteable_id/notes/:note_id' do
|
|
|
|
context 'when noteable is an Issue' do
|
|
|
|
it 'should return modified note' do
|
|
|
|
put api("/projects/#{project.id}/issues/#{issue.id}/"\
|
|
|
|
"notes/#{issue_note.id}", user), body: 'Hello!'
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(json_response['body']).to eq('Hello!')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should return a 404 error when note id not found' do
|
|
|
|
put api("/projects/#{project.id}/issues/#{issue.id}/notes/123", user),
|
|
|
|
body: 'Hello!'
|
|
|
|
expect(response.status).to eq(404)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should return a 400 bad request error if body not given' do
|
|
|
|
put api("/projects/#{project.id}/issues/#{issue.id}/"\
|
|
|
|
"notes/#{issue_note.id}", user)
|
|
|
|
expect(response.status).to eq(400)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when noteable is a Snippet' do
|
|
|
|
it 'should return modified note' do
|
|
|
|
put api("/projects/#{project.id}/snippets/#{snippet.id}/"\
|
|
|
|
"notes/#{snippet_note.id}", user), body: 'Hello!'
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(json_response['body']).to eq('Hello!')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should return a 404 error when note id not found' do
|
|
|
|
put api("/projects/#{project.id}/snippets/#{snippet.id}/"\
|
|
|
|
"notes/123", user), body: "Hello!"
|
|
|
|
expect(response.status).to eq(404)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when noteable is a Merge Request' do
|
|
|
|
it 'should return modified note' do
|
|
|
|
put api("/projects/#{project.id}/merge_requests/#{merge_request.id}/"\
|
|
|
|
"notes/#{merge_request_note.id}", user), body: 'Hello!'
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(json_response['body']).to eq('Hello!')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should return a 404 error when note id not found' do
|
|
|
|
put api("/projects/#{project.id}/merge_requests/#{merge_request.id}/"\
|
|
|
|
"notes/123", user), body: "Hello!"
|
|
|
|
expect(response.status).to eq(404)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|