Skip to content
Snippets Groups Projects
Commit 2a040e26 authored by GitLab Bot's avatar GitLab Bot
Browse files

Add latest changes from gitlab-org/gitlab@master

parent a53d2c37
No related branches found
No related tags found
No related merge requests found
Showing
with 450 additions and 360 deletions
Loading
@@ -11,7 +11,7 @@ describe API::Appearance, 'Appearance' do
Loading
@@ -11,7 +11,7 @@ describe API::Appearance, 'Appearance' do
it "returns 403" do it "returns 403" do
get api("/application/appearance", user) get api("/application/appearance", user)
   
expect(response).to have_gitlab_http_status(403) expect(response).to have_gitlab_http_status(:forbidden)
end end
end end
   
Loading
@@ -19,7 +19,7 @@ describe API::Appearance, 'Appearance' do
Loading
@@ -19,7 +19,7 @@ describe API::Appearance, 'Appearance' do
it "returns appearance" do it "returns appearance" do
get api("/application/appearance", admin) get api("/application/appearance", admin)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response).to be_an Hash expect(json_response).to be_an Hash
expect(json_response['description']).to eq('') expect(json_response['description']).to eq('')
expect(json_response['email_header_and_footer_enabled']).to be(false) expect(json_response['email_header_and_footer_enabled']).to be(false)
Loading
@@ -41,7 +41,7 @@ describe API::Appearance, 'Appearance' do
Loading
@@ -41,7 +41,7 @@ describe API::Appearance, 'Appearance' do
it "returns 403" do it "returns 403" do
put api("/application/appearance", user), params: { title: "Test" } put api("/application/appearance", user), params: { title: "Test" }
   
expect(response).to have_gitlab_http_status(403) expect(response).to have_gitlab_http_status(:forbidden)
end end
end end
   
Loading
@@ -54,7 +54,7 @@ describe API::Appearance, 'Appearance' do
Loading
@@ -54,7 +54,7 @@ describe API::Appearance, 'Appearance' do
new_project_guidelines: "Please read the FAQs for help." new_project_guidelines: "Please read the FAQs for help."
} }
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response).to be_an Hash expect(json_response).to be_an Hash
expect(json_response['description']).to eq('gitlab-test.example.com') expect(json_response['description']).to eq('gitlab-test.example.com')
expect(json_response['email_header_and_footer_enabled']).to be(false) expect(json_response['email_header_and_footer_enabled']).to be(false)
Loading
@@ -82,7 +82,7 @@ describe API::Appearance, 'Appearance' do
Loading
@@ -82,7 +82,7 @@ describe API::Appearance, 'Appearance' do
   
put api("/application/appearance", admin), params: settings put api("/application/appearance", admin), params: settings
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
settings.each do |attribute, value| settings.each do |attribute, value|
expect(Appearance.current.public_send(attribute)).to eq(value) expect(Appearance.current.public_send(attribute)).to eq(value)
end end
Loading
@@ -92,14 +92,14 @@ describe API::Appearance, 'Appearance' do
Loading
@@ -92,14 +92,14 @@ describe API::Appearance, 'Appearance' do
it "with message_font_color" do it "with message_font_color" do
put api("/application/appearance", admin), params: { message_font_color: "No Color" } put api("/application/appearance", admin), params: { message_font_color: "No Color" }
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
expect(json_response['message']['message_font_color']).to contain_exactly('must be a valid color code') expect(json_response['message']['message_font_color']).to contain_exactly('must be a valid color code')
end end
   
it "with message_background_color" do it "with message_background_color" do
put api("/application/appearance", admin), params: { message_background_color: "#1" } put api("/application/appearance", admin), params: { message_background_color: "#1" }
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
expect(json_response['message']['message_background_color']).to contain_exactly('must be a valid color code') expect(json_response['message']['message_background_color']).to contain_exactly('must be a valid color code')
end end
end end
Loading
@@ -115,7 +115,7 @@ describe API::Appearance, 'Appearance' do
Loading
@@ -115,7 +115,7 @@ describe API::Appearance, 'Appearance' do
favicon: fixture_file_upload("spec/fixtures/dk.png", "image/png") favicon: fixture_file_upload("spec/fixtures/dk.png", "image/png")
} }
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response['logo']).to eq("/uploads/-/system/appearance/logo/#{appearance.id}/dk.png") expect(json_response['logo']).to eq("/uploads/-/system/appearance/logo/#{appearance.id}/dk.png")
expect(json_response['header_logo']).to eq("/uploads/-/system/appearance/header_logo/#{appearance.id}/dk.png") expect(json_response['header_logo']).to eq("/uploads/-/system/appearance/header_logo/#{appearance.id}/dk.png")
expect(json_response['favicon']).to eq("/uploads/-/system/appearance/favicon/#{appearance.id}/dk.png") expect(json_response['favicon']).to eq("/uploads/-/system/appearance/favicon/#{appearance.id}/dk.png")
Loading
@@ -125,14 +125,14 @@ describe API::Appearance, 'Appearance' do
Loading
@@ -125,14 +125,14 @@ describe API::Appearance, 'Appearance' do
it "with string instead of file" do it "with string instead of file" do
put api("/application/appearance", admin), params: { logo: 'not-a-file.png' } put api("/application/appearance", admin), params: { logo: 'not-a-file.png' }
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
expect(json_response['error']).to eq("logo is invalid") expect(json_response['error']).to eq("logo is invalid")
end end
   
it "with .svg file instead of .png" do it "with .svg file instead of .png" do
put api("/application/appearance", admin), params: { favicon: fixture_file_upload("spec/fixtures/logo_sample.svg", "image/svg") } put api("/application/appearance", admin), params: { favicon: fixture_file_upload("spec/fixtures/logo_sample.svg", "image/svg") }
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
expect(json_response['message']['favicon']).to contain_exactly("You are not allowed to upload \"svg\" files, allowed types: png, ico") expect(json_response['message']['favicon']).to contain_exactly("You are not allowed to upload \"svg\" files, allowed types: png, ico")
end end
end end
Loading
Loading
Loading
@@ -16,7 +16,7 @@ describe API::Applications, :api do
Loading
@@ -16,7 +16,7 @@ describe API::Applications, :api do
   
application = Doorkeeper::Application.find_by(name: 'application_name', redirect_uri: 'http://application.url') application = Doorkeeper::Application.find_by(name: 'application_name', redirect_uri: 'http://application.url')
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response).to be_a Hash expect(json_response).to be_a Hash
expect(json_response['application_id']).to eq application.uid expect(json_response['application_id']).to eq application.uid
expect(json_response['secret']).to eq application.secret expect(json_response['secret']).to eq application.secret
Loading
@@ -29,7 +29,7 @@ describe API::Applications, :api do
Loading
@@ -29,7 +29,7 @@ describe API::Applications, :api do
post api('/applications', admin_user), params: { name: 'application_name', redirect_uri: 'http://', scopes: '' } post api('/applications', admin_user), params: { name: 'application_name', redirect_uri: 'http://', scopes: '' }
end.not_to change { Doorkeeper::Application.count } end.not_to change { Doorkeeper::Application.count }
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
expect(json_response).to be_a Hash expect(json_response).to be_a Hash
expect(json_response['message']['redirect_uri'][0]).to eq('must be an absolute URI.') expect(json_response['message']['redirect_uri'][0]).to eq('must be an absolute URI.')
end end
Loading
@@ -39,7 +39,7 @@ describe API::Applications, :api do
Loading
@@ -39,7 +39,7 @@ describe API::Applications, :api do
post api('/applications', admin_user), params: { name: 'application_name', redirect_uri: 'javascript://alert()', scopes: '' } post api('/applications', admin_user), params: { name: 'application_name', redirect_uri: 'javascript://alert()', scopes: '' }
end.not_to change { Doorkeeper::Application.count } end.not_to change { Doorkeeper::Application.count }
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
expect(json_response).to be_a Hash expect(json_response).to be_a Hash
expect(json_response['message']['redirect_uri'][0]).to eq('is forbidden by the server.') expect(json_response['message']['redirect_uri'][0]).to eq('is forbidden by the server.')
end end
Loading
@@ -49,7 +49,7 @@ describe API::Applications, :api do
Loading
@@ -49,7 +49,7 @@ describe API::Applications, :api do
post api('/applications', admin_user), params: { redirect_uri: 'http://application.url', scopes: '' } post api('/applications', admin_user), params: { redirect_uri: 'http://application.url', scopes: '' }
end.not_to change { Doorkeeper::Application.count } end.not_to change { Doorkeeper::Application.count }
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
expect(json_response).to be_a Hash expect(json_response).to be_a Hash
expect(json_response['error']).to eq('name is missing') expect(json_response['error']).to eq('name is missing')
end end
Loading
@@ -59,7 +59,7 @@ describe API::Applications, :api do
Loading
@@ -59,7 +59,7 @@ describe API::Applications, :api do
post api('/applications', admin_user), params: { name: 'application_name', scopes: '' } post api('/applications', admin_user), params: { name: 'application_name', scopes: '' }
end.not_to change { Doorkeeper::Application.count } end.not_to change { Doorkeeper::Application.count }
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
expect(json_response).to be_a Hash expect(json_response).to be_a Hash
expect(json_response['error']).to eq('redirect_uri is missing') expect(json_response['error']).to eq('redirect_uri is missing')
end end
Loading
@@ -69,7 +69,7 @@ describe API::Applications, :api do
Loading
@@ -69,7 +69,7 @@ describe API::Applications, :api do
post api('/applications', admin_user), params: { name: 'application_name', redirect_uri: 'http://application.url' } post api('/applications', admin_user), params: { name: 'application_name', redirect_uri: 'http://application.url' }
end.not_to change { Doorkeeper::Application.count } end.not_to change { Doorkeeper::Application.count }
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
expect(json_response).to be_a Hash expect(json_response).to be_a Hash
expect(json_response['error']).to eq('scopes is missing') expect(json_response['error']).to eq('scopes is missing')
end end
Loading
@@ -79,7 +79,7 @@ describe API::Applications, :api do
Loading
@@ -79,7 +79,7 @@ describe API::Applications, :api do
post api('/applications', admin_user), params: { name: 'application_name', redirect_uri: 'http://application.url', scopes: '', confidential: nil } post api('/applications', admin_user), params: { name: 'application_name', redirect_uri: 'http://application.url', scopes: '', confidential: nil }
end.not_to change { Doorkeeper::Application.count } end.not_to change { Doorkeeper::Application.count }
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
expect(json_response).to be_a Hash expect(json_response).to be_a Hash
expect(json_response['message']['confidential'].first).to eq('is not included in the list') expect(json_response['message']['confidential'].first).to eq('is not included in the list')
end end
Loading
@@ -91,7 +91,7 @@ describe API::Applications, :api do
Loading
@@ -91,7 +91,7 @@ describe API::Applications, :api do
post api('/applications', user), params: { name: 'application_name', redirect_uri: 'http://application.url', scopes: '' } post api('/applications', user), params: { name: 'application_name', redirect_uri: 'http://application.url', scopes: '' }
end.not_to change { Doorkeeper::Application.count } end.not_to change { Doorkeeper::Application.count }
   
expect(response).to have_gitlab_http_status(403) expect(response).to have_gitlab_http_status(:forbidden)
end end
end end
   
Loading
@@ -101,7 +101,7 @@ describe API::Applications, :api do
Loading
@@ -101,7 +101,7 @@ describe API::Applications, :api do
post api('/applications'), params: { name: 'application_name', redirect_uri: 'http://application.url' } post api('/applications'), params: { name: 'application_name', redirect_uri: 'http://application.url' }
end.not_to change { Doorkeeper::Application.count } end.not_to change { Doorkeeper::Application.count }
   
expect(response).to have_gitlab_http_status(401) expect(response).to have_gitlab_http_status(:unauthorized)
end end
end end
end end
Loading
@@ -111,7 +111,7 @@ describe API::Applications, :api do
Loading
@@ -111,7 +111,7 @@ describe API::Applications, :api do
it 'can list application' do it 'can list application' do
get api('/applications', admin_user) get api('/applications', admin_user)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response).to be_a(Array) expect(json_response).to be_a(Array)
end end
end end
Loading
@@ -120,7 +120,7 @@ describe API::Applications, :api do
Loading
@@ -120,7 +120,7 @@ describe API::Applications, :api do
it 'cannot list application' do it 'cannot list application' do
get api('/applications', user) get api('/applications', user)
   
expect(response).to have_gitlab_http_status(403) expect(response).to have_gitlab_http_status(:forbidden)
end end
end end
   
Loading
@@ -128,7 +128,7 @@ describe API::Applications, :api do
Loading
@@ -128,7 +128,7 @@ describe API::Applications, :api do
it 'cannot list application' do it 'cannot list application' do
get api('/applications') get api('/applications')
   
expect(response).to have_gitlab_http_status(401) expect(response).to have_gitlab_http_status(:unauthorized)
end end
end end
end end
Loading
@@ -140,7 +140,7 @@ describe API::Applications, :api do
Loading
@@ -140,7 +140,7 @@ describe API::Applications, :api do
delete api("/applications/#{application.id}", admin_user) delete api("/applications/#{application.id}", admin_user)
end.to change { Doorkeeper::Application.count }.by(-1) end.to change { Doorkeeper::Application.count }.by(-1)
   
expect(response).to have_gitlab_http_status(204) expect(response).to have_gitlab_http_status(:no_content)
end end
end end
   
Loading
@@ -148,7 +148,7 @@ describe API::Applications, :api do
Loading
@@ -148,7 +148,7 @@ describe API::Applications, :api do
it 'cannot delete an application' do it 'cannot delete an application' do
delete api("/applications/#{application.id}", user) delete api("/applications/#{application.id}", user)
   
expect(response).to have_gitlab_http_status(403) expect(response).to have_gitlab_http_status(:forbidden)
end end
end end
   
Loading
@@ -156,7 +156,7 @@ describe API::Applications, :api do
Loading
@@ -156,7 +156,7 @@ describe API::Applications, :api do
it 'cannot delete an application' do it 'cannot delete an application' do
delete api("/applications/#{application.id}") delete api("/applications/#{application.id}")
   
expect(response).to have_gitlab_http_status(401) expect(response).to have_gitlab_http_status(:unauthorized)
end end
end end
end end
Loading
Loading
Loading
@@ -20,7 +20,7 @@ describe API::AwardEmoji do
Loading
@@ -20,7 +20,7 @@ describe API::AwardEmoji do
it "returns an array of award_emoji" do it "returns an array of award_emoji" do
get api("/projects/#{project.id}/issues/#{issue.iid}/award_emoji", user) get api("/projects/#{project.id}/issues/#{issue.iid}/award_emoji", user)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response).to be_an Array expect(json_response).to be_an Array
expect(json_response.first['name']).to eq(award_emoji.name) expect(json_response.first['name']).to eq(award_emoji.name)
end end
Loading
@@ -28,7 +28,7 @@ describe API::AwardEmoji do
Loading
@@ -28,7 +28,7 @@ describe API::AwardEmoji do
it "returns a 404 error when issue id not found" do it "returns a 404 error when issue id not found" do
get api("/projects/#{project.id}/issues/12345/award_emoji", user) get api("/projects/#{project.id}/issues/12345/award_emoji", user)
   
expect(response).to have_gitlab_http_status(404) expect(response).to have_gitlab_http_status(:not_found)
end end
end end
   
Loading
@@ -36,7 +36,7 @@ describe API::AwardEmoji do
Loading
@@ -36,7 +36,7 @@ describe API::AwardEmoji do
it "returns an array of award_emoji" do it "returns an array of award_emoji" do
get api("/projects/#{project.id}/merge_requests/#{merge_request.iid}/award_emoji", user) get api("/projects/#{project.id}/merge_requests/#{merge_request.iid}/award_emoji", user)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response).to include_pagination_headers expect(response).to include_pagination_headers
expect(json_response).to be_an Array expect(json_response).to be_an Array
expect(json_response.first['name']).to eq(downvote.name) expect(json_response.first['name']).to eq(downvote.name)
Loading
@@ -50,7 +50,7 @@ describe API::AwardEmoji do
Loading
@@ -50,7 +50,7 @@ describe API::AwardEmoji do
it 'returns the awarded emoji' do it 'returns the awarded emoji' do
get api("/projects/#{project.id}/snippets/#{snippet.id}/award_emoji", user) get api("/projects/#{project.id}/snippets/#{snippet.id}/award_emoji", user)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response).to be_an Array expect(json_response).to be_an Array
expect(json_response.first['name']).to eq(award.name) expect(json_response.first['name']).to eq(award.name)
end end
Loading
@@ -62,7 +62,7 @@ describe API::AwardEmoji do
Loading
@@ -62,7 +62,7 @@ describe API::AwardEmoji do
   
get api("/projects/#{project.id}/merge_requests/#{merge_request.iid}/award_emoji", user1) get api("/projects/#{project.id}/merge_requests/#{merge_request.iid}/award_emoji", user1)
   
expect(response).to have_gitlab_http_status(404) expect(response).to have_gitlab_http_status(:not_found)
end end
end end
end end
Loading
@@ -73,7 +73,7 @@ describe API::AwardEmoji do
Loading
@@ -73,7 +73,7 @@ describe API::AwardEmoji do
it 'returns an array of award emoji' do it 'returns an array of award emoji' do
get api("/projects/#{project.id}/issues/#{issue.iid}/notes/#{note.id}/award_emoji", user) get api("/projects/#{project.id}/issues/#{issue.iid}/notes/#{note.id}/award_emoji", user)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response).to be_an Array expect(json_response).to be_an Array
expect(json_response.first['name']).to eq(rocket.name) expect(json_response.first['name']).to eq(rocket.name)
end end
Loading
@@ -84,7 +84,7 @@ describe API::AwardEmoji do
Loading
@@ -84,7 +84,7 @@ describe API::AwardEmoji do
it "returns the award emoji" do it "returns the award emoji" do
get api("/projects/#{project.id}/issues/#{issue.iid}/award_emoji/#{award_emoji.id}", user) get api("/projects/#{project.id}/issues/#{issue.iid}/award_emoji/#{award_emoji.id}", user)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response['name']).to eq(award_emoji.name) expect(json_response['name']).to eq(award_emoji.name)
expect(json_response['awardable_id']).to eq(issue.id) expect(json_response['awardable_id']).to eq(issue.id)
expect(json_response['awardable_type']).to eq("Issue") expect(json_response['awardable_type']).to eq("Issue")
Loading
@@ -93,7 +93,7 @@ describe API::AwardEmoji do
Loading
@@ -93,7 +93,7 @@ describe API::AwardEmoji do
it "returns a 404 error if the award is not found" do it "returns a 404 error if the award is not found" do
get api("/projects/#{project.id}/issues/#{issue.iid}/award_emoji/12345", user) get api("/projects/#{project.id}/issues/#{issue.iid}/award_emoji/12345", user)
   
expect(response).to have_gitlab_http_status(404) expect(response).to have_gitlab_http_status(:not_found)
end end
end end
   
Loading
@@ -101,7 +101,7 @@ describe API::AwardEmoji do
Loading
@@ -101,7 +101,7 @@ describe API::AwardEmoji do
it 'returns the award emoji' do it 'returns the award emoji' do
get api("/projects/#{project.id}/merge_requests/#{merge_request.iid}/award_emoji/#{downvote.id}", user) get api("/projects/#{project.id}/merge_requests/#{merge_request.iid}/award_emoji/#{downvote.id}", user)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response['name']).to eq(downvote.name) expect(json_response['name']).to eq(downvote.name)
expect(json_response['awardable_id']).to eq(merge_request.id) expect(json_response['awardable_id']).to eq(merge_request.id)
expect(json_response['awardable_type']).to eq("MergeRequest") expect(json_response['awardable_type']).to eq("MergeRequest")
Loading
@@ -115,7 +115,7 @@ describe API::AwardEmoji do
Loading
@@ -115,7 +115,7 @@ describe API::AwardEmoji do
it 'returns the awarded emoji' do it 'returns the awarded emoji' do
get api("/projects/#{project.id}/snippets/#{snippet.id}/award_emoji/#{award.id}", user) get api("/projects/#{project.id}/snippets/#{snippet.id}/award_emoji/#{award.id}", user)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response['name']).to eq(award.name) expect(json_response['name']).to eq(award.name)
expect(json_response['awardable_id']).to eq(snippet.id) expect(json_response['awardable_id']).to eq(snippet.id)
expect(json_response['awardable_type']).to eq("Snippet") expect(json_response['awardable_type']).to eq("Snippet")
Loading
@@ -128,7 +128,7 @@ describe API::AwardEmoji do
Loading
@@ -128,7 +128,7 @@ describe API::AwardEmoji do
   
get api("/projects/#{project.id}/merge_requests/#{merge_request.iid}/award_emoji/#{downvote.id}", user1) get api("/projects/#{project.id}/merge_requests/#{merge_request.iid}/award_emoji/#{downvote.id}", user1)
   
expect(response).to have_gitlab_http_status(404) expect(response).to have_gitlab_http_status(:not_found)
end end
end end
end end
Loading
@@ -139,7 +139,7 @@ describe API::AwardEmoji do
Loading
@@ -139,7 +139,7 @@ describe API::AwardEmoji do
it 'returns an award emoji' do it 'returns an award emoji' do
get api("/projects/#{project.id}/issues/#{issue.iid}/notes/#{note.id}/award_emoji/#{rocket.id}", user) get api("/projects/#{project.id}/issues/#{issue.iid}/notes/#{note.id}/award_emoji/#{rocket.id}", user)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response).not_to be_an Array expect(json_response).not_to be_an Array
expect(json_response['name']).to eq(rocket.name) expect(json_response['name']).to eq(rocket.name)
end end
Loading
@@ -152,7 +152,7 @@ describe API::AwardEmoji do
Loading
@@ -152,7 +152,7 @@ describe API::AwardEmoji do
it "creates a new award emoji" do it "creates a new award emoji" do
post api("/projects/#{project.id}/issues/#{issue.iid}/award_emoji", user), params: { name: 'blowfish' } post api("/projects/#{project.id}/issues/#{issue.iid}/award_emoji", user), params: { name: 'blowfish' }
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response['name']).to eq('blowfish') expect(json_response['name']).to eq('blowfish')
expect(json_response['user']['username']).to eq(user.username) expect(json_response['user']['username']).to eq(user.username)
end end
Loading
@@ -168,13 +168,13 @@ describe API::AwardEmoji do
Loading
@@ -168,13 +168,13 @@ describe API::AwardEmoji do
it "returns a 400 bad request error if the name is not given" do it "returns a 400 bad request error if the name is not given" do
post api("/projects/#{project.id}/issues/#{issue.iid}/award_emoji", user) post api("/projects/#{project.id}/issues/#{issue.iid}/award_emoji", user)
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
end end
   
it "returns a 401 unauthorized error if the user is not authenticated" do it "returns a 401 unauthorized error if the user is not authenticated" do
post api("/projects/#{project.id}/issues/#{issue.iid}/award_emoji"), params: { name: 'thumbsup' } post api("/projects/#{project.id}/issues/#{issue.iid}/award_emoji"), params: { name: 'thumbsup' }
   
expect(response).to have_gitlab_http_status(401) expect(response).to have_gitlab_http_status(:unauthorized)
end end
   
it "normalizes +1 as thumbsup award" do it "normalizes +1 as thumbsup award" do
Loading
@@ -188,7 +188,7 @@ describe API::AwardEmoji do
Loading
@@ -188,7 +188,7 @@ describe API::AwardEmoji do
post api("/projects/#{project.id}/issues/#{issue.iid}/award_emoji", user), params: { name: 'thumbsup' } post api("/projects/#{project.id}/issues/#{issue.iid}/award_emoji", user), params: { name: 'thumbsup' }
post api("/projects/#{project.id}/issues/#{issue.iid}/award_emoji", user), params: { name: 'thumbsup' } post api("/projects/#{project.id}/issues/#{issue.iid}/award_emoji", user), params: { name: 'thumbsup' }
   
expect(response).to have_gitlab_http_status(404) expect(response).to have_gitlab_http_status(:not_found)
expect(json_response["message"]).to match("has already been taken") expect(json_response["message"]).to match("has already been taken")
end end
end end
Loading
@@ -200,7 +200,7 @@ describe API::AwardEmoji do
Loading
@@ -200,7 +200,7 @@ describe API::AwardEmoji do
   
post api("/projects/#{project.id}/snippets/#{snippet.id}/award_emoji", user), params: { name: 'blowfish' } post api("/projects/#{project.id}/snippets/#{snippet.id}/award_emoji", user), params: { name: 'blowfish' }
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response['name']).to eq('blowfish') expect(json_response['name']).to eq('blowfish')
expect(json_response['user']['username']).to eq(user.username) expect(json_response['user']['username']).to eq(user.username)
end end
Loading
@@ -215,7 +215,7 @@ describe API::AwardEmoji do
Loading
@@ -215,7 +215,7 @@ describe API::AwardEmoji do
post api("/projects/#{project.id}/issues/#{issue.iid}/notes/#{note.id}/award_emoji", user), params: { name: 'rocket' } post api("/projects/#{project.id}/issues/#{issue.iid}/notes/#{note.id}/award_emoji", user), params: { name: 'rocket' }
end.to change { note.award_emoji.count }.from(0).to(1) end.to change { note.award_emoji.count }.from(0).to(1)
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response['user']['username']).to eq(user.username) expect(json_response['user']['username']).to eq(user.username)
end end
   
Loading
@@ -238,7 +238,7 @@ describe API::AwardEmoji do
Loading
@@ -238,7 +238,7 @@ describe API::AwardEmoji do
post api("/projects/#{project.id}/issues/#{issue.iid}/notes/#{note.id}/award_emoji", user), params: { name: 'rocket' } post api("/projects/#{project.id}/issues/#{issue.iid}/notes/#{note.id}/award_emoji", user), params: { name: 'rocket' }
post api("/projects/#{project.id}/issues/#{issue.iid}/notes/#{note.id}/award_emoji", user), params: { name: 'rocket' } post api("/projects/#{project.id}/issues/#{issue.iid}/notes/#{note.id}/award_emoji", user), params: { name: 'rocket' }
   
expect(response).to have_gitlab_http_status(404) expect(response).to have_gitlab_http_status(:not_found)
expect(json_response["message"]).to match("has already been taken") expect(json_response["message"]).to match("has already been taken")
end end
end end
Loading
@@ -250,14 +250,14 @@ describe API::AwardEmoji do
Loading
@@ -250,14 +250,14 @@ describe API::AwardEmoji do
expect do expect do
delete api("/projects/#{project.id}/issues/#{issue.iid}/award_emoji/#{award_emoji.id}", user) delete api("/projects/#{project.id}/issues/#{issue.iid}/award_emoji/#{award_emoji.id}", user)
   
expect(response).to have_gitlab_http_status(204) expect(response).to have_gitlab_http_status(:no_content)
end.to change { issue.award_emoji.count }.from(1).to(0) end.to change { issue.award_emoji.count }.from(1).to(0)
end end
   
it 'returns a 404 error when the award emoji can not be found' do it 'returns a 404 error when the award emoji can not be found' do
delete api("/projects/#{project.id}/issues/#{issue.iid}/award_emoji/12345", user) delete api("/projects/#{project.id}/issues/#{issue.iid}/award_emoji/12345", user)
   
expect(response).to have_gitlab_http_status(404) expect(response).to have_gitlab_http_status(:not_found)
end end
   
it_behaves_like '412 response' do it_behaves_like '412 response' do
Loading
@@ -270,14 +270,14 @@ describe API::AwardEmoji do
Loading
@@ -270,14 +270,14 @@ describe API::AwardEmoji do
expect do expect do
delete api("/projects/#{project.id}/merge_requests/#{merge_request.iid}/award_emoji/#{downvote.id}", user) delete api("/projects/#{project.id}/merge_requests/#{merge_request.iid}/award_emoji/#{downvote.id}", user)
   
expect(response).to have_gitlab_http_status(204) expect(response).to have_gitlab_http_status(:no_content)
end.to change { merge_request.award_emoji.count }.from(1).to(0) end.to change { merge_request.award_emoji.count }.from(1).to(0)
end end
   
it 'returns a 404 error when note id not found' do it 'returns a 404 error when note id not found' do
delete api("/projects/#{project.id}/merge_requests/#{merge_request.iid}/notes/12345", user) delete api("/projects/#{project.id}/merge_requests/#{merge_request.iid}/notes/12345", user)
   
expect(response).to have_gitlab_http_status(404) expect(response).to have_gitlab_http_status(:not_found)
end end
   
it_behaves_like '412 response' do it_behaves_like '412 response' do
Loading
@@ -293,7 +293,7 @@ describe API::AwardEmoji do
Loading
@@ -293,7 +293,7 @@ describe API::AwardEmoji do
expect do expect do
delete api("/projects/#{project.id}/snippets/#{snippet.id}/award_emoji/#{award.id}", user) delete api("/projects/#{project.id}/snippets/#{snippet.id}/award_emoji/#{award.id}", user)
   
expect(response).to have_gitlab_http_status(204) expect(response).to have_gitlab_http_status(:no_content)
end.to change { snippet.award_emoji.count }.from(1).to(0) end.to change { snippet.award_emoji.count }.from(1).to(0)
end end
   
Loading
@@ -310,7 +310,7 @@ describe API::AwardEmoji do
Loading
@@ -310,7 +310,7 @@ describe API::AwardEmoji do
expect do expect do
delete api("/projects/#{project.id}/issues/#{issue.iid}/notes/#{note.id}/award_emoji/#{rocket.id}", user) delete api("/projects/#{project.id}/issues/#{issue.iid}/notes/#{note.id}/award_emoji/#{rocket.id}", user)
   
expect(response).to have_gitlab_http_status(204) expect(response).to have_gitlab_http_status(:no_content)
end.to change { note.award_emoji.count }.from(1).to(0) end.to change { note.award_emoji.count }.from(1).to(0)
end end
   
Loading
Loading
Loading
@@ -35,7 +35,7 @@ describe API::Badges do
Loading
@@ -35,7 +35,7 @@ describe API::Badges do
   
get api("/#{source_type.pluralize}/#{source.id}/badges", user) get api("/#{source_type.pluralize}/#{source.id}/badges", user)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response).to include_pagination_headers expect(response).to include_pagination_headers
expect(json_response).to be_an Array expect(json_response).to be_an Array
expect(json_response.size).to eq(badges_count) expect(json_response.size).to eq(badges_count)
Loading
@@ -80,7 +80,7 @@ describe API::Badges do
Loading
@@ -80,7 +80,7 @@ describe API::Badges do
   
get api("/#{source_type.pluralize}/#{source.id}/badges/#{badge.id}", user) get api("/#{source_type.pluralize}/#{source.id}/badges/#{badge.id}", user)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response['name']).to eq(badge.name) expect(json_response['name']).to eq(badge.name)
expect(json_response['id']).to eq(badge.id) expect(json_response['id']).to eq(badge.id)
expect(json_response['link_url']).to eq(badge.link_url) expect(json_response['link_url']).to eq(badge.link_url)
Loading
@@ -120,7 +120,7 @@ describe API::Badges do
Loading
@@ -120,7 +120,7 @@ describe API::Badges do
post api("/#{source_type.pluralize}/#{source.id}/badges", user), post api("/#{source_type.pluralize}/#{source.id}/badges", user),
params: { link_url: example_url, image_url: example_url2 } params: { link_url: example_url, image_url: example_url2 }
   
expect(response).to have_gitlab_http_status(403) expect(response).to have_gitlab_http_status(:forbidden)
end end
end end
end end
Loading
@@ -132,7 +132,7 @@ describe API::Badges do
Loading
@@ -132,7 +132,7 @@ describe API::Badges do
post api("/#{source_type.pluralize}/#{source.id}/badges", maintainer), post api("/#{source_type.pluralize}/#{source.id}/badges", maintainer),
params: { name: example_name, link_url: example_url, image_url: example_url2 } params: { name: example_name, link_url: example_url, image_url: example_url2 }
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
end.to change { source.badges.count }.by(1) end.to change { source.badges.count }.by(1)
   
expect(json_response['name']).to eq(example_name) expect(json_response['name']).to eq(example_name)
Loading
@@ -146,21 +146,21 @@ describe API::Badges do
Loading
@@ -146,21 +146,21 @@ describe API::Badges do
post api("/#{source_type.pluralize}/#{source.id}/badges", maintainer), post api("/#{source_type.pluralize}/#{source.id}/badges", maintainer),
params: { link_url: example_url } params: { link_url: example_url }
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
end end
   
it 'returns 400 when image_url is not given' do it 'returns 400 when image_url is not given' do
post api("/#{source_type.pluralize}/#{source.id}/badges", maintainer), post api("/#{source_type.pluralize}/#{source.id}/badges", maintainer),
params: { image_url: example_url2 } params: { image_url: example_url2 }
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
end end
   
it 'returns 400 when link_url or image_url is not valid' do it 'returns 400 when link_url or image_url is not valid' do
post api("/#{source_type.pluralize}/#{source.id}/badges", maintainer), post api("/#{source_type.pluralize}/#{source.id}/badges", maintainer),
params: { link_url: 'whatever', image_url: 'whatever' } params: { link_url: 'whatever', image_url: 'whatever' }
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
end end
end end
end end
Loading
@@ -192,7 +192,7 @@ describe API::Badges do
Loading
@@ -192,7 +192,7 @@ describe API::Badges do
put api("/#{source_type.pluralize}/#{source.id}/badges/#{badge.id}", user), put api("/#{source_type.pluralize}/#{source.id}/badges/#{badge.id}", user),
params: { link_url: example_url } params: { link_url: example_url }
   
expect(response).to have_gitlab_http_status(403) expect(response).to have_gitlab_http_status(:forbidden)
end end
end end
end end
Loading
@@ -203,7 +203,7 @@ describe API::Badges do
Loading
@@ -203,7 +203,7 @@ describe API::Badges do
put api("/#{source_type.pluralize}/#{source.id}/badges/#{badge.id}", maintainer), put api("/#{source_type.pluralize}/#{source.id}/badges/#{badge.id}", maintainer),
params: { name: example_name, link_url: example_url, image_url: example_url2 } params: { name: example_name, link_url: example_url, image_url: example_url2 }
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response['name']).to eq(example_name) expect(json_response['name']).to eq(example_name)
expect(json_response['link_url']).to eq(example_url) expect(json_response['link_url']).to eq(example_url)
expect(json_response['image_url']).to eq(example_url2) expect(json_response['image_url']).to eq(example_url2)
Loading
@@ -215,7 +215,7 @@ describe API::Badges do
Loading
@@ -215,7 +215,7 @@ describe API::Badges do
put api("/#{source_type.pluralize}/#{source.id}/badges/#{badge.id}", maintainer), put api("/#{source_type.pluralize}/#{source.id}/badges/#{badge.id}", maintainer),
params: { link_url: 'whatever', image_url: 'whatever' } params: { link_url: 'whatever', image_url: 'whatever' }
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
end end
end end
end end
Loading
@@ -240,7 +240,7 @@ describe API::Badges do
Loading
@@ -240,7 +240,7 @@ describe API::Badges do
   
delete api("/#{source_type.pluralize}/#{source.id}/badges/#{badge.id}", user) delete api("/#{source_type.pluralize}/#{source.id}/badges/#{badge.id}", user)
   
expect(response).to have_gitlab_http_status(403) expect(response).to have_gitlab_http_status(:forbidden)
end end
end end
end end
Loading
@@ -251,7 +251,7 @@ describe API::Badges do
Loading
@@ -251,7 +251,7 @@ describe API::Badges do
expect do expect do
delete api("/#{source_type.pluralize}/#{source.id}/badges/#{badge.id}", maintainer) delete api("/#{source_type.pluralize}/#{source.id}/badges/#{badge.id}", maintainer)
   
expect(response).to have_gitlab_http_status(204) expect(response).to have_gitlab_http_status(:no_content)
end.to change { source.badges.count }.by(-1) end.to change { source.badges.count }.by(-1)
end end
   
Loading
@@ -263,7 +263,7 @@ describe API::Badges do
Loading
@@ -263,7 +263,7 @@ describe API::Badges do
it 'returns 404 if badge does not exist' do it 'returns 404 if badge does not exist' do
delete api("/#{source_type.pluralize}/#{source.id}/badges/123", maintainer) delete api("/#{source_type.pluralize}/#{source.id}/badges/123", maintainer)
   
expect(response).to have_gitlab_http_status(404) expect(response).to have_gitlab_http_status(:not_found)
end end
end end
end end
Loading
@@ -290,7 +290,7 @@ describe API::Badges do
Loading
@@ -290,7 +290,7 @@ describe API::Badges do
   
get api("/#{source_type.pluralize}/#{source.id}/badges/render?link_url=#{example_url}&image_url=#{example_url2}", user) get api("/#{source_type.pluralize}/#{source.id}/badges/render?link_url=#{example_url}&image_url=#{example_url2}", user)
   
expect(response).to have_gitlab_http_status(403) expect(response).to have_gitlab_http_status(:forbidden)
end end
end end
end end
Loading
@@ -300,7 +300,7 @@ describe API::Badges do
Loading
@@ -300,7 +300,7 @@ describe API::Badges do
it 'gets the rendered badge values' do it 'gets the rendered badge values' do
get api("/#{source_type.pluralize}/#{source.id}/badges/render?link_url=#{example_url}&image_url=#{example_url2}", maintainer) get api("/#{source_type.pluralize}/#{source.id}/badges/render?link_url=#{example_url}&image_url=#{example_url2}", maintainer)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
   
expect(json_response.keys).to contain_exactly('name', 'link_url', 'rendered_link_url', 'image_url', 'rendered_image_url') expect(json_response.keys).to contain_exactly('name', 'link_url', 'rendered_link_url', 'image_url', 'rendered_image_url')
expect(json_response['link_url']).to eq(example_url) expect(json_response['link_url']).to eq(example_url)
Loading
@@ -313,19 +313,19 @@ describe API::Badges do
Loading
@@ -313,19 +313,19 @@ describe API::Badges do
it 'returns 400 when link_url is not given' do it 'returns 400 when link_url is not given' do
get api("/#{source_type.pluralize}/#{source.id}/badges/render?link_url=#{example_url}", maintainer) get api("/#{source_type.pluralize}/#{source.id}/badges/render?link_url=#{example_url}", maintainer)
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
end end
   
it 'returns 400 when image_url is not given' do it 'returns 400 when image_url is not given' do
get api("/#{source_type.pluralize}/#{source.id}/badges/render?image_url=#{example_url}", maintainer) get api("/#{source_type.pluralize}/#{source.id}/badges/render?image_url=#{example_url}", maintainer)
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
end end
   
it 'returns 400 when link_url or image_url is not valid' do it 'returns 400 when link_url or image_url is not valid' do
get api("/#{source_type.pluralize}/#{source.id}/badges/render?link_url=whatever&image_url=whatever", maintainer) get api("/#{source_type.pluralize}/#{source.id}/badges/render?link_url=whatever&image_url=whatever", maintainer)
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
end end
end end
end end
Loading
@@ -335,7 +335,7 @@ describe API::Badges do
Loading
@@ -335,7 +335,7 @@ describe API::Badges do
it 'cannot delete badges owned by the project group' do it 'cannot delete badges owned by the project group' do
delete api("/projects/#{project.id}/badges/#{project_group.badges.first.id}", maintainer) delete api("/projects/#{project.id}/badges/#{project_group.badges.first.id}", maintainer)
   
expect(response).to have_gitlab_http_status(403) expect(response).to have_gitlab_http_status(:forbidden)
end end
end end
end end
Loading
Loading
Loading
@@ -45,7 +45,7 @@ describe API::Boards do
Loading
@@ -45,7 +45,7 @@ describe API::Boards do
   
post api(url, user), params: { label_id: group_label.id } post api(url, user), params: { label_id: group_label.id }
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response['label']['name']).to eq(group_label.title) expect(json_response['label']['name']).to eq(group_label.title)
expect(json_response['position']).to eq(3) expect(json_response['position']).to eq(3)
end end
Loading
@@ -60,7 +60,7 @@ describe API::Boards do
Loading
@@ -60,7 +60,7 @@ describe API::Boards do
   
post api(url, user), params: { label_id: group_label.id } post api(url, user), params: { label_id: group_label.id }
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response['label']['name']).to eq(group_label.title) expect(json_response['label']['name']).to eq(group_label.title)
end end
end end
Loading
@@ -78,7 +78,7 @@ describe API::Boards do
Loading
@@ -78,7 +78,7 @@ describe API::Boards do
   
post api(url, user), params: { label_id: group_label.id } post api(url, user), params: { label_id: group_label.id }
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response['label']['name']).to eq(group_label.title) expect(json_response['label']['name']).to eq(group_label.title)
end end
end end
Loading
Loading
Loading
@@ -31,7 +31,7 @@ describe API::Branches do
Loading
@@ -31,7 +31,7 @@ describe API::Branches do
it 'returns the repository branches' do it 'returns the repository branches' do
get api(route, current_user), params: { per_page: 100 } get api(route, current_user), params: { per_page: 100 }
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response).to match_response_schema('public_api/v4/branches') expect(response).to match_response_schema('public_api/v4/branches')
expect(response).to include_pagination_headers expect(response).to include_pagination_headers
branch_names = json_response.map { |x| x['name'] } branch_names = json_response.map { |x| x['name'] }
Loading
@@ -51,7 +51,7 @@ describe API::Branches do
Loading
@@ -51,7 +51,7 @@ describe API::Branches do
   
get api(route, current_user), params: { per_page: 2 } get api(route, current_user), params: { per_page: 2 }
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
   
check_merge_status(json_response) check_merge_status(json_response)
end end
Loading
@@ -59,7 +59,7 @@ describe API::Branches do
Loading
@@ -59,7 +59,7 @@ describe API::Branches do
it 'merge status matches reality on paginated input' do it 'merge status matches reality on paginated input' do
get api(route, current_user), params: { per_page: 20, page: 2 } get api(route, current_user), params: { per_page: 20, page: 2 }
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
   
check_merge_status(json_response) check_merge_status(json_response)
end end
Loading
@@ -155,14 +155,14 @@ describe API::Branches do
Loading
@@ -155,14 +155,14 @@ describe API::Branches do
it 'returns 204 No Content' do it 'returns 204 No Content' do
head api(route, user) head api(route, user)
   
expect(response).to have_gitlab_http_status(204) expect(response).to have_gitlab_http_status(:no_content)
expect(response.body).to be_empty expect(response.body).to be_empty
end end
   
it 'returns 404 Not Found' do it 'returns 404 Not Found' do
head api("/projects/#{project_id}/repository/branches/unknown", user) head api("/projects/#{project_id}/repository/branches/unknown", user)
   
expect(response).to have_gitlab_http_status(404) expect(response).to have_gitlab_http_status(:not_found)
expect(response.body).to be_empty expect(response.body).to be_empty
end end
end end
Loading
@@ -170,7 +170,7 @@ describe API::Branches do
Loading
@@ -170,7 +170,7 @@ describe API::Branches do
it 'returns the repository branch' do it 'returns the repository branch' do
get api(route, current_user) get api(route, current_user)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response).to match_response_schema('public_api/v4/branch') expect(response).to match_response_schema('public_api/v4/branch')
expect(json_response['name']).to eq(CGI.unescape(branch_name)) expect(json_response['name']).to eq(CGI.unescape(branch_name))
end end
Loading
@@ -298,7 +298,7 @@ describe API::Branches do
Loading
@@ -298,7 +298,7 @@ describe API::Branches do
it 'protects a single branch' do it 'protects a single branch' do
put api(route, current_user) put api(route, current_user)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response).to match_response_schema('public_api/v4/branch') expect(response).to match_response_schema('public_api/v4/branch')
expect(json_response['name']).to eq(CGI.unescape(branch_name)) expect(json_response['name']).to eq(CGI.unescape(branch_name))
expect(json_response['protected']).to eq(true) expect(json_response['protected']).to eq(true)
Loading
@@ -307,7 +307,7 @@ describe API::Branches do
Loading
@@ -307,7 +307,7 @@ describe API::Branches do
it 'protects a single branch and developers can push' do it 'protects a single branch and developers can push' do
put api(route, current_user), params: { developers_can_push: true } put api(route, current_user), params: { developers_can_push: true }
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response).to match_response_schema('public_api/v4/branch') expect(response).to match_response_schema('public_api/v4/branch')
expect(json_response['name']).to eq(CGI.unescape(branch_name)) expect(json_response['name']).to eq(CGI.unescape(branch_name))
expect(json_response['protected']).to eq(true) expect(json_response['protected']).to eq(true)
Loading
@@ -318,7 +318,7 @@ describe API::Branches do
Loading
@@ -318,7 +318,7 @@ describe API::Branches do
it 'protects a single branch and developers can merge' do it 'protects a single branch and developers can merge' do
put api(route, current_user), params: { developers_can_merge: true } put api(route, current_user), params: { developers_can_merge: true }
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response).to match_response_schema('public_api/v4/branch') expect(response).to match_response_schema('public_api/v4/branch')
expect(json_response['name']).to eq(CGI.unescape(branch_name)) expect(json_response['name']).to eq(CGI.unescape(branch_name))
expect(json_response['protected']).to eq(true) expect(json_response['protected']).to eq(true)
Loading
@@ -329,7 +329,7 @@ describe API::Branches do
Loading
@@ -329,7 +329,7 @@ describe API::Branches do
it 'protects a single branch and developers can push and merge' do it 'protects a single branch and developers can push and merge' do
put api(route, current_user), params: { developers_can_push: true, developers_can_merge: true } put api(route, current_user), params: { developers_can_push: true, developers_can_merge: true }
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response).to match_response_schema('public_api/v4/branch') expect(response).to match_response_schema('public_api/v4/branch')
expect(json_response['name']).to eq(CGI.unescape(branch_name)) expect(json_response['name']).to eq(CGI.unescape(branch_name))
expect(json_response['protected']).to eq(true) expect(json_response['protected']).to eq(true)
Loading
@@ -428,7 +428,7 @@ describe API::Branches do
Loading
@@ -428,7 +428,7 @@ describe API::Branches do
put api("/projects/#{project.id}/repository/branches/#{protected_branch.name}/protect", user), put api("/projects/#{project.id}/repository/branches/#{protected_branch.name}/protect", user),
params: { developers_can_push: false, developers_can_merge: false } params: { developers_can_push: false, developers_can_merge: false }
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response).to match_response_schema('public_api/v4/branch') expect(response).to match_response_schema('public_api/v4/branch')
expect(json_response['name']).to eq(protected_branch.name) expect(json_response['name']).to eq(protected_branch.name)
expect(json_response['protected']).to eq(true) expect(json_response['protected']).to eq(true)
Loading
@@ -446,7 +446,7 @@ describe API::Branches do
Loading
@@ -446,7 +446,7 @@ describe API::Branches do
put api("/projects/#{project.id}/repository/branches/#{protected_branch.name}/protect", user), put api("/projects/#{project.id}/repository/branches/#{protected_branch.name}/protect", user),
params: { developers_can_push: true, developers_can_merge: true } params: { developers_can_push: true, developers_can_merge: true }
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response).to match_response_schema('public_api/v4/branch') expect(response).to match_response_schema('public_api/v4/branch')
expect(json_response['name']).to eq(protected_branch.name) expect(json_response['name']).to eq(protected_branch.name)
expect(json_response['protected']).to eq(true) expect(json_response['protected']).to eq(true)
Loading
@@ -465,7 +465,7 @@ describe API::Branches do
Loading
@@ -465,7 +465,7 @@ describe API::Branches do
it 'unprotects a single branch' do it 'unprotects a single branch' do
put api(route, current_user) put api(route, current_user)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response).to match_response_schema('public_api/v4/branch') expect(response).to match_response_schema('public_api/v4/branch')
expect(json_response['name']).to eq(CGI.unescape(branch_name)) expect(json_response['name']).to eq(CGI.unescape(branch_name))
expect(json_response['protected']).to eq(false) expect(json_response['protected']).to eq(false)
Loading
@@ -559,7 +559,7 @@ describe API::Branches do
Loading
@@ -559,7 +559,7 @@ describe API::Branches do
it 'creates a new branch' do it 'creates a new branch' do
post api(route, current_user), params: { branch: 'feature1', ref: branch_sha } post api(route, current_user), params: { branch: 'feature1', ref: branch_sha }
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(response).to match_response_schema('public_api/v4/branch') expect(response).to match_response_schema('public_api/v4/branch')
expect(json_response['name']).to eq('feature1') expect(json_response['name']).to eq('feature1')
expect(json_response['commit']['id']).to eq(branch_sha) expect(json_response['commit']['id']).to eq(branch_sha)
Loading
@@ -604,25 +604,25 @@ describe API::Branches do
Loading
@@ -604,25 +604,25 @@ describe API::Branches do
it 'returns 400 if branch name is invalid' do it 'returns 400 if branch name is invalid' do
post api(route, user), params: { branch: 'new design', ref: branch_sha } post api(route, user), params: { branch: 'new design', ref: branch_sha }
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
expect(json_response['message']).to eq('Branch name is invalid') expect(json_response['message']).to eq('Branch name is invalid')
end end
   
it 'returns 400 if branch already exists', :clean_gitlab_redis_cache do it 'returns 400 if branch already exists', :clean_gitlab_redis_cache do
post api(route, user), params: { branch: 'new_design1', ref: branch_sha } post api(route, user), params: { branch: 'new_design1', ref: branch_sha }
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
   
post api(route, user), params: { branch: 'new_design1', ref: branch_sha } post api(route, user), params: { branch: 'new_design1', ref: branch_sha }
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
expect(json_response['message']).to eq('Branch already exists') expect(json_response['message']).to eq('Branch already exists')
end end
   
it 'returns 400 if ref name is invalid' do it 'returns 400 if ref name is invalid' do
post api(route, user), params: { branch: 'new_design3', ref: 'foo' } post api(route, user), params: { branch: 'new_design3', ref: 'foo' }
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
expect(json_response['message']).to eq('Invalid reference name: new_design3') expect(json_response['message']).to eq('Invalid reference name: new_design3')
end end
end end
Loading
@@ -637,19 +637,19 @@ describe API::Branches do
Loading
@@ -637,19 +637,19 @@ describe API::Branches do
it 'removes branch' do it 'removes branch' do
delete api("/projects/#{project.id}/repository/branches/#{branch_name}", user) delete api("/projects/#{project.id}/repository/branches/#{branch_name}", user)
   
expect(response).to have_gitlab_http_status(204) expect(response).to have_gitlab_http_status(:no_content)
end end
   
it 'removes a branch with dots in the branch name' do it 'removes a branch with dots in the branch name' do
delete api("/projects/#{project.id}/repository/branches/#{branch_with_dot.name}", user) delete api("/projects/#{project.id}/repository/branches/#{branch_with_dot.name}", user)
   
expect(response).to have_gitlab_http_status(204) expect(response).to have_gitlab_http_status(:no_content)
end end
   
it 'returns 404 if branch not exists' do it 'returns 404 if branch not exists' do
delete api("/projects/#{project.id}/repository/branches/foobar", user) delete api("/projects/#{project.id}/repository/branches/foobar", user)
   
expect(response).to have_gitlab_http_status(404) expect(response).to have_gitlab_http_status(:not_found)
end end
   
context 'when the branch refname is invalid' do context 'when the branch refname is invalid' do
Loading
@@ -676,14 +676,14 @@ describe API::Branches do
Loading
@@ -676,14 +676,14 @@ describe API::Branches do
it 'returns 202 with json body' do it 'returns 202 with json body' do
delete api("/projects/#{project.id}/repository/merged_branches", user) delete api("/projects/#{project.id}/repository/merged_branches", user)
   
expect(response).to have_gitlab_http_status(202) expect(response).to have_gitlab_http_status(:accepted)
expect(json_response['message']).to eql('202 Accepted') expect(json_response['message']).to eql('202 Accepted')
end end
   
it 'returns a 403 error if guest' do it 'returns a 403 error if guest' do
delete api("/projects/#{project.id}/repository/merged_branches", guest) delete api("/projects/#{project.id}/repository/merged_branches", guest)
   
expect(response).to have_gitlab_http_status(403) expect(response).to have_gitlab_http_status(:forbidden)
end end
end end
end end
Loading
@@ -13,7 +13,7 @@ describe API::BroadcastMessages do
Loading
@@ -13,7 +13,7 @@ describe API::BroadcastMessages do
   
get api('/broadcast_messages') get api('/broadcast_messages')
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response).to include_pagination_headers expect(response).to include_pagination_headers
expect(json_response).to be_kind_of(Array) expect(json_response).to be_kind_of(Array)
expect(json_response.first.keys) expect(json_response.first.keys)
Loading
@@ -25,7 +25,7 @@ describe API::BroadcastMessages do
Loading
@@ -25,7 +25,7 @@ describe API::BroadcastMessages do
it 'returns the specified message' do it 'returns the specified message' do
get api("/broadcast_messages/#{message.id}") get api("/broadcast_messages/#{message.id}")
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response['id']).to eq message.id expect(json_response['id']).to eq message.id
expect(json_response.keys) expect(json_response.keys)
.to match_array(%w(id message starts_at ends_at color font active target_path broadcast_type)) .to match_array(%w(id message starts_at ends_at color font active target_path broadcast_type))
Loading
@@ -36,13 +36,13 @@ describe API::BroadcastMessages do
Loading
@@ -36,13 +36,13 @@ describe API::BroadcastMessages do
it 'returns a 401 for anonymous users' do it 'returns a 401 for anonymous users' do
post api('/broadcast_messages'), params: attributes_for(:broadcast_message) post api('/broadcast_messages'), params: attributes_for(:broadcast_message)
   
expect(response).to have_gitlab_http_status(401) expect(response).to have_gitlab_http_status(:unauthorized)
end end
   
it 'returns a 403 for users' do it 'returns a 403 for users' do
post api('/broadcast_messages', user), params: attributes_for(:broadcast_message) post api('/broadcast_messages', user), params: attributes_for(:broadcast_message)
   
expect(response).to have_gitlab_http_status(403) expect(response).to have_gitlab_http_status(:forbidden)
end end
   
context 'as an admin' do context 'as an admin' do
Loading
@@ -52,7 +52,7 @@ describe API::BroadcastMessages do
Loading
@@ -52,7 +52,7 @@ describe API::BroadcastMessages do
   
post api('/broadcast_messages', admin), params: attrs post api('/broadcast_messages', admin), params: attrs
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
expect(json_response['error']).to eq 'message is missing' expect(json_response['error']).to eq 'message is missing'
end end
   
Loading
@@ -61,7 +61,7 @@ describe API::BroadcastMessages do
Loading
@@ -61,7 +61,7 @@ describe API::BroadcastMessages do
travel_to(time) do travel_to(time) do
post api('/broadcast_messages', admin), params: { message: 'Test message' } post api('/broadcast_messages', admin), params: { message: 'Test message' }
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response['starts_at']).to eq '2016-07-02T10:11:12.000Z' expect(json_response['starts_at']).to eq '2016-07-02T10:11:12.000Z'
expect(json_response['ends_at']).to eq '2016-07-02T11:11:12.000Z' expect(json_response['ends_at']).to eq '2016-07-02T11:11:12.000Z'
end end
Loading
@@ -72,7 +72,7 @@ describe API::BroadcastMessages do
Loading
@@ -72,7 +72,7 @@ describe API::BroadcastMessages do
   
post api('/broadcast_messages', admin), params: attrs post api('/broadcast_messages', admin), params: attrs
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response['color']).to eq attrs[:color] expect(json_response['color']).to eq attrs[:color]
expect(json_response['font']).to eq attrs[:font] expect(json_response['font']).to eq attrs[:font]
end end
Loading
@@ -82,7 +82,7 @@ describe API::BroadcastMessages do
Loading
@@ -82,7 +82,7 @@ describe API::BroadcastMessages do
   
post api('/broadcast_messages', admin), params: attrs post api('/broadcast_messages', admin), params: attrs
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response['target_path']).to eq attrs[:target_path] expect(json_response['target_path']).to eq attrs[:target_path]
end end
   
Loading
@@ -91,7 +91,7 @@ describe API::BroadcastMessages do
Loading
@@ -91,7 +91,7 @@ describe API::BroadcastMessages do
   
post api('/broadcast_messages', admin), params: attrs post api('/broadcast_messages', admin), params: attrs
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response['broadcast_type']).to eq attrs[:broadcast_type] expect(json_response['broadcast_type']).to eq attrs[:broadcast_type]
end end
   
Loading
@@ -100,7 +100,7 @@ describe API::BroadcastMessages do
Loading
@@ -100,7 +100,7 @@ describe API::BroadcastMessages do
   
post api('/broadcast_messages', admin), params: attrs post api('/broadcast_messages', admin), params: attrs
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response['broadcast_type']).to eq 'banner' expect(json_response['broadcast_type']).to eq 'banner'
end end
   
Loading
@@ -109,7 +109,7 @@ describe API::BroadcastMessages do
Loading
@@ -109,7 +109,7 @@ describe API::BroadcastMessages do
   
post api('/broadcast_messages', admin), params: attrs post api('/broadcast_messages', admin), params: attrs
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
end end
end end
end end
Loading
@@ -119,14 +119,14 @@ describe API::BroadcastMessages do
Loading
@@ -119,14 +119,14 @@ describe API::BroadcastMessages do
put api("/broadcast_messages/#{message.id}"), put api("/broadcast_messages/#{message.id}"),
params: attributes_for(:broadcast_message) params: attributes_for(:broadcast_message)
   
expect(response).to have_gitlab_http_status(401) expect(response).to have_gitlab_http_status(:unauthorized)
end end
   
it 'returns a 403 for users' do it 'returns a 403 for users' do
put api("/broadcast_messages/#{message.id}", user), put api("/broadcast_messages/#{message.id}", user),
params: attributes_for(:broadcast_message) params: attributes_for(:broadcast_message)
   
expect(response).to have_gitlab_http_status(403) expect(response).to have_gitlab_http_status(:forbidden)
end end
   
context 'as an admin' do context 'as an admin' do
Loading
@@ -135,7 +135,7 @@ describe API::BroadcastMessages do
Loading
@@ -135,7 +135,7 @@ describe API::BroadcastMessages do
   
put api("/broadcast_messages/#{message.id}", admin), params: attrs put api("/broadcast_messages/#{message.id}", admin), params: attrs
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response['color']).to eq attrs[:color] expect(json_response['color']).to eq attrs[:color]
expect(json_response['font']).to eq attrs[:font] expect(json_response['font']).to eq attrs[:font]
end end
Loading
@@ -147,7 +147,7 @@ describe API::BroadcastMessages do
Loading
@@ -147,7 +147,7 @@ describe API::BroadcastMessages do
   
put api("/broadcast_messages/#{message.id}", admin), params: attrs put api("/broadcast_messages/#{message.id}", admin), params: attrs
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response['starts_at']).to eq '2016-07-02T10:11:12.000Z' expect(json_response['starts_at']).to eq '2016-07-02T10:11:12.000Z'
expect(json_response['ends_at']).to eq '2016-07-02T13:11:12.000Z' expect(json_response['ends_at']).to eq '2016-07-02T13:11:12.000Z'
end end
Loading
@@ -158,7 +158,7 @@ describe API::BroadcastMessages do
Loading
@@ -158,7 +158,7 @@ describe API::BroadcastMessages do
   
put api("/broadcast_messages/#{message.id}", admin), params: attrs put api("/broadcast_messages/#{message.id}", admin), params: attrs
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect { message.reload }.to change { message.message }.to('new message') expect { message.reload }.to change { message.message }.to('new message')
end end
   
Loading
@@ -167,7 +167,7 @@ describe API::BroadcastMessages do
Loading
@@ -167,7 +167,7 @@ describe API::BroadcastMessages do
   
put api("/broadcast_messages/#{message.id}", admin), params: attrs put api("/broadcast_messages/#{message.id}", admin), params: attrs
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response['target_path']).to eq attrs[:target_path] expect(json_response['target_path']).to eq attrs[:target_path]
end end
   
Loading
@@ -176,7 +176,7 @@ describe API::BroadcastMessages do
Loading
@@ -176,7 +176,7 @@ describe API::BroadcastMessages do
   
put api("/broadcast_messages/#{message.id}", admin), params: attrs put api("/broadcast_messages/#{message.id}", admin), params: attrs
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response['broadcast_type']).to eq attrs[:broadcast_type] expect(json_response['broadcast_type']).to eq attrs[:broadcast_type]
end end
   
Loading
@@ -185,7 +185,7 @@ describe API::BroadcastMessages do
Loading
@@ -185,7 +185,7 @@ describe API::BroadcastMessages do
   
put api("/broadcast_messages/#{message.id}", admin), params: attrs put api("/broadcast_messages/#{message.id}", admin), params: attrs
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
end end
end end
end end
Loading
@@ -195,14 +195,14 @@ describe API::BroadcastMessages do
Loading
@@ -195,14 +195,14 @@ describe API::BroadcastMessages do
delete api("/broadcast_messages/#{message.id}"), delete api("/broadcast_messages/#{message.id}"),
params: attributes_for(:broadcast_message) params: attributes_for(:broadcast_message)
   
expect(response).to have_gitlab_http_status(401) expect(response).to have_gitlab_http_status(:unauthorized)
end end
   
it 'returns a 403 for users' do it 'returns a 403 for users' do
delete api("/broadcast_messages/#{message.id}", user), delete api("/broadcast_messages/#{message.id}", user),
params: attributes_for(:broadcast_message) params: attributes_for(:broadcast_message)
   
expect(response).to have_gitlab_http_status(403) expect(response).to have_gitlab_http_status(:forbidden)
end end
   
it_behaves_like '412 response' do it_behaves_like '412 response' do
Loading
@@ -213,7 +213,7 @@ describe API::BroadcastMessages do
Loading
@@ -213,7 +213,7 @@ describe API::BroadcastMessages do
expect do expect do
delete api("/broadcast_messages/#{message.id}", admin) delete api("/broadcast_messages/#{message.id}", admin)
   
expect(response).to have_gitlab_http_status(204) expect(response).to have_gitlab_http_status(:no_content)
end.to change { BroadcastMessage.count }.by(-1) end.to change { BroadcastMessage.count }.by(-1)
end end
end end
Loading
Loading
Loading
@@ -37,7 +37,7 @@ describe API::CommitStatuses do
Loading
@@ -37,7 +37,7 @@ describe API::CommitStatuses do
end end
   
it 'returns latest commit statuses' do it 'returns latest commit statuses' do
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
   
expect(response).to include_pagination_headers expect(response).to include_pagination_headers
expect(json_response).to be_an Array expect(json_response).to be_an Array
Loading
@@ -53,7 +53,7 @@ describe API::CommitStatuses do
Loading
@@ -53,7 +53,7 @@ describe API::CommitStatuses do
end end
   
it 'returns all commit statuses' do it 'returns all commit statuses' do
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response).to include_pagination_headers expect(response).to include_pagination_headers
expect(json_response).to be_an Array expect(json_response).to be_an Array
expect(statuses_id).to contain_exactly(status1.id, status2.id, expect(statuses_id).to contain_exactly(status1.id, status2.id,
Loading
@@ -68,7 +68,7 @@ describe API::CommitStatuses do
Loading
@@ -68,7 +68,7 @@ describe API::CommitStatuses do
end end
   
it 'returns latest commit statuses for specific ref' do it 'returns latest commit statuses for specific ref' do
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response).to include_pagination_headers expect(response).to include_pagination_headers
expect(json_response).to be_an Array expect(json_response).to be_an Array
expect(statuses_id).to contain_exactly(status3.id, status5.id) expect(statuses_id).to contain_exactly(status3.id, status5.id)
Loading
@@ -81,7 +81,7 @@ describe API::CommitStatuses do
Loading
@@ -81,7 +81,7 @@ describe API::CommitStatuses do
end end
   
it 'return latest commit statuses for specific name' do it 'return latest commit statuses for specific name' do
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response).to include_pagination_headers expect(response).to include_pagination_headers
expect(json_response).to be_an Array expect(json_response).to be_an Array
expect(statuses_id).to contain_exactly(status4.id, status5.id) expect(statuses_id).to contain_exactly(status4.id, status5.id)
Loading
@@ -108,7 +108,7 @@ describe API::CommitStatuses do
Loading
@@ -108,7 +108,7 @@ describe API::CommitStatuses do
end end
   
it "does not return project commits" do it "does not return project commits" do
expect(response).to have_gitlab_http_status(403) expect(response).to have_gitlab_http_status(:forbidden)
end end
end end
   
Loading
@@ -118,7 +118,7 @@ describe API::CommitStatuses do
Loading
@@ -118,7 +118,7 @@ describe API::CommitStatuses do
end end
   
it "does not return project commits" do it "does not return project commits" do
expect(response).to have_gitlab_http_status(401) expect(response).to have_gitlab_http_status(:unauthorized)
end end
end end
end end
Loading
@@ -134,7 +134,7 @@ describe API::CommitStatuses do
Loading
@@ -134,7 +134,7 @@ describe API::CommitStatuses do
it 'creates commit status' do it 'creates commit status' do
post api(post_url, developer), params: { state: status } post api(post_url, developer), params: { state: status }
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response['sha']).to eq(commit.id) expect(json_response['sha']).to eq(commit.id)
expect(json_response['status']).to eq(status) expect(json_response['status']).to eq(status)
expect(json_response['name']).to eq('default') expect(json_response['name']).to eq('default')
Loading
@@ -162,7 +162,7 @@ describe API::CommitStatuses do
Loading
@@ -162,7 +162,7 @@ describe API::CommitStatuses do
   
job = pipeline.statuses.find_by_name(json_response['name']) job = pipeline.statuses.find_by_name(json_response['name'])
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(job.status).to eq('pending') expect(job.status).to eq('pending')
expect(job.stage_idx).to eq(GenericCommitStatus::EXTERNAL_STAGE_IDX) expect(job.stage_idx).to eq(GenericCommitStatus::EXTERNAL_STAGE_IDX)
end end
Loading
@@ -189,7 +189,7 @@ describe API::CommitStatuses do
Loading
@@ -189,7 +189,7 @@ describe API::CommitStatuses do
it "to #{status}" do it "to #{status}" do
expect { post api(post_url, developer), params: { state: status } }.not_to change { CommitStatus.count } expect { post api(post_url, developer), params: { state: status } }.not_to change { CommitStatus.count }
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response['status']).to eq(status) expect(json_response['status']).to eq(status)
end end
end end
Loading
@@ -211,7 +211,7 @@ describe API::CommitStatuses do
Loading
@@ -211,7 +211,7 @@ describe API::CommitStatuses do
it 'creates commit status' do it 'creates commit status' do
subject subject
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response['sha']).to eq(commit.id) expect(json_response['sha']).to eq(commit.id)
expect(json_response['status']).to eq('success') expect(json_response['status']).to eq('success')
expect(json_response['name']).to eq('coverage') expect(json_response['name']).to eq('coverage')
Loading
@@ -227,7 +227,7 @@ describe API::CommitStatuses do
Loading
@@ -227,7 +227,7 @@ describe API::CommitStatuses do
it 'sets head pipeline' do it 'sets head pipeline' do
subject subject
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(merge_request.reload.head_pipeline).not_to be_nil expect(merge_request.reload.head_pipeline).not_to be_nil
end end
end end
Loading
@@ -254,7 +254,7 @@ describe API::CommitStatuses do
Loading
@@ -254,7 +254,7 @@ describe API::CommitStatuses do
end end
   
it 'updates a commit status' do it 'updates a commit status' do
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response['sha']).to eq(commit.id) expect(json_response['sha']).to eq(commit.id)
expect(json_response['status']).to eq('success') expect(json_response['status']).to eq('success')
expect(json_response['name']).to eq('coverage') expect(json_response['name']).to eq('coverage')
Loading
@@ -300,7 +300,7 @@ describe API::CommitStatuses do
Loading
@@ -300,7 +300,7 @@ describe API::CommitStatuses do
end end
   
it 'correctly posts a new commit status' do it 'correctly posts a new commit status' do
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response['sha']).to eq(commit.id) expect(json_response['sha']).to eq(commit.id)
expect(json_response['status']).to eq('success') expect(json_response['status']).to eq('success')
end end
Loading
@@ -318,7 +318,7 @@ describe API::CommitStatuses do
Loading
@@ -318,7 +318,7 @@ describe API::CommitStatuses do
end end
   
it 'does not create commit status' do it 'does not create commit status' do
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
end end
end end
   
Loading
@@ -328,7 +328,7 @@ describe API::CommitStatuses do
Loading
@@ -328,7 +328,7 @@ describe API::CommitStatuses do
end end
   
it 'does not create commit status' do it 'does not create commit status' do
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
end end
end end
   
Loading
@@ -342,7 +342,7 @@ describe API::CommitStatuses do
Loading
@@ -342,7 +342,7 @@ describe API::CommitStatuses do
let(:user) { developer } let(:user) { developer }
   
it 'does not create commit status' do it 'does not create commit status' do
expect(response).to have_gitlab_http_status(403) expect(response).to have_gitlab_http_status(:forbidden)
end end
end end
   
Loading
@@ -350,7 +350,7 @@ describe API::CommitStatuses do
Loading
@@ -350,7 +350,7 @@ describe API::CommitStatuses do
let(:user) { create_user(:maintainer) } let(:user) { create_user(:maintainer) }
   
it 'creates commit status' do it 'creates commit status' do
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
end end
end end
end end
Loading
@@ -363,7 +363,7 @@ describe API::CommitStatuses do
Loading
@@ -363,7 +363,7 @@ describe API::CommitStatuses do
end end
   
it 'returns not found error' do it 'returns not found error' do
expect(response).to have_gitlab_http_status(404) expect(response).to have_gitlab_http_status(:not_found)
end end
end end
   
Loading
@@ -376,7 +376,7 @@ describe API::CommitStatuses do
Loading
@@ -376,7 +376,7 @@ describe API::CommitStatuses do
end end
   
it 'responds with bad request status and validation errors' do it 'responds with bad request status and validation errors' do
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
expect(json_response['message']['target_url']) expect(json_response['message']['target_url'])
.to include 'is blocked: Only allowed schemes are http, https' .to include 'is blocked: Only allowed schemes are http, https'
end end
Loading
@@ -391,7 +391,7 @@ describe API::CommitStatuses do
Loading
@@ -391,7 +391,7 @@ describe API::CommitStatuses do
end end
   
it 'responds with bad request status and validation errors' do it 'responds with bad request status and validation errors' do
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
expect(json_response['message']['target_url']) expect(json_response['message']['target_url'])
.to include 'is blocked: Only allowed schemes are http, https' .to include 'is blocked: Only allowed schemes are http, https'
end end
Loading
@@ -407,7 +407,7 @@ describe API::CommitStatuses do
Loading
@@ -407,7 +407,7 @@ describe API::CommitStatuses do
end end
   
it 'responds with bad request status and validation errors' do it 'responds with bad request status and validation errors' do
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
expect(json_response['message']['name']) expect(json_response['message']['name'])
.to include 'has already been taken' .to include 'has already been taken'
end end
Loading
@@ -420,7 +420,7 @@ describe API::CommitStatuses do
Loading
@@ -420,7 +420,7 @@ describe API::CommitStatuses do
end end
   
it 'does not create commit status' do it 'does not create commit status' do
expect(response).to have_gitlab_http_status(403) expect(response).to have_gitlab_http_status(:forbidden)
end end
end end
   
Loading
@@ -430,7 +430,7 @@ describe API::CommitStatuses do
Loading
@@ -430,7 +430,7 @@ describe API::CommitStatuses do
end end
   
it 'does not create commit status' do it 'does not create commit status' do
expect(response).to have_gitlab_http_status(403) expect(response).to have_gitlab_http_status(:forbidden)
end end
end end
   
Loading
@@ -440,7 +440,7 @@ describe API::CommitStatuses do
Loading
@@ -440,7 +440,7 @@ describe API::CommitStatuses do
end end
   
it 'does not create commit status' do it 'does not create commit status' do
expect(response).to have_gitlab_http_status(401) expect(response).to have_gitlab_http_status(:unauthorized)
end end
end end
end end
Loading
Loading
Loading
@@ -28,7 +28,7 @@ describe API::Commits do
Loading
@@ -28,7 +28,7 @@ describe API::Commits do
   
get api(route, current_user) get api(route, current_user)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response).to match_response_schema(schema) expect(response).to match_response_schema(schema)
expect(json_response.first['id']).to eq(commit.id) expect(json_response.first['id']).to eq(commit.id)
expect(json_response.first['committer_name']).to eq(commit.committer_name) expect(json_response.first['committer_name']).to eq(commit.committer_name)
Loading
@@ -123,7 +123,7 @@ describe API::Commits do
Loading
@@ -123,7 +123,7 @@ describe API::Commits do
it "returns an invalid parameter error message" do it "returns an invalid parameter error message" do
get api("/projects/#{project_id}/repository/commits?since=invalid-date", user) get api("/projects/#{project_id}/repository/commits?since=invalid-date", user)
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
expect(json_response['error']).to eq('since is invalid') expect(json_response['error']).to eq('since is invalid')
end end
end end
Loading
@@ -305,13 +305,13 @@ describe API::Commits do
Loading
@@ -305,13 +305,13 @@ describe API::Commits do
it 'returns a 403 unauthorized for user without permissions' do it 'returns a 403 unauthorized for user without permissions' do
post api(url, guest) post api(url, guest)
   
expect(response).to have_gitlab_http_status(403) expect(response).to have_gitlab_http_status(:forbidden)
end end
   
it 'returns a 400 bad request if no params are given' do it 'returns a 400 bad request if no params are given' do
post api(url, user) post api(url, user)
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
end end
   
describe 'create' do describe 'create' do
Loading
@@ -365,7 +365,7 @@ describe API::Commits do
Loading
@@ -365,7 +365,7 @@ describe API::Commits do
it 'a new file in project repo' do it 'a new file in project repo' do
post api(url, user), params: valid_c_params post api(url, user), params: valid_c_params
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response['title']).to eq(message) expect(json_response['title']).to eq(message)
expect(json_response['committer_name']).to eq(user.name) expect(json_response['committer_name']).to eq(user.name)
expect(json_response['committer_email']).to eq(user.email) expect(json_response['committer_email']).to eq(user.email)
Loading
@@ -374,7 +374,7 @@ describe API::Commits do
Loading
@@ -374,7 +374,7 @@ describe API::Commits do
it 'a new file with utf8 chars in project repo' do it 'a new file with utf8 chars in project repo' do
post api(url, user), params: valid_utf8_c_params post api(url, user), params: valid_utf8_c_params
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response['title']).to eq(message) expect(json_response['title']).to eq(message)
expect(json_response['committer_name']).to eq(user.name) expect(json_response['committer_name']).to eq(user.name)
expect(json_response['committer_email']).to eq(user.email) expect(json_response['committer_email']).to eq(user.email)
Loading
@@ -383,7 +383,7 @@ describe API::Commits do
Loading
@@ -383,7 +383,7 @@ describe API::Commits do
it 'returns a 400 bad request if file exists' do it 'returns a 400 bad request if file exists' do
post api(url, user), params: invalid_c_params post api(url, user), params: invalid_c_params
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
end end
   
context 'with project path containing a dot in URL' do context 'with project path containing a dot in URL' do
Loading
@@ -392,7 +392,7 @@ describe API::Commits do
Loading
@@ -392,7 +392,7 @@ describe API::Commits do
it 'a new file in project repo' do it 'a new file in project repo' do
post api(url, user), params: valid_c_params post api(url, user), params: valid_c_params
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
end end
end end
   
Loading
@@ -414,7 +414,7 @@ describe API::Commits do
Loading
@@ -414,7 +414,7 @@ describe API::Commits do
it 'returns a 403' do it 'returns a 403' do
post api(url, guest), params: valid_c_params post api(url, guest), params: valid_c_params
   
expect(response).to have_gitlab_http_status(403) expect(response).to have_gitlab_http_status(:forbidden)
end end
   
context 'when start_project is provided' do context 'when start_project is provided' do
Loading
@@ -456,7 +456,7 @@ describe API::Commits do
Loading
@@ -456,7 +456,7 @@ describe API::Commits do
it 'returns a 400' do it 'returns a 400' do
post api(url, guest), params: valid_c_params post api(url, guest), params: valid_c_params
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
expect(json_response['message']).to eq("A branch called 'master' already exists. Switch to that branch in order to make changes") expect(json_response['message']).to eq("A branch called 'master' already exists. Switch to that branch in order to make changes")
end end
   
Loading
@@ -510,7 +510,7 @@ describe API::Commits do
Loading
@@ -510,7 +510,7 @@ describe API::Commits do
it 'returns a 403' do it 'returns a 403' do
post api(url, guest), params: valid_c_params post api(url, guest), params: valid_c_params
   
expect(response).to have_gitlab_http_status(403) expect(response).to have_gitlab_http_status(:forbidden)
end end
end end
end end
Loading
@@ -528,7 +528,7 @@ describe API::Commits do
Loading
@@ -528,7 +528,7 @@ describe API::Commits do
it 'returns a 403' do it 'returns a 403' do
post api(url, guest), params: valid_c_params post api(url, guest), params: valid_c_params
   
expect(response).to have_gitlab_http_status(403) expect(response).to have_gitlab_http_status(:forbidden)
end end
end end
end end
Loading
@@ -545,7 +545,7 @@ describe API::Commits do
Loading
@@ -545,7 +545,7 @@ describe API::Commits do
valid_c_params[:start_branch] = 'master' valid_c_params[:start_branch] = 'master'
post api(url, user), params: valid_c_params post api(url, user), params: valid_c_params
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
expect(json_response['error']).to eq('start_branch, start_sha are mutually exclusive') expect(json_response['error']).to eq('start_branch, start_sha are mutually exclusive')
end end
   
Loading
@@ -553,7 +553,7 @@ describe API::Commits do
Loading
@@ -553,7 +553,7 @@ describe API::Commits do
valid_c_params[:branch] = 'master' valid_c_params[:branch] = 'master'
post api(url, user), params: valid_c_params post api(url, user), params: valid_c_params
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
expect(json_response['message']).to eq("A branch called 'master' already exists. Switch to that branch in order to make changes") expect(json_response['message']).to eq("A branch called 'master' already exists. Switch to that branch in order to make changes")
end end
   
Loading
@@ -561,7 +561,7 @@ describe API::Commits do
Loading
@@ -561,7 +561,7 @@ describe API::Commits do
valid_c_params[:start_sha] = '1' * 40 valid_c_params[:start_sha] = '1' * 40
post api(url, user), params: valid_c_params post api(url, user), params: valid_c_params
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
expect(json_response['message']).to eq("Cannot find start_sha '#{valid_c_params[:start_sha]}'") expect(json_response['message']).to eq("Cannot find start_sha '#{valid_c_params[:start_sha]}'")
end end
   
Loading
@@ -569,7 +569,7 @@ describe API::Commits do
Loading
@@ -569,7 +569,7 @@ describe API::Commits do
valid_c_params[:start_sha] = start_sha.slice(0, 7) valid_c_params[:start_sha] = start_sha.slice(0, 7)
post api(url, user), params: valid_c_params post api(url, user), params: valid_c_params
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
expect(json_response['message']).to eq("Invalid start_sha '#{valid_c_params[:start_sha]}'") expect(json_response['message']).to eq("Invalid start_sha '#{valid_c_params[:start_sha]}'")
end end
   
Loading
@@ -630,14 +630,14 @@ describe API::Commits do
Loading
@@ -630,14 +630,14 @@ describe API::Commits do
it 'an existing file in project repo' do it 'an existing file in project repo' do
post api(url, user), params: valid_d_params post api(url, user), params: valid_d_params
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response['title']).to eq(message) expect(json_response['title']).to eq(message)
end end
   
it 'returns a 400 bad request if file does not exist' do it 'returns a 400 bad request if file does not exist' do
post api(url, user), params: invalid_d_params post api(url, user), params: invalid_d_params
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
end end
end end
   
Loading
@@ -675,14 +675,14 @@ describe API::Commits do
Loading
@@ -675,14 +675,14 @@ describe API::Commits do
it 'an existing file in project repo' do it 'an existing file in project repo' do
post api(url, user), params: valid_m_params post api(url, user), params: valid_m_params
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response['title']).to eq(message) expect(json_response['title']).to eq(message)
end end
   
it 'returns a 400 bad request if file does not exist' do it 'returns a 400 bad request if file does not exist' do
post api(url, user), params: invalid_m_params post api(url, user), params: invalid_m_params
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
end end
end end
   
Loading
@@ -718,14 +718,14 @@ describe API::Commits do
Loading
@@ -718,14 +718,14 @@ describe API::Commits do
it 'an existing file in project repo' do it 'an existing file in project repo' do
post api(url, user), params: valid_u_params post api(url, user), params: valid_u_params
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response['title']).to eq(message) expect(json_response['title']).to eq(message)
end end
   
it 'returns a 400 bad request if file does not exist' do it 'returns a 400 bad request if file does not exist' do
post api(url, user), params: invalid_u_params post api(url, user), params: invalid_u_params
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
end end
end end
   
Loading
@@ -750,7 +750,7 @@ describe API::Commits do
Loading
@@ -750,7 +750,7 @@ describe API::Commits do
it 'responds with success' do it 'responds with success' do
post api(url, user), params: params post api(url, user), params: params
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response['title']).to eq(message) expect(json_response['title']).to eq(message)
end end
   
Loading
@@ -760,7 +760,7 @@ describe API::Commits do
Loading
@@ -760,7 +760,7 @@ describe API::Commits do
it 'responds with success' do it 'responds with success' do
post api(url, user), params: params post api(url, user), params: params
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response['title']).to eq(message) expect(json_response['title']).to eq(message)
end end
end end
Loading
@@ -771,7 +771,7 @@ describe API::Commits do
Loading
@@ -771,7 +771,7 @@ describe API::Commits do
it "responds with 400" do it "responds with 400" do
post api(url, user), params: params post api(url, user), params: params
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
expect(json_response['message']).to eq("A file with this name doesn't exist") expect(json_response['message']).to eq("A file with this name doesn't exist")
end end
end end
Loading
@@ -849,28 +849,28 @@ describe API::Commits do
Loading
@@ -849,28 +849,28 @@ describe API::Commits do
it 'are committed as one in project repo' do it 'are committed as one in project repo' do
post api(url, user), params: valid_mo_params post api(url, user), params: valid_mo_params
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response['title']).to eq(message) expect(json_response['title']).to eq(message)
end end
   
it 'includes the commit stats' do it 'includes the commit stats' do
post api(url, user), params: valid_mo_params post api(url, user), params: valid_mo_params
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response).to include 'stats' expect(json_response).to include 'stats'
end end
   
it "doesn't include the commit stats when stats is false" do it "doesn't include the commit stats when stats is false" do
post api(url, user), params: valid_mo_params.merge(stats: false) post api(url, user), params: valid_mo_params.merge(stats: false)
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response).not_to include 'stats' expect(json_response).not_to include 'stats'
end end
   
it 'return a 400 bad request if there are any issues' do it 'return a 400 bad request if there are any issues' do
post api(url, user), params: invalid_mo_params post api(url, user), params: invalid_mo_params
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
end end
end end
   
Loading
@@ -937,7 +937,7 @@ describe API::Commits do
Loading
@@ -937,7 +937,7 @@ describe API::Commits do
refs = project.repository.branch_names_contains(commit_id).map {|name| ['branch', name]} refs = project.repository.branch_names_contains(commit_id).map {|name| ['branch', name]}
refs.concat(project.repository.tag_names_contains(commit_id).map {|name| ['tag', name]}) refs.concat(project.repository.tag_names_contains(commit_id).map {|name| ['tag', name]})
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response).to include_pagination_headers expect(response).to include_pagination_headers
expect(json_response).to be_an Array expect(json_response).to be_an Array
expect(json_response.map { |r| [r['type'], r['name']] }.compact).to eq(refs) expect(json_response.map { |r| [r['type'], r['name']] }.compact).to eq(refs)
Loading
@@ -949,7 +949,7 @@ describe API::Commits do
Loading
@@ -949,7 +949,7 @@ describe API::Commits do
refs = project.repository.branch_names_contains(commit_id).map {|name| ['branch', name]} refs = project.repository.branch_names_contains(commit_id).map {|name| ['branch', name]}
refs.concat(project.repository.tag_names_contains(commit_id).map {|name| ['tag', name]}) refs.concat(project.repository.tag_names_contains(commit_id).map {|name| ['tag', name]})
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response.map { |r| [r['type'], r['name']] }.compact).to eq(refs) expect(json_response.map { |r| [r['type'], r['name']] }.compact).to eq(refs)
end end
   
Loading
@@ -958,7 +958,7 @@ describe API::Commits do
Loading
@@ -958,7 +958,7 @@ describe API::Commits do
   
refs = project.repository.branch_names_contains(commit_id).map {|name| ['branch', name]} refs = project.repository.branch_names_contains(commit_id).map {|name| ['branch', name]}
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response.map { |r| [r['type'], r['name']] }.compact).to eq(refs) expect(json_response.map { |r| [r['type'], r['name']] }.compact).to eq(refs)
end end
   
Loading
@@ -967,7 +967,7 @@ describe API::Commits do
Loading
@@ -967,7 +967,7 @@ describe API::Commits do
   
refs = project.repository.tag_names_contains(commit_id).map {|name| ['tag', name]} refs = project.repository.tag_names_contains(commit_id).map {|name| ['tag', name]}
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response.map { |r| [r['type'], r['name']] }.compact).to eq(refs) expect(json_response.map { |r| [r['type'], r['name']] }.compact).to eq(refs)
end end
end end
Loading
@@ -982,7 +982,7 @@ describe API::Commits do
Loading
@@ -982,7 +982,7 @@ describe API::Commits do
it 'returns the ref last commit' do it 'returns the ref last commit' do
get api(route, current_user) get api(route, current_user)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response).to match_response_schema('public_api/v4/commit/detail') expect(response).to match_response_schema('public_api/v4/commit/detail')
expect(json_response['id']).to eq(commit.id) expect(json_response['id']).to eq(commit.id)
expect(json_response['short_id']).to eq(commit.short_id) expect(json_response['short_id']).to eq(commit.short_id)
Loading
@@ -1030,7 +1030,7 @@ describe API::Commits do
Loading
@@ -1030,7 +1030,7 @@ describe API::Commits do
it 'includes status as "created" and a last_pipeline object' do it 'includes status as "created" and a last_pipeline object' do
get api(route, current_user) get api(route, current_user)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response).to match_response_schema('public_api/v4/commit/detail') expect(response).to match_response_schema('public_api/v4/commit/detail')
expect(json_response['status']).to eq('created') expect(json_response['status']).to eq('created')
expect(json_response['last_pipeline']['id']).to eq(pipeline.id) expect(json_response['last_pipeline']['id']).to eq(pipeline.id)
Loading
@@ -1047,7 +1047,7 @@ describe API::Commits do
Loading
@@ -1047,7 +1047,7 @@ describe API::Commits do
it 'includes a "success" status' do it 'includes a "success" status' do
get api(route, current_user) get api(route, current_user)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response).to match_response_schema('public_api/v4/commit/detail') expect(response).to match_response_schema('public_api/v4/commit/detail')
expect(json_response['status']).to eq('success') expect(json_response['status']).to eq('success')
end end
Loading
@@ -1065,7 +1065,7 @@ describe API::Commits do
Loading
@@ -1065,7 +1065,7 @@ describe API::Commits do
get api(route, current_user) get api(route, current_user)
   
expect(response).to match_response_schema('public_api/v4/commit/detail') expect(response).to match_response_schema('public_api/v4/commit/detail')
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response['last_pipeline']).to be_nil expect(json_response['last_pipeline']).to be_nil
end end
end end
Loading
@@ -1076,21 +1076,21 @@ describe API::Commits do
Loading
@@ -1076,21 +1076,21 @@ describe API::Commits do
it 'is not present return stats by default' do it 'is not present return stats by default' do
get api(route, user) get api(route, user)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response).to include 'stats' expect(json_response).to include 'stats'
end end
   
it "is false it does not include stats" do it "is false it does not include stats" do
get api(route, user), params: { stats: false } get api(route, user), params: { stats: false }
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response).not_to include 'stats' expect(json_response).not_to include 'stats'
end end
   
it "is true it includes stats" do it "is true it includes stats" do
get api(route, user), params: { stats: true } get api(route, user), params: { stats: true }
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response).to include 'stats' expect(json_response).to include 'stats'
end end
end end
Loading
@@ -1227,7 +1227,7 @@ describe API::Commits do
Loading
@@ -1227,7 +1227,7 @@ describe API::Commits do
it 'returns the diff of the selected commit' do it 'returns the diff of the selected commit' do
get api(route, current_user) get api(route, current_user)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response).to include_pagination_headers expect(response).to include_pagination_headers
expect(json_response.size).to be >= 1 expect(json_response.size).to be >= 1
expect(json_response.first.keys).to include 'diff' expect(json_response.first.keys).to include 'diff'
Loading
@@ -1241,7 +1241,7 @@ describe API::Commits do
Loading
@@ -1241,7 +1241,7 @@ describe API::Commits do
it 'respects the limit' do it 'respects the limit' do
get api(route, current_user) get api(route, current_user)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response).to include_pagination_headers expect(response).to include_pagination_headers
expect(json_response.size).to be <= 1 expect(json_response.size).to be <= 1
end end
Loading
@@ -1338,7 +1338,7 @@ describe API::Commits do
Loading
@@ -1338,7 +1338,7 @@ describe API::Commits do
it 'returns the diff of the selected commit' do it 'returns the diff of the selected commit' do
get api(route, current_user) get api(route, current_user)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response).to match_response_schema('public_api/v4/commit_notes') expect(response).to match_response_schema('public_api/v4/commit_notes')
expect(json_response.size).to eq(2) expect(json_response.size).to eq(2)
expect(json_response.first['note']).to eq('a comment on a commit') expect(json_response.first['note']).to eq('a comment on a commit')
Loading
@@ -1428,7 +1428,7 @@ describe API::Commits do
Loading
@@ -1428,7 +1428,7 @@ describe API::Commits do
it 'returns the comments for the target project' do it 'returns the comments for the target project' do
get api(route, guest) get api(route, guest)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response).to match_response_schema('public_api/v4/commit_notes') expect(response).to match_response_schema('public_api/v4/commit_notes')
expect(json_response.size).to eq(1) expect(json_response.size).to eq(1)
expect(json_response.first['note']).to eq('a comment on a commit for fork') expect(json_response.first['note']).to eq('a comment on a commit for fork')
Loading
@@ -1448,7 +1448,7 @@ describe API::Commits do
Loading
@@ -1448,7 +1448,7 @@ describe API::Commits do
it 'cherry-picks the ref commit' do it 'cherry-picks the ref commit' do
post api(route, current_user), params: { branch: branch } post api(route, current_user), params: { branch: branch }
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(response).to match_response_schema('public_api/v4/commit/basic') expect(response).to match_response_schema('public_api/v4/commit/basic')
expect(json_response['title']).to eq(commit.title) expect(json_response['title']).to eq(commit.title)
expect(json_response['message']).to eq(commit.cherry_pick_message(user)) expect(json_response['message']).to eq(commit.cherry_pick_message(user))
Loading
@@ -1608,7 +1608,7 @@ describe API::Commits do
Loading
@@ -1608,7 +1608,7 @@ describe API::Commits do
it 'reverts the ref commit' do it 'reverts the ref commit' do
post api(route, current_user), params: { branch: branch } post api(route, current_user), params: { branch: branch }
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(response).to match_response_schema('public_api/v4/commit/basic') expect(response).to match_response_schema('public_api/v4/commit/basic')
   
expect(json_response['message']).to eq(commit.revert_message(user)) expect(json_response['message']).to eq(commit.revert_message(user))
Loading
@@ -1694,7 +1694,7 @@ describe API::Commits do
Loading
@@ -1694,7 +1694,7 @@ describe API::Commits do
# Second one is redundant and should be empty # Second one is redundant and should be empty
post api(route, current_user), params: { branch: 'markdown' } post api(route, current_user), params: { branch: 'markdown' }
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
expect(json_response['error_code']).to eq 'empty' expect(json_response['error_code']).to eq 'empty'
end end
end end
Loading
@@ -1733,7 +1733,7 @@ describe API::Commits do
Loading
@@ -1733,7 +1733,7 @@ describe API::Commits do
it 'creates the comment' do it 'creates the comment' do
post api(route, current_user), params: { note: note } post api(route, current_user), params: { note: note }
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(response).to match_response_schema('public_api/v4/commit_note') expect(response).to match_response_schema('public_api/v4/commit_note')
expect(json_response['note']).to eq('My comment') expect(json_response['note']).to eq('My comment')
expect(json_response['path']).to be_nil expect(json_response['path']).to be_nil
Loading
@@ -1774,7 +1774,7 @@ describe API::Commits do
Loading
@@ -1774,7 +1774,7 @@ describe API::Commits do
it 'returns the inline comment' do it 'returns the inline comment' do
post api(route, current_user), params: { note: 'My comment', path: project.repository.commit.raw_diffs.first.new_path, line: 1, line_type: 'new' } post api(route, current_user), params: { note: 'My comment', path: project.repository.commit.raw_diffs.first.new_path, line: 1, line_type: 'new' }
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(response).to match_response_schema('public_api/v4/commit_note') expect(response).to match_response_schema('public_api/v4/commit_note')
expect(json_response['note']).to eq('My comment') expect(json_response['note']).to eq('My comment')
expect(json_response['path']).to eq(project.repository.commit.raw_diffs.first.new_path) expect(json_response['path']).to eq(project.repository.commit.raw_diffs.first.new_path)
Loading
@@ -1794,7 +1794,7 @@ describe API::Commits do
Loading
@@ -1794,7 +1794,7 @@ describe API::Commits do
it 'returns 400 if note is missing' do it 'returns 400 if note is missing' do
post api(route, current_user) post api(route, current_user)
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
end end
   
context 'when ref contains a dot' do context 'when ref contains a dot' do
Loading
@@ -1839,7 +1839,7 @@ describe API::Commits do
Loading
@@ -1839,7 +1839,7 @@ describe API::Commits do
it 'returns the correct merge request' do it 'returns the correct merge request' do
get api("/projects/#{project.id}/repository/commits/#{commit.id}/merge_requests", user) get api("/projects/#{project.id}/repository/commits/#{commit.id}/merge_requests", user)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response).to include_pagination_headers expect(response).to include_pagination_headers
expect(json_response.length).to eq(1) expect(json_response.length).to eq(1)
expect(json_response[0]['id']).to eq(merged_mr.id) expect(json_response[0]['id']).to eq(merged_mr.id)
Loading
@@ -1850,13 +1850,13 @@ describe API::Commits do
Loading
@@ -1850,13 +1850,13 @@ describe API::Commits do
   
get api("/projects/#{project.id}/repository/commits/#{commit.id}/merge_requests", user) get api("/projects/#{project.id}/repository/commits/#{commit.id}/merge_requests", user)
   
expect(response).to have_gitlab_http_status(403) expect(response).to have_gitlab_http_status(:forbidden)
end end
   
it 'responds 404 when the commit does not exist' do it 'responds 404 when the commit does not exist' do
get api("/projects/#{project.id}/repository/commits/a7d26f00c35b/merge_requests", user) get api("/projects/#{project.id}/repository/commits/a7d26f00c35b/merge_requests", user)
   
expect(response).to have_gitlab_http_status(404) expect(response).to have_gitlab_http_status(:not_found)
end end
   
context 'public project' do context 'public project' do
Loading
@@ -1866,7 +1866,7 @@ describe API::Commits do
Loading
@@ -1866,7 +1866,7 @@ describe API::Commits do
it 'responds 403 when only members are allowed to read merge requests' do it 'responds 403 when only members are allowed to read merge requests' do
get api("/projects/#{project.id}/repository/commits/#{commit.id}/merge_requests", non_member) get api("/projects/#{project.id}/repository/commits/#{commit.id}/merge_requests", non_member)
   
expect(response).to have_gitlab_http_status(403) expect(response).to have_gitlab_http_status(:forbidden)
end end
end end
end end
Loading
@@ -1900,7 +1900,7 @@ describe API::Commits do
Loading
@@ -1900,7 +1900,7 @@ describe API::Commits do
it 'returns correct JSON' do it 'returns correct JSON' do
get api(route, current_user) get api(route, current_user)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response['gpg_key_id']).to eq(commit.signature.gpg_key_id) expect(json_response['gpg_key_id']).to eq(commit.signature.gpg_key_id)
expect(json_response['gpg_key_subkey_id']).to eq(commit.signature.gpg_key_subkey_id) expect(json_response['gpg_key_subkey_id']).to eq(commit.signature.gpg_key_subkey_id)
expect(json_response['gpg_key_primary_keyid']).to eq(commit.signature.gpg_key_primary_keyid) expect(json_response['gpg_key_primary_keyid']).to eq(commit.signature.gpg_key_primary_keyid)
Loading
Loading
Loading
@@ -51,7 +51,7 @@ describe API::DeployKeys do
Loading
@@ -51,7 +51,7 @@ describe API::DeployKeys do
it 'returns array of ssh keys' do it 'returns array of ssh keys' do
get api("/projects/#{project.id}/deploy_keys", admin) get api("/projects/#{project.id}/deploy_keys", admin)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response).to include_pagination_headers expect(response).to include_pagination_headers
expect(json_response).to be_an Array expect(json_response).to be_an Array
expect(json_response.first['title']).to eq(deploy_key.title) expect(json_response.first['title']).to eq(deploy_key.title)
Loading
@@ -62,14 +62,14 @@ describe API::DeployKeys do
Loading
@@ -62,14 +62,14 @@ describe API::DeployKeys do
it 'returns a single key' do it 'returns a single key' do
get api("/projects/#{project.id}/deploy_keys/#{deploy_key.id}", admin) get api("/projects/#{project.id}/deploy_keys/#{deploy_key.id}", admin)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response['title']).to eq(deploy_key.title) expect(json_response['title']).to eq(deploy_key.title)
end end
   
it 'returns 404 Not Found with invalid ID' do it 'returns 404 Not Found with invalid ID' do
get api("/projects/#{project.id}/deploy_keys/404", admin) get api("/projects/#{project.id}/deploy_keys/404", admin)
   
expect(response).to have_gitlab_http_status(404) expect(response).to have_gitlab_http_status(:not_found)
end end
end end
   
Loading
@@ -77,14 +77,14 @@ describe API::DeployKeys do
Loading
@@ -77,14 +77,14 @@ describe API::DeployKeys do
it 'does not create an invalid ssh key' do it 'does not create an invalid ssh key' do
post api("/projects/#{project.id}/deploy_keys", admin), params: { title: 'invalid key' } post api("/projects/#{project.id}/deploy_keys", admin), params: { title: 'invalid key' }
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
expect(json_response['error']).to eq('key is missing') expect(json_response['error']).to eq('key is missing')
end end
   
it 'does not create a key without title' do it 'does not create a key without title' do
post api("/projects/#{project.id}/deploy_keys", admin), params: { key: 'some key' } post api("/projects/#{project.id}/deploy_keys", admin), params: { key: 'some key' }
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
expect(json_response['error']).to eq('title is missing') expect(json_response['error']).to eq('title is missing')
end end
   
Loading
@@ -105,7 +105,7 @@ describe API::DeployKeys do
Loading
@@ -105,7 +105,7 @@ describe API::DeployKeys do
post api("/projects/#{project.id}/deploy_keys", admin), params: { key: deploy_key.key, title: deploy_key.title } post api("/projects/#{project.id}/deploy_keys", admin), params: { key: deploy_key.key, title: deploy_key.title }
end.not_to change { project.deploy_keys.count } end.not_to change { project.deploy_keys.count }
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
end end
   
it 'joins an existing ssh key to a new project' do it 'joins an existing ssh key to a new project' do
Loading
@@ -113,7 +113,7 @@ describe API::DeployKeys do
Loading
@@ -113,7 +113,7 @@ describe API::DeployKeys do
post api("/projects/#{project2.id}/deploy_keys", admin), params: { key: deploy_key.key, title: deploy_key.title } post api("/projects/#{project2.id}/deploy_keys", admin), params: { key: deploy_key.key, title: deploy_key.title }
end.to change { project2.deploy_keys.count }.by(1) end.to change { project2.deploy_keys.count }.by(1)
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
end end
   
it 'accepts can_push parameter' do it 'accepts can_push parameter' do
Loading
@@ -121,7 +121,7 @@ describe API::DeployKeys do
Loading
@@ -121,7 +121,7 @@ describe API::DeployKeys do
   
post api("/projects/#{project.id}/deploy_keys", admin), params: key_attrs post api("/projects/#{project.id}/deploy_keys", admin), params: key_attrs
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response['can_push']).to eq(true) expect(json_response['can_push']).to eq(true)
end end
end end
Loading
@@ -139,7 +139,7 @@ describe API::DeployKeys do
Loading
@@ -139,7 +139,7 @@ describe API::DeployKeys do
it 'does not update a public deploy key' do it 'does not update a public deploy key' do
expect { subject }.not_to change(deploy_key, :title) expect { subject }.not_to change(deploy_key, :title)
   
expect(response).to have_gitlab_http_status(404) expect(response).to have_gitlab_http_status(:not_found)
end end
end end
   
Loading
@@ -151,12 +151,12 @@ describe API::DeployKeys do
Loading
@@ -151,12 +151,12 @@ describe API::DeployKeys do
   
it 'updates the title of the deploy key' do it 'updates the title of the deploy key' do
expect { subject }.to change { deploy_key.reload.title }.to 'new title' expect { subject }.to change { deploy_key.reload.title }.to 'new title'
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
end end
   
it 'updates can_push of deploy_keys_project' do it 'updates can_push of deploy_keys_project' do
expect { subject }.to change { deploy_keys_project.reload.can_push }.from(false).to(true) expect { subject }.to change { deploy_keys_project.reload.can_push }.from(false).to(true)
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
end end
end end
   
Loading
@@ -169,12 +169,12 @@ describe API::DeployKeys do
Loading
@@ -169,12 +169,12 @@ describe API::DeployKeys do
   
it 'updates the title of the deploy key' do it 'updates the title of the deploy key' do
expect { subject }.to change { deploy_key.reload.title }.to 'new title' expect { subject }.to change { deploy_key.reload.title }.to 'new title'
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
end end
   
it 'updates can_push of deploy_keys_project' do it 'updates can_push of deploy_keys_project' do
expect { subject }.to change { deploy_keys_project.reload.can_push }.from(false).to(true) expect { subject }.to change { deploy_keys_project.reload.can_push }.from(false).to(true)
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
end end
   
context 'invalid title' do context 'invalid title' do
Loading
@@ -182,7 +182,7 @@ describe API::DeployKeys do
Loading
@@ -182,7 +182,7 @@ describe API::DeployKeys do
   
it 'does not update the title of the deploy key' do it 'does not update the title of the deploy key' do
expect { subject }.not_to change { deploy_key.reload.title } expect { subject }.not_to change { deploy_key.reload.title }
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
end end
end end
end end
Loading
@@ -200,12 +200,12 @@ describe API::DeployKeys do
Loading
@@ -200,12 +200,12 @@ describe API::DeployKeys do
   
it 'updates the title of the deploy key' do it 'updates the title of the deploy key' do
expect { subject }.to change { deploy_key.reload.title }.to 'new title' expect { subject }.to change { deploy_key.reload.title }.to 'new title'
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
end end
   
it 'updates can_push of deploy_keys_project' do it 'updates can_push of deploy_keys_project' do
expect { subject }.to change { deploy_keys_project.reload.can_push }.from(false).to(true) expect { subject }.to change { deploy_keys_project.reload.can_push }.from(false).to(true)
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
end end
end end
end end
Loading
@@ -222,12 +222,12 @@ describe API::DeployKeys do
Loading
@@ -222,12 +222,12 @@ describe API::DeployKeys do
   
it 'does not update the title of the deploy key' do it 'does not update the title of the deploy key' do
expect { subject }.not_to change { deploy_key.reload.title } expect { subject }.not_to change { deploy_key.reload.title }
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
end end
   
it 'updates can_push of deploy_keys_project' do it 'updates can_push of deploy_keys_project' do
expect { subject }.to change { deploy_keys_project.reload.can_push }.from(false).to(true) expect { subject }.to change { deploy_keys_project.reload.can_push }.from(false).to(true)
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
end end
end end
end end
Loading
@@ -242,7 +242,7 @@ describe API::DeployKeys do
Loading
@@ -242,7 +242,7 @@ describe API::DeployKeys do
expect do expect do
delete api("/projects/#{project.id}/deploy_keys/#{deploy_key.id}", admin) delete api("/projects/#{project.id}/deploy_keys/#{deploy_key.id}", admin)
   
expect(response).to have_gitlab_http_status(204) expect(response).to have_gitlab_http_status(:no_content)
end.to change { project.deploy_keys.count }.by(-1) end.to change { project.deploy_keys.count }.by(-1)
end end
   
Loading
@@ -251,7 +251,7 @@ describe API::DeployKeys do
Loading
@@ -251,7 +251,7 @@ describe API::DeployKeys do
expect do expect do
delete api("/projects/#{project.id}/deploy_keys/#{deploy_key.id}", admin) delete api("/projects/#{project.id}/deploy_keys/#{deploy_key.id}", admin)
   
expect(response).to have_gitlab_http_status(204) expect(response).to have_gitlab_http_status(:no_content)
end.not_to change { DeployKey.count } end.not_to change { DeployKey.count }
end end
end end
Loading
@@ -264,7 +264,7 @@ describe API::DeployKeys do
Loading
@@ -264,7 +264,7 @@ describe API::DeployKeys do
expect do expect do
delete api("/projects/#{project.id}/deploy_keys/#{deploy_key.id}", admin) delete api("/projects/#{project.id}/deploy_keys/#{deploy_key.id}", admin)
   
expect(response).to have_gitlab_http_status(204) expect(response).to have_gitlab_http_status(:no_content)
end.to change { DeployKey.count }.by(-1) end.to change { DeployKey.count }.by(-1)
end end
end end
Loading
@@ -278,7 +278,7 @@ describe API::DeployKeys do
Loading
@@ -278,7 +278,7 @@ describe API::DeployKeys do
expect do expect do
delete api("/projects/#{project.id}/deploy_keys/#{deploy_key.id}", admin) delete api("/projects/#{project.id}/deploy_keys/#{deploy_key.id}", admin)
   
expect(response).to have_gitlab_http_status(204) expect(response).to have_gitlab_http_status(:no_content)
end.not_to change { DeployKey.count } end.not_to change { DeployKey.count }
end end
end end
Loading
@@ -287,7 +287,7 @@ describe API::DeployKeys do
Loading
@@ -287,7 +287,7 @@ describe API::DeployKeys do
it 'returns 404 Not Found with invalid ID' do it 'returns 404 Not Found with invalid ID' do
delete api("/projects/#{project.id}/deploy_keys/404", admin) delete api("/projects/#{project.id}/deploy_keys/404", admin)
   
expect(response).to have_gitlab_http_status(404) expect(response).to have_gitlab_http_status(:not_found)
end end
   
it_behaves_like '412 response' do it_behaves_like '412 response' do
Loading
@@ -304,7 +304,7 @@ describe API::DeployKeys do
Loading
@@ -304,7 +304,7 @@ describe API::DeployKeys do
post api("/projects/#{project2.id}/deploy_keys/#{deploy_key.id}/enable", admin) post api("/projects/#{project2.id}/deploy_keys/#{deploy_key.id}/enable", admin)
end.to change { project2.deploy_keys.count }.from(0).to(1) end.to change { project2.deploy_keys.count }.from(0).to(1)
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response['id']).to eq(deploy_key.id) expect(json_response['id']).to eq(deploy_key.id)
end end
end end
Loading
@@ -313,7 +313,7 @@ describe API::DeployKeys do
Loading
@@ -313,7 +313,7 @@ describe API::DeployKeys do
it 'returns a 404 error' do it 'returns a 404 error' do
post api("/projects/#{project2.id}/deploy_keys/#{deploy_key.id}/enable", user) post api("/projects/#{project2.id}/deploy_keys/#{deploy_key.id}/enable", user)
   
expect(response).to have_gitlab_http_status(404) expect(response).to have_gitlab_http_status(:not_found)
end end
end end
end end
Loading
Loading
Loading
@@ -20,7 +20,7 @@ describe API::Deployments do
Loading
@@ -20,7 +20,7 @@ describe API::Deployments do
it 'returns projects deployments sorted by id asc' do it 'returns projects deployments sorted by id asc' do
get api("/projects/#{project.id}/deployments", user) get api("/projects/#{project.id}/deployments", user)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response).to include_pagination_headers expect(response).to include_pagination_headers
expect(json_response).to be_an Array expect(json_response).to be_an Array
expect(json_response.size).to eq(3) expect(json_response.size).to eq(3)
Loading
@@ -74,7 +74,7 @@ describe API::Deployments do
Loading
@@ -74,7 +74,7 @@ describe API::Deployments do
let(:order_by) { 'wrong_sorting_value' } let(:order_by) { 'wrong_sorting_value' }
   
it 'returns error' do it 'returns error' do
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
end end
end end
   
Loading
@@ -82,7 +82,7 @@ describe API::Deployments do
Loading
@@ -82,7 +82,7 @@ describe API::Deployments do
let(:sort) { 'wrong_sorting_direction' } let(:sort) { 'wrong_sorting_direction' }
   
it 'returns error' do it 'returns error' do
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
end end
end end
end end
Loading
@@ -92,7 +92,7 @@ describe API::Deployments do
Loading
@@ -92,7 +92,7 @@ describe API::Deployments do
it 'returns a 404 status code' do it 'returns a 404 status code' do
get api("/projects/#{project.id}/deployments", non_member) get api("/projects/#{project.id}/deployments", non_member)
   
expect(response).to have_gitlab_http_status(404) expect(response).to have_gitlab_http_status(:not_found)
end end
end end
end end
Loading
@@ -105,7 +105,7 @@ describe API::Deployments do
Loading
@@ -105,7 +105,7 @@ describe API::Deployments do
it 'returns the projects deployment' do it 'returns the projects deployment' do
get api("/projects/#{project.id}/deployments/#{deployment.id}", user) get api("/projects/#{project.id}/deployments/#{deployment.id}", user)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response['sha']).to match /\A\h{40}\z/ expect(json_response['sha']).to match /\A\h{40}\z/
expect(json_response['id']).to eq(deployment.id) expect(json_response['id']).to eq(deployment.id)
end end
Loading
@@ -115,7 +115,7 @@ describe API::Deployments do
Loading
@@ -115,7 +115,7 @@ describe API::Deployments do
it 'returns a 404 status code' do it 'returns a 404 status code' do
get api("/projects/#{project.id}/deployments/#{deployment.id}", non_member) get api("/projects/#{project.id}/deployments/#{deployment.id}", non_member)
   
expect(response).to have_gitlab_http_status(404) expect(response).to have_gitlab_http_status(:not_found)
end end
end end
end end
Loading
@@ -159,7 +159,7 @@ describe API::Deployments do
Loading
@@ -159,7 +159,7 @@ describe API::Deployments do
} }
) )
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
   
expect(json_response['sha']).to eq(sha) expect(json_response['sha']).to eq(sha)
expect(json_response['ref']).to eq('master') expect(json_response['ref']).to eq('master')
Loading
@@ -178,7 +178,7 @@ describe API::Deployments do
Loading
@@ -178,7 +178,7 @@ describe API::Deployments do
} }
) )
   
expect(response).to have_gitlab_http_status(500) expect(response).to have_gitlab_http_status(:internal_server_error)
end end
   
it 'links any merged merge requests to the deployment', :sidekiq_inline do it 'links any merged merge requests to the deployment', :sidekiq_inline do
Loading
@@ -228,7 +228,7 @@ describe API::Deployments do
Loading
@@ -228,7 +228,7 @@ describe API::Deployments do
} }
) )
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
   
expect(json_response['sha']).to eq(sha) expect(json_response['sha']).to eq(sha)
expect(json_response['ref']).to eq('master') expect(json_response['ref']).to eq('master')
Loading
@@ -312,7 +312,7 @@ describe API::Deployments do
Loading
@@ -312,7 +312,7 @@ describe API::Deployments do
} }
) )
   
expect(response).to have_gitlab_http_status(404) expect(response).to have_gitlab_http_status(:not_found)
end end
end end
end end
Loading
@@ -341,7 +341,7 @@ describe API::Deployments do
Loading
@@ -341,7 +341,7 @@ describe API::Deployments do
params: { status: 'success' } params: { status: 'success' }
) )
   
expect(response).to have_gitlab_http_status(403) expect(response).to have_gitlab_http_status(:forbidden)
end end
   
it 'updates a deployment without an associated build' do it 'updates a deployment without an associated build' do
Loading
@@ -350,7 +350,7 @@ describe API::Deployments do
Loading
@@ -350,7 +350,7 @@ describe API::Deployments do
params: { status: 'success' } params: { status: 'success' }
) )
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response['status']).to eq('success') expect(json_response['status']).to eq('success')
end end
   
Loading
@@ -390,7 +390,7 @@ describe API::Deployments do
Loading
@@ -390,7 +390,7 @@ describe API::Deployments do
params: { status: 'success' } params: { status: 'success' }
) )
   
expect(response).to have_gitlab_http_status(403) expect(response).to have_gitlab_http_status(:forbidden)
end end
   
it 'updates a deployment without an associated build' do it 'updates a deployment without an associated build' do
Loading
@@ -399,7 +399,7 @@ describe API::Deployments do
Loading
@@ -399,7 +399,7 @@ describe API::Deployments do
params: { status: 'success' } params: { status: 'success' }
) )
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response['status']).to eq('success') expect(json_response['status']).to eq('success')
end end
end end
Loading
@@ -411,7 +411,7 @@ describe API::Deployments do
Loading
@@ -411,7 +411,7 @@ describe API::Deployments do
params: { status: 'success' } params: { status: 'success' }
) )
   
expect(response).to have_gitlab_http_status(404) expect(response).to have_gitlab_http_status(:not_found)
end end
end end
end end
Loading
@@ -428,7 +428,7 @@ describe API::Deployments do
Loading
@@ -428,7 +428,7 @@ describe API::Deployments do
it 'returns a 404 status code' do it 'returns a 404 status code' do
subject subject
   
expect(response).to have_gitlab_http_status(404) expect(response).to have_gitlab_http_status(:not_found)
end end
end end
   
Loading
@@ -443,7 +443,7 @@ describe API::Deployments do
Loading
@@ -443,7 +443,7 @@ describe API::Deployments do
   
subject subject
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response.map { |d| d['id'] }).to contain_exactly(merge_request1.id, merge_request2.id) expect(json_response.map { |d| d['id'] }).to contain_exactly(merge_request1.id, merge_request2.id)
end end
   
Loading
@@ -451,7 +451,7 @@ describe API::Deployments do
Loading
@@ -451,7 +451,7 @@ describe API::Deployments do
it 'returns an empty array' do it 'returns an empty array' do
subject subject
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response).to eq([]) expect(json_response).to eq([])
end end
end end
Loading
@@ -468,7 +468,7 @@ describe API::Deployments do
Loading
@@ -468,7 +468,7 @@ describe API::Deployments do
it 'succeeds', :aggregate_failures do it 'succeeds', :aggregate_failures do
subject subject
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response.size).to eq(1) expect(json_response.size).to eq(1)
end end
   
Loading
Loading
Loading
@@ -58,7 +58,7 @@ describe API::Discussions do
Loading
@@ -58,7 +58,7 @@ describe API::Discussions do
post api("/projects/#{project.id}/merge_requests/#{noteable['iid']}/discussions", user), post api("/projects/#{project.id}/merge_requests/#{noteable['iid']}/discussions", user),
params: { body: 'hi!', position: position } params: { body: 'hi!', position: position }
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
end end
end end
end end
Loading
Loading
Loading
@@ -10,7 +10,7 @@ describe 'doorkeeper access' do
Loading
@@ -10,7 +10,7 @@ describe 'doorkeeper access' do
describe "unauthenticated" do describe "unauthenticated" do
it "returns authentication success" do it "returns authentication success" do
get api("/user"), params: { access_token: token.token } get api("/user"), params: { access_token: token.token }
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
end end
   
include_examples 'user login request with unique ip limit' do include_examples 'user login request with unique ip limit' do
Loading
@@ -23,14 +23,14 @@ describe 'doorkeeper access' do
Loading
@@ -23,14 +23,14 @@ describe 'doorkeeper access' do
describe "when token invalid" do describe "when token invalid" do
it "returns authentication error" do it "returns authentication error" do
get api("/user"), params: { access_token: "123a" } get api("/user"), params: { access_token: "123a" }
expect(response).to have_gitlab_http_status(401) expect(response).to have_gitlab_http_status(:unauthorized)
end end
end end
   
describe "authorization by OAuth token" do describe "authorization by OAuth token" do
it "returns authentication success" do it "returns authentication success" do
get api("/user", user) get api("/user", user)
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
end end
   
include_examples 'user login request with unique ip limit' do include_examples 'user login request with unique ip limit' do
Loading
@@ -44,7 +44,7 @@ describe 'doorkeeper access' do
Loading
@@ -44,7 +44,7 @@ describe 'doorkeeper access' do
it 'returns 403 response' do it 'returns 403 response' do
get api("/user"), params: { access_token: token.token } get api("/user"), params: { access_token: token.token }
   
expect(response).to have_gitlab_http_status(403) expect(response).to have_gitlab_http_status(:forbidden)
end end
end end
   
Loading
Loading
Loading
@@ -27,7 +27,7 @@ describe API::Environments do
Loading
@@ -27,7 +27,7 @@ describe API::Environments do
   
get api("/projects/#{project.id}/environments", user) get api("/projects/#{project.id}/environments", user)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response).to include_pagination_headers expect(response).to include_pagination_headers
expect(json_response).to be_an Array expect(json_response).to be_an Array
expect(json_response.size).to eq(1) expect(json_response.size).to eq(1)
Loading
@@ -43,7 +43,7 @@ describe API::Environments do
Loading
@@ -43,7 +43,7 @@ describe API::Environments do
it 'returns environment by name' do it 'returns environment by name' do
get api("/projects/#{project.id}/environments?name=#{environment.name}", user) get api("/projects/#{project.id}/environments?name=#{environment.name}", user)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response).to include_pagination_headers expect(response).to include_pagination_headers
expect(json_response).to be_an Array expect(json_response).to be_an Array
expect(json_response.size).to eq(1) expect(json_response.size).to eq(1)
Loading
@@ -53,7 +53,7 @@ describe API::Environments do
Loading
@@ -53,7 +53,7 @@ describe API::Environments do
it 'returns no environment by non-existent name' do it 'returns no environment by non-existent name' do
get api("/projects/#{project.id}/environments?name=test", user) get api("/projects/#{project.id}/environments?name=test", user)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response).to include_pagination_headers expect(response).to include_pagination_headers
expect(json_response).to be_an Array expect(json_response).to be_an Array
expect(json_response.size).to eq(0) expect(json_response.size).to eq(0)
Loading
@@ -62,7 +62,7 @@ describe API::Environments do
Loading
@@ -62,7 +62,7 @@ describe API::Environments do
it 'returns environments by name_like' do it 'returns environments by name_like' do
get api("/projects/#{project.id}/environments?search=envir", user) get api("/projects/#{project.id}/environments?search=envir", user)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response).to include_pagination_headers expect(response).to include_pagination_headers
expect(json_response).to be_an Array expect(json_response).to be_an Array
expect(json_response.size).to eq(2) expect(json_response.size).to eq(2)
Loading
@@ -71,7 +71,7 @@ describe API::Environments do
Loading
@@ -71,7 +71,7 @@ describe API::Environments do
it 'returns no environment by non-existent name_like' do it 'returns no environment by non-existent name_like' do
get api("/projects/#{project.id}/environments?search=test", user) get api("/projects/#{project.id}/environments?search=test", user)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response).to include_pagination_headers expect(response).to include_pagination_headers
expect(json_response).to be_an Array expect(json_response).to be_an Array
expect(json_response.size).to eq(0) expect(json_response.size).to eq(0)
Loading
@@ -83,7 +83,7 @@ describe API::Environments do
Loading
@@ -83,7 +83,7 @@ describe API::Environments do
it 'returns a 404 status code' do it 'returns a 404 status code' do
get api("/projects/#{project.id}/environments", non_member) get api("/projects/#{project.id}/environments", non_member)
   
expect(response).to have_gitlab_http_status(404) expect(response).to have_gitlab_http_status(:not_found)
end end
end end
end end
Loading
@@ -93,7 +93,7 @@ describe API::Environments do
Loading
@@ -93,7 +93,7 @@ describe API::Environments do
it 'creates a environment with valid params' do it 'creates a environment with valid params' do
post api("/projects/#{project.id}/environments", user), params: { name: "mepmep" } post api("/projects/#{project.id}/environments", user), params: { name: "mepmep" }
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response['name']).to eq('mepmep') expect(json_response['name']).to eq('mepmep')
expect(json_response['slug']).to eq('mepmep') expect(json_response['slug']).to eq('mepmep')
expect(json_response['external']).to be nil expect(json_response['external']).to be nil
Loading
@@ -102,19 +102,19 @@ describe API::Environments do
Loading
@@ -102,19 +102,19 @@ describe API::Environments do
it 'requires name to be passed' do it 'requires name to be passed' do
post api("/projects/#{project.id}/environments", user), params: { external_url: 'test.gitlab.com' } post api("/projects/#{project.id}/environments", user), params: { external_url: 'test.gitlab.com' }
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
end end
   
it 'returns a 400 if environment already exists' do it 'returns a 400 if environment already exists' do
post api("/projects/#{project.id}/environments", user), params: { name: environment.name } post api("/projects/#{project.id}/environments", user), params: { name: environment.name }
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
end end
   
it 'returns a 400 if slug is specified' do it 'returns a 400 if slug is specified' do
post api("/projects/#{project.id}/environments", user), params: { name: "foo", slug: "foo" } post api("/projects/#{project.id}/environments", user), params: { name: "foo", slug: "foo" }
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
expect(json_response["error"]).to eq("slug is automatically generated and cannot be changed") expect(json_response["error"]).to eq("slug is automatically generated and cannot be changed")
end end
end end
Loading
@@ -123,7 +123,7 @@ describe API::Environments do
Loading
@@ -123,7 +123,7 @@ describe API::Environments do
it 'rejects the request' do it 'rejects the request' do
post api("/projects/#{project.id}/environments", non_member), params: { name: 'gitlab.com' } post api("/projects/#{project.id}/environments", non_member), params: { name: 'gitlab.com' }
   
expect(response).to have_gitlab_http_status(404) expect(response).to have_gitlab_http_status(:not_found)
end end
   
it 'returns a 400 when the required params are missing' do it 'returns a 400 when the required params are missing' do
Loading
@@ -138,7 +138,7 @@ describe API::Environments do
Loading
@@ -138,7 +138,7 @@ describe API::Environments do
put api("/projects/#{project.id}/environments/#{environment.id}", user), put api("/projects/#{project.id}/environments/#{environment.id}", user),
params: { name: 'Mepmep', external_url: url } params: { name: 'Mepmep', external_url: url }
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response['name']).to eq('Mepmep') expect(json_response['name']).to eq('Mepmep')
expect(json_response['external_url']).to eq(url) expect(json_response['external_url']).to eq(url)
end end
Loading
@@ -148,7 +148,7 @@ describe API::Environments do
Loading
@@ -148,7 +148,7 @@ describe API::Environments do
api_url = api("/projects/#{project.id}/environments/#{environment.id}", user) api_url = api("/projects/#{project.id}/environments/#{environment.id}", user)
put api_url, params: { slug: slug + "-foo" } put api_url, params: { slug: slug + "-foo" }
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
expect(json_response["error"]).to eq("slug is automatically generated and cannot be changed") expect(json_response["error"]).to eq("slug is automatically generated and cannot be changed")
end end
   
Loading
@@ -157,7 +157,7 @@ describe API::Environments do
Loading
@@ -157,7 +157,7 @@ describe API::Environments do
put api("/projects/#{project.id}/environments/#{environment.id}", user), put api("/projects/#{project.id}/environments/#{environment.id}", user),
params: { name: 'Mepmep' } params: { name: 'Mepmep' }
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response['name']).to eq('Mepmep') expect(json_response['name']).to eq('Mepmep')
expect(json_response['external_url']).to eq(url) expect(json_response['external_url']).to eq(url)
end end
Loading
@@ -165,7 +165,7 @@ describe API::Environments do
Loading
@@ -165,7 +165,7 @@ describe API::Environments do
it 'returns a 404 if the environment does not exist' do it 'returns a 404 if the environment does not exist' do
put api("/projects/#{project.id}/environments/12345", user) put api("/projects/#{project.id}/environments/12345", user)
   
expect(response).to have_gitlab_http_status(404) expect(response).to have_gitlab_http_status(:not_found)
end end
end end
   
Loading
@@ -174,13 +174,13 @@ describe API::Environments do
Loading
@@ -174,13 +174,13 @@ describe API::Environments do
it 'returns a 200 for an existing environment' do it 'returns a 200 for an existing environment' do
delete api("/projects/#{project.id}/environments/#{environment.id}", user) delete api("/projects/#{project.id}/environments/#{environment.id}", user)
   
expect(response).to have_gitlab_http_status(204) expect(response).to have_gitlab_http_status(:no_content)
end end
   
it 'returns a 404 for non existing id' do it 'returns a 404 for non existing id' do
delete api("/projects/#{project.id}/environments/12345", user) delete api("/projects/#{project.id}/environments/12345", user)
   
expect(response).to have_gitlab_http_status(404) expect(response).to have_gitlab_http_status(:not_found)
expect(json_response['message']).to eq('404 Not found') expect(json_response['message']).to eq('404 Not found')
end end
   
Loading
@@ -193,7 +193,7 @@ describe API::Environments do
Loading
@@ -193,7 +193,7 @@ describe API::Environments do
it 'rejects the request' do it 'rejects the request' do
delete api("/projects/#{project.id}/environments/#{environment.id}", non_member) delete api("/projects/#{project.id}/environments/#{environment.id}", non_member)
   
expect(response).to have_gitlab_http_status(404) expect(response).to have_gitlab_http_status(:not_found)
end end
end end
end end
Loading
@@ -208,7 +208,7 @@ describe API::Environments do
Loading
@@ -208,7 +208,7 @@ describe API::Environments do
end end
   
it 'returns a 200' do it 'returns a 200' do
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
end end
   
it 'actually stops the environment' do it 'actually stops the environment' do
Loading
@@ -219,7 +219,7 @@ describe API::Environments do
Loading
@@ -219,7 +219,7 @@ describe API::Environments do
it 'returns a 404 for non existing id' do it 'returns a 404 for non existing id' do
post api("/projects/#{project.id}/environments/12345/stop", user) post api("/projects/#{project.id}/environments/12345/stop", user)
   
expect(response).to have_gitlab_http_status(404) expect(response).to have_gitlab_http_status(:not_found)
expect(json_response['message']).to eq('404 Not found') expect(json_response['message']).to eq('404 Not found')
end end
end end
Loading
@@ -228,7 +228,7 @@ describe API::Environments do
Loading
@@ -228,7 +228,7 @@ describe API::Environments do
it 'rejects the request' do it 'rejects the request' do
post api("/projects/#{project.id}/environments/#{environment.id}/stop", non_member) post api("/projects/#{project.id}/environments/#{environment.id}/stop", non_member)
   
expect(response).to have_gitlab_http_status(404) expect(response).to have_gitlab_http_status(:not_found)
end end
end end
end end
Loading
@@ -240,7 +240,7 @@ describe API::Environments do
Loading
@@ -240,7 +240,7 @@ describe API::Environments do
   
get api("/projects/#{project.id}/environments/#{environment.id}", user) get api("/projects/#{project.id}/environments/#{environment.id}", user)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response).to match_response_schema('public_api/v4/environment') expect(response).to match_response_schema('public_api/v4/environment')
end end
end end
Loading
@@ -249,7 +249,7 @@ describe API::Environments do
Loading
@@ -249,7 +249,7 @@ describe API::Environments do
it 'returns a 404 status code' do it 'returns a 404 status code' do
get api("/projects/#{project.id}/environments/#{environment.id}", non_member) get api("/projects/#{project.id}/environments/#{environment.id}", non_member)
   
expect(response).to have_gitlab_http_status(404) expect(response).to have_gitlab_http_status(:not_found)
end end
end end
end end
Loading
Loading
Loading
@@ -16,7 +16,7 @@ describe API::Events do
Loading
@@ -16,7 +16,7 @@ describe API::Events do
it 'returns authentication error' do it 'returns authentication error' do
get api('/events') get api('/events')
   
expect(response).to have_gitlab_http_status(401) expect(response).to have_gitlab_http_status(:unauthorized)
end end
end end
   
Loading
@@ -24,7 +24,7 @@ describe API::Events do
Loading
@@ -24,7 +24,7 @@ describe API::Events do
it 'returns users events' do it 'returns users events' do
get api('/events?action=closed&target_type=issue&after=2016-12-1&before=2016-12-31', user) get api('/events?action=closed&target_type=issue&after=2016-12-1&before=2016-12-31', user)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response).to include_pagination_headers expect(response).to include_pagination_headers
expect(json_response).to be_an Array expect(json_response).to be_an Array
expect(json_response.size).to eq(1) expect(json_response.size).to eq(1)
Loading
@@ -36,7 +36,7 @@ describe API::Events do
Loading
@@ -36,7 +36,7 @@ describe API::Events do
   
get api('/events?action=closed&target_type=issue&after=2016-12-1&before=2016-12-31&scope=all', user) get api('/events?action=closed&target_type=issue&after=2016-12-1&before=2016-12-31&scope=all', user)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response).to include_pagination_headers expect(response).to include_pagination_headers
expect(json_response).to be_an Array expect(json_response).to be_an Array
expect(json_response.size).to eq(2) expect(json_response.size).to eq(2)
Loading
@@ -50,7 +50,7 @@ describe API::Events do
Loading
@@ -50,7 +50,7 @@ describe API::Events do
it 'returns users events' do it 'returns users events' do
get api('/events?action=closed&target_type=issue&after=2016-12-1&before=2016-12-31', personal_access_token: token) get api('/events?action=closed&target_type=issue&after=2016-12-1&before=2016-12-31', personal_access_token: token)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response).to include_pagination_headers expect(response).to include_pagination_headers
expect(json_response).to be_an Array expect(json_response).to be_an Array
expect(json_response.size).to eq(1) expect(json_response.size).to eq(1)
Loading
@@ -63,7 +63,7 @@ describe API::Events do
Loading
@@ -63,7 +63,7 @@ describe API::Events do
it 'returns a "403" response' do it 'returns a "403" response' do
get api('/events', personal_access_token: token_without_scopes) get api('/events', personal_access_token: token_without_scopes)
   
expect(response).to have_gitlab_http_status(403) expect(response).to have_gitlab_http_status(:forbidden)
end end
end end
end end
Loading
@@ -76,7 +76,7 @@ describe API::Events do
Loading
@@ -76,7 +76,7 @@ describe API::Events do
   
get api("/users/#{user.id}/events", non_member) get api("/users/#{user.id}/events", non_member)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response).to be_empty expect(json_response).to be_empty
end end
end end
Loading
@@ -90,7 +90,7 @@ describe API::Events do
Loading
@@ -90,7 +90,7 @@ describe API::Events do
   
get api("/users/#{user.id}/events", personal_access_token: non_member_token) get api("/users/#{user.id}/events", personal_access_token: non_member_token)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response).to be_empty expect(json_response).to be_empty
end end
end end
Loading
@@ -99,7 +99,7 @@ describe API::Events do
Loading
@@ -99,7 +99,7 @@ describe API::Events do
it 'accepts a username' do it 'accepts a username' do
get api("/users/#{user.username}/events", user) get api("/users/#{user.username}/events", user)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response).to include_pagination_headers expect(response).to include_pagination_headers
expect(json_response).to be_an Array expect(json_response).to be_an Array
expect(json_response.size).to eq(1) expect(json_response.size).to eq(1)
Loading
@@ -108,7 +108,7 @@ describe API::Events do
Loading
@@ -108,7 +108,7 @@ describe API::Events do
it 'returns the events' do it 'returns the events' do
get api("/users/#{user.id}/events", user) get api("/users/#{user.id}/events", user)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response).to include_pagination_headers expect(response).to include_pagination_headers
expect(json_response).to be_an Array expect(json_response).to be_an Array
expect(json_response.size).to eq(1) expect(json_response.size).to eq(1)
Loading
@@ -127,7 +127,7 @@ describe API::Events do
Loading
@@ -127,7 +127,7 @@ describe API::Events do
end end
   
it 'responds with HTTP 200 OK' do it 'responds with HTTP 200 OK' do
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
end end
   
it 'includes the push payload as a Hash' do it 'includes the push payload as a Hash' do
Loading
@@ -177,7 +177,7 @@ describe API::Events do
Loading
@@ -177,7 +177,7 @@ describe API::Events do
it 'returns no user events' do it 'returns no user events' do
get api("/users/#{user.username}/events?scope=all") get api("/users/#{user.username}/events?scope=all")
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response).to be_an Array expect(json_response).to be_an Array
expect(json_response.size).to eq(0) expect(json_response.size).to eq(0)
end end
Loading
@@ -188,7 +188,7 @@ describe API::Events do
Loading
@@ -188,7 +188,7 @@ describe API::Events do
it 'returns a 404 error if not found' do it 'returns a 404 error if not found' do
get api('/users/42/events', user) get api('/users/42/events', user)
   
expect(response).to have_gitlab_http_status(404) expect(response).to have_gitlab_http_status(:not_found)
expect(json_response['message']).to eq('404 User Not Found') expect(json_response['message']).to eq('404 User Not Found')
end end
end end
Loading
Loading
Loading
@@ -46,19 +46,19 @@ describe API::Features do
Loading
@@ -46,19 +46,19 @@ describe API::Features do
it 'returns a 401 for anonymous users' do it 'returns a 401 for anonymous users' do
get api('/features') get api('/features')
   
expect(response).to have_gitlab_http_status(401) expect(response).to have_gitlab_http_status(:unauthorized)
end end
   
it 'returns a 403 for users' do it 'returns a 403 for users' do
get api('/features', user) get api('/features', user)
   
expect(response).to have_gitlab_http_status(403) expect(response).to have_gitlab_http_status(:forbidden)
end end
   
it 'returns the feature list for admins' do it 'returns the feature list for admins' do
get api('/features', admin) get api('/features', admin)
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response).to match_array(expected_features) expect(json_response).to match_array(expected_features)
end end
end end
Loading
@@ -70,20 +70,20 @@ describe API::Features do
Loading
@@ -70,20 +70,20 @@ describe API::Features do
it 'returns a 401 for anonymous users' do it 'returns a 401 for anonymous users' do
post api("/features/#{feature_name}") post api("/features/#{feature_name}")
   
expect(response).to have_gitlab_http_status(401) expect(response).to have_gitlab_http_status(:unauthorized)
end end
   
it 'returns a 403 for users' do it 'returns a 403 for users' do
post api("/features/#{feature_name}", user) post api("/features/#{feature_name}", user)
   
expect(response).to have_gitlab_http_status(403) expect(response).to have_gitlab_http_status(:forbidden)
end end
   
context 'when passed value=true' do context 'when passed value=true' do
it 'creates an enabled feature' do it 'creates an enabled feature' do
post api("/features/#{feature_name}", admin), params: { value: 'true' } post api("/features/#{feature_name}", admin), params: { value: 'true' }
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response).to eq( expect(json_response).to eq(
'name' => 'my_feature', 'name' => 'my_feature',
'state' => 'on', 'state' => 'on',
Loading
@@ -93,7 +93,7 @@ describe API::Features do
Loading
@@ -93,7 +93,7 @@ describe API::Features do
it 'creates an enabled feature for the given Flipper group when passed feature_group=perf_team' do it 'creates an enabled feature for the given Flipper group when passed feature_group=perf_team' do
post api("/features/#{feature_name}", admin), params: { value: 'true', feature_group: 'perf_team' } post api("/features/#{feature_name}", admin), params: { value: 'true', feature_group: 'perf_team' }
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response).to eq( expect(json_response).to eq(
'name' => 'my_feature', 'name' => 'my_feature',
'state' => 'conditional', 'state' => 'conditional',
Loading
@@ -106,7 +106,7 @@ describe API::Features do
Loading
@@ -106,7 +106,7 @@ describe API::Features do
it 'creates an enabled feature for the given user when passed user=username' do it 'creates an enabled feature for the given user when passed user=username' do
post api("/features/#{feature_name}", admin), params: { value: 'true', user: user.username } post api("/features/#{feature_name}", admin), params: { value: 'true', user: user.username }
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response).to eq( expect(json_response).to eq(
'name' => 'my_feature', 'name' => 'my_feature',
'state' => 'conditional', 'state' => 'conditional',
Loading
@@ -119,7 +119,7 @@ describe API::Features do
Loading
@@ -119,7 +119,7 @@ describe API::Features do
it 'creates an enabled feature for the given user and feature group when passed user=username and feature_group=perf_team' do it 'creates an enabled feature for the given user and feature group when passed user=username and feature_group=perf_team' do
post api("/features/#{feature_name}", admin), params: { value: 'true', user: user.username, feature_group: 'perf_team' } post api("/features/#{feature_name}", admin), params: { value: 'true', user: user.username, feature_group: 'perf_team' }
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response['name']).to eq('my_feature') expect(json_response['name']).to eq('my_feature')
expect(json_response['state']).to eq('conditional') expect(json_response['state']).to eq('conditional')
expect(json_response['gates']).to contain_exactly( expect(json_response['gates']).to contain_exactly(
Loading
@@ -137,7 +137,7 @@ describe API::Features do
Loading
@@ -137,7 +137,7 @@ describe API::Features do
it 'sets the feature gate' do it 'sets the feature gate' do
post api("/features/#{feature_name}", admin), params: { value: 'true', project: project.full_path } post api("/features/#{feature_name}", admin), params: { value: 'true', project: project.full_path }
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response).to eq( expect(json_response).to eq(
'name' => 'my_feature', 'name' => 'my_feature',
'state' => 'conditional', 'state' => 'conditional',
Loading
@@ -152,7 +152,7 @@ describe API::Features do
Loading
@@ -152,7 +152,7 @@ describe API::Features do
it 'sets no new values' do it 'sets no new values' do
post api("/features/#{feature_name}", admin), params: { value: 'true', project: 'mep/to/the/mep/mep' } post api("/features/#{feature_name}", admin), params: { value: 'true', project: 'mep/to/the/mep/mep' }
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response).to eq( expect(json_response).to eq(
"name" => "my_feature", "name" => "my_feature",
"state" => "off", "state" => "off",
Loading
@@ -171,7 +171,7 @@ describe API::Features do
Loading
@@ -171,7 +171,7 @@ describe API::Features do
   
post api("/features/#{feature_name}", admin), params: { value: 'true', group: group.full_path } post api("/features/#{feature_name}", admin), params: { value: 'true', group: group.full_path }
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response).to eq( expect(json_response).to eq(
'name' => 'my_feature', 'name' => 'my_feature',
'state' => 'conditional', 'state' => 'conditional',
Loading
@@ -186,7 +186,7 @@ describe API::Features do
Loading
@@ -186,7 +186,7 @@ describe API::Features do
it 'sets no new values and keeps the feature disabled' do it 'sets no new values and keeps the feature disabled' do
post api("/features/#{feature_name}", admin), params: { value: 'true', group: 'not/a/group' } post api("/features/#{feature_name}", admin), params: { value: 'true', group: 'not/a/group' }
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response).to eq( expect(json_response).to eq(
"name" => "my_feature", "name" => "my_feature",
"state" => "off", "state" => "off",
Loading
@@ -201,7 +201,7 @@ describe API::Features do
Loading
@@ -201,7 +201,7 @@ describe API::Features do
it 'creates a feature with the given percentage if passed an integer' do it 'creates a feature with the given percentage if passed an integer' do
post api("/features/#{feature_name}", admin), params: { value: '50' } post api("/features/#{feature_name}", admin), params: { value: '50' }
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response).to eq( expect(json_response).to eq(
'name' => 'my_feature', 'name' => 'my_feature',
'state' => 'conditional', 'state' => 'conditional',
Loading
@@ -223,7 +223,7 @@ describe API::Features do
Loading
@@ -223,7 +223,7 @@ describe API::Features do
it 'enables the feature' do it 'enables the feature' do
post api("/features/#{feature_name}", admin), params: { value: 'true' } post api("/features/#{feature_name}", admin), params: { value: 'true' }
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response).to eq( expect(json_response).to eq(
'name' => 'my_feature', 'name' => 'my_feature',
'state' => 'on', 'state' => 'on',
Loading
@@ -233,7 +233,7 @@ describe API::Features do
Loading
@@ -233,7 +233,7 @@ describe API::Features do
it 'enables the feature for the given Flipper group when passed feature_group=perf_team' do it 'enables the feature for the given Flipper group when passed feature_group=perf_team' do
post api("/features/#{feature_name}", admin), params: { value: 'true', feature_group: 'perf_team' } post api("/features/#{feature_name}", admin), params: { value: 'true', feature_group: 'perf_team' }
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response).to eq( expect(json_response).to eq(
'name' => 'my_feature', 'name' => 'my_feature',
'state' => 'conditional', 'state' => 'conditional',
Loading
@@ -246,7 +246,7 @@ describe API::Features do
Loading
@@ -246,7 +246,7 @@ describe API::Features do
it 'enables the feature for the given user when passed user=username' do it 'enables the feature for the given user when passed user=username' do
post api("/features/#{feature_name}", admin), params: { value: 'true', user: user.username } post api("/features/#{feature_name}", admin), params: { value: 'true', user: user.username }
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response).to eq( expect(json_response).to eq(
'name' => 'my_feature', 'name' => 'my_feature',
'state' => 'conditional', 'state' => 'conditional',
Loading
@@ -264,7 +264,7 @@ describe API::Features do
Loading
@@ -264,7 +264,7 @@ describe API::Features do
   
post api("/features/#{feature_name}", admin), params: { value: 'false' } post api("/features/#{feature_name}", admin), params: { value: 'false' }
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response).to eq( expect(json_response).to eq(
'name' => 'my_feature', 'name' => 'my_feature',
'state' => 'off', 'state' => 'off',
Loading
@@ -277,7 +277,7 @@ describe API::Features do
Loading
@@ -277,7 +277,7 @@ describe API::Features do
   
post api("/features/#{feature_name}", admin), params: { value: 'false', feature_group: 'perf_team' } post api("/features/#{feature_name}", admin), params: { value: 'false', feature_group: 'perf_team' }
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response).to eq( expect(json_response).to eq(
'name' => 'my_feature', 'name' => 'my_feature',
'state' => 'off', 'state' => 'off',
Loading
@@ -290,7 +290,7 @@ describe API::Features do
Loading
@@ -290,7 +290,7 @@ describe API::Features do
   
post api("/features/#{feature_name}", admin), params: { value: 'false', user: user.username } post api("/features/#{feature_name}", admin), params: { value: 'false', user: user.username }
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response).to eq( expect(json_response).to eq(
'name' => 'my_feature', 'name' => 'my_feature',
'state' => 'off', 'state' => 'off',
Loading
@@ -306,7 +306,7 @@ describe API::Features do
Loading
@@ -306,7 +306,7 @@ describe API::Features do
it 'updates the percentage of time if passed an integer' do it 'updates the percentage of time if passed an integer' do
post api("/features/#{feature_name}", admin), params: { value: '30' } post api("/features/#{feature_name}", admin), params: { value: '30' }
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response).to eq( expect(json_response).to eq(
'name' => 'my_feature', 'name' => 'my_feature',
'state' => 'conditional', 'state' => 'conditional',
Loading
@@ -326,13 +326,13 @@ describe API::Features do
Loading
@@ -326,13 +326,13 @@ describe API::Features do
it 'returns a 401 for anonymous users' do it 'returns a 401 for anonymous users' do
delete api("/features/#{feature_name}") delete api("/features/#{feature_name}")
   
expect(response).to have_gitlab_http_status(401) expect(response).to have_gitlab_http_status(:unauthorized)
end end
   
it 'returns a 403 for users' do it 'returns a 403 for users' do
delete api("/features/#{feature_name}", user) delete api("/features/#{feature_name}", user)
   
expect(response).to have_gitlab_http_status(403) expect(response).to have_gitlab_http_status(:forbidden)
end end
end end
   
Loading
@@ -340,7 +340,7 @@ describe API::Features do
Loading
@@ -340,7 +340,7 @@ describe API::Features do
it 'returns 204 when the value is not set' do it 'returns 204 when the value is not set' do
delete api("/features/#{feature_name}", admin) delete api("/features/#{feature_name}", admin)
   
expect(response).to have_gitlab_http_status(204) expect(response).to have_gitlab_http_status(:no_content)
end end
   
context 'when the gate value was set' do context 'when the gate value was set' do
Loading
@@ -351,7 +351,7 @@ describe API::Features do
Loading
@@ -351,7 +351,7 @@ describe API::Features do
it 'deletes an enabled feature' do it 'deletes an enabled feature' do
delete api("/features/#{feature_name}", admin) delete api("/features/#{feature_name}", admin)
   
expect(response).to have_gitlab_http_status(204) expect(response).to have_gitlab_http_status(:no_content)
expect(Feature.get(feature_name)).not_to be_enabled expect(Feature.get(feature_name)).not_to be_enabled
end end
end end
Loading
Loading
Loading
@@ -58,7 +58,7 @@ describe API::Files do
Loading
@@ -58,7 +58,7 @@ describe API::Files do
it 'returns file attributes in headers' do it 'returns file attributes in headers' do
head api(route(file_path), current_user), params: params head api(route(file_path), current_user), params: params
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response.headers['X-Gitlab-File-Path']).to eq(CGI.unescape(file_path)) expect(response.headers['X-Gitlab-File-Path']).to eq(CGI.unescape(file_path))
expect(response.headers['X-Gitlab-File-Name']).to eq('popen.rb') expect(response.headers['X-Gitlab-File-Name']).to eq('popen.rb')
expect(response.headers['X-Gitlab-Last-Commit-Id']).to eq('570e7b2abdd848b95f2f578043fc23bd6f6fd24d') expect(response.headers['X-Gitlab-Last-Commit-Id']).to eq('570e7b2abdd848b95f2f578043fc23bd6f6fd24d')
Loading
@@ -72,7 +72,7 @@ describe API::Files do
Loading
@@ -72,7 +72,7 @@ describe API::Files do
   
head api(route(file_path), current_user), params: params head api(route(file_path), current_user), params: params
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response.headers['X-Gitlab-File-Name']).to eq('commit.js.coffee') expect(response.headers['X-Gitlab-File-Name']).to eq('commit.js.coffee')
expect(response.headers['X-Gitlab-Content-Sha256']).to eq('08785f04375b47f81f46e68cc125d5ef368aa20576ddb53f91f4d83f1d04b929') expect(response.headers['X-Gitlab-Content-Sha256']).to eq('08785f04375b47f81f46e68cc125d5ef368aa20576ddb53f91f4d83f1d04b929')
end end
Loading
@@ -81,7 +81,7 @@ describe API::Files do
Loading
@@ -81,7 +81,7 @@ describe API::Files do
it "responds with a 400 status" do it "responds with a 400 status" do
head api(route("any%2Ffile"), current_user) head api(route("any%2Ffile"), current_user)
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
end end
end end
   
Loading
@@ -91,7 +91,7 @@ describe API::Files do
Loading
@@ -91,7 +91,7 @@ describe API::Files do
   
head api(route('app%2Fmodels%2Fapplication%2Erb'), current_user), params: params head api(route('app%2Fmodels%2Fapplication%2Erb'), current_user), params: params
   
expect(response).to have_gitlab_http_status(404) expect(response).to have_gitlab_http_status(:not_found)
end end
end end
   
Loading
@@ -101,7 +101,7 @@ describe API::Files do
Loading
@@ -101,7 +101,7 @@ describe API::Files do
it "responds with a 403 status" do it "responds with a 403 status" do
head api(route(file_path), current_user), params: params head api(route(file_path), current_user), params: params
   
expect(response).to have_gitlab_http_status(403) expect(response).to have_gitlab_http_status(:forbidden)
end end
end end
end end
Loading
@@ -119,7 +119,7 @@ describe API::Files do
Loading
@@ -119,7 +119,7 @@ describe API::Files do
   
head api(route(file_path), current_user), params: params head api(route(file_path), current_user), params: params
   
expect(response).to have_gitlab_http_status(404) expect(response).to have_gitlab_http_status(:not_found)
end end
end end
   
Loading
@@ -148,7 +148,7 @@ describe API::Files do
Loading
@@ -148,7 +148,7 @@ describe API::Files do
it 'returns file attributes as json' do it 'returns file attributes as json' do
get api(route(file_path), current_user), params: params get api(route(file_path), current_user), params: params
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response['file_path']).to eq(CGI.unescape(file_path)) expect(json_response['file_path']).to eq(CGI.unescape(file_path))
expect(json_response['file_name']).to eq('popen.rb') expect(json_response['file_name']).to eq('popen.rb')
expect(json_response['last_commit_id']).to eq('570e7b2abdd848b95f2f578043fc23bd6f6fd24d') expect(json_response['last_commit_id']).to eq('570e7b2abdd848b95f2f578043fc23bd6f6fd24d')
Loading
@@ -161,7 +161,7 @@ describe API::Files do
Loading
@@ -161,7 +161,7 @@ describe API::Files do
   
get api(route(file_path), current_user), params: params get api(route(file_path), current_user), params: params
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response.content_type).to eq('application/json') expect(response.content_type).to eq('application/json')
end end
   
Loading
@@ -172,7 +172,7 @@ describe API::Files do
Loading
@@ -172,7 +172,7 @@ describe API::Files do
   
get api(route(file_path), current_user), params: params get api(route(file_path), current_user), params: params
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response['file_name']).to eq('commit.js.coffee') expect(json_response['file_name']).to eq('commit.js.coffee')
expect(json_response['content_sha256']).to eq('08785f04375b47f81f46e68cc125d5ef368aa20576ddb53f91f4d83f1d04b929') expect(json_response['content_sha256']).to eq('08785f04375b47f81f46e68cc125d5ef368aa20576ddb53f91f4d83f1d04b929')
expect(Base64.decode64(json_response['content']).lines.first).to eq("class Commit\n") expect(Base64.decode64(json_response['content']).lines.first).to eq("class Commit\n")
Loading
@@ -184,7 +184,7 @@ describe API::Files do
Loading
@@ -184,7 +184,7 @@ describe API::Files do
   
get api(url, current_user), params: params get api(url, current_user), params: params
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(headers[Gitlab::Workhorse::DETECT_HEADER]).to eq "true" expect(headers[Gitlab::Workhorse::DETECT_HEADER]).to eq "true"
end end
   
Loading
@@ -193,7 +193,7 @@ describe API::Files do
Loading
@@ -193,7 +193,7 @@ describe API::Files do
   
get api(url, current_user), params: params get api(url, current_user), params: params
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
end end
   
it 'sets inline content disposition by default' do it 'sets inline content disposition by default' do
Loading
@@ -294,7 +294,7 @@ describe API::Files do
Loading
@@ -294,7 +294,7 @@ describe API::Files do
it 'returns file attributes in headers' do it 'returns file attributes in headers' do
head api(route(file_path) + '/blame', current_user), params: params head api(route(file_path) + '/blame', current_user), params: params
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(response.headers['X-Gitlab-File-Path']).to eq(CGI.unescape(file_path)) expect(response.headers['X-Gitlab-File-Path']).to eq(CGI.unescape(file_path))
expect(response.headers['X-Gitlab-File-Name']).to eq('popen.rb') expect(response.headers['X-Gitlab-File-Name']).to eq('popen.rb')
expect(response.headers['X-Gitlab-Last-Commit-Id']).to eq('570e7b2abdd848b95f2f578043fc23bd6f6fd24d') expect(response.headers['X-Gitlab-Last-Commit-Id']).to eq('570e7b2abdd848b95f2f578043fc23bd6f6fd24d')
Loading
@@ -305,7 +305,7 @@ describe API::Files do
Loading
@@ -305,7 +305,7 @@ describe API::Files do
it 'returns blame file attributes as json' do it 'returns blame file attributes as json' do
get api(route(file_path) + '/blame', current_user), params: params get api(route(file_path) + '/blame', current_user), params: params
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response.map { |x| x['lines'].size }).to eq(expected_blame_range_sizes) expect(json_response.map { |x| x['lines'].size }).to eq(expected_blame_range_sizes)
expect(json_response.map { |x| x['commit']['id'] }).to eq(expected_blame_range_commit_ids) expect(json_response.map { |x| x['commit']['id'] }).to eq(expected_blame_range_commit_ids)
range = json_response[0] range = json_response[0]
Loading
@@ -329,7 +329,7 @@ describe API::Files do
Loading
@@ -329,7 +329,7 @@ describe API::Files do
   
get api(url, current_user), params: params get api(url, current_user), params: params
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
end end
   
it 'returns file by commit sha' do it 'returns file by commit sha' do
Loading
@@ -339,7 +339,7 @@ describe API::Files do
Loading
@@ -339,7 +339,7 @@ describe API::Files do
   
get api(route(file_path) + '/blame', current_user), params: params get api(route(file_path) + '/blame', current_user), params: params
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
end end
   
context 'when mandatory params are not given' do context 'when mandatory params are not given' do
Loading
@@ -411,7 +411,7 @@ describe API::Files do
Loading
@@ -411,7 +411,7 @@ describe API::Files do
   
get api(route(file_path) + '/blame', personal_access_token: token), params: params get api(route(file_path) + '/blame', personal_access_token: token), params: params
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
end end
end end
end end
Loading
@@ -424,7 +424,7 @@ describe API::Files do
Loading
@@ -424,7 +424,7 @@ describe API::Files do
   
get api(url, current_user), params: params get api(url, current_user), params: params
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
end end
   
it 'returns raw file info for files with dots' do it 'returns raw file info for files with dots' do
Loading
@@ -433,7 +433,7 @@ describe API::Files do
Loading
@@ -433,7 +433,7 @@ describe API::Files do
   
get api(url, current_user), params: params get api(url, current_user), params: params
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
end end
   
it 'returns file by commit sha' do it 'returns file by commit sha' do
Loading
@@ -444,7 +444,7 @@ describe API::Files do
Loading
@@ -444,7 +444,7 @@ describe API::Files do
   
get api(route(file_path) + "/raw", current_user), params: params get api(route(file_path) + "/raw", current_user), params: params
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
end end
   
it 'sets no-cache headers' do it 'sets no-cache headers' do
Loading
@@ -520,7 +520,7 @@ describe API::Files do
Loading
@@ -520,7 +520,7 @@ describe API::Files do
   
get api(route(file_path) + "/raw", personal_access_token: token), params: params get api(route(file_path) + "/raw", personal_access_token: token), params: params
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
end end
end end
end end
Loading
@@ -538,7 +538,7 @@ describe API::Files do
Loading
@@ -538,7 +538,7 @@ describe API::Files do
it "creates a new file in project repo" do it "creates a new file in project repo" do
post api(route(file_path), user), params: params post api(route(file_path), user), params: params
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response["file_path"]).to eq(CGI.unescape(file_path)) expect(json_response["file_path"]).to eq(CGI.unescape(file_path))
last_commit = project.repository.commit.raw last_commit = project.repository.commit.raw
expect(last_commit.author_email).to eq(user.email) expect(last_commit.author_email).to eq(user.email)
Loading
@@ -548,7 +548,7 @@ describe API::Files do
Loading
@@ -548,7 +548,7 @@ describe API::Files do
it "returns a 400 bad request if no mandatory params given" do it "returns a 400 bad request if no mandatory params given" do
post api(route("any%2Etxt"), user) post api(route("any%2Etxt"), user)
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
end end
   
it 'returns a 400 bad request if the commit message is empty' do it 'returns a 400 bad request if the commit message is empty' do
Loading
@@ -556,7 +556,7 @@ describe API::Files do
Loading
@@ -556,7 +556,7 @@ describe API::Files do
   
post api(route(file_path), user), params: params post api(route(file_path), user), params: params
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
end end
   
it "returns a 400 if editor fails to create file" do it "returns a 400 if editor fails to create file" do
Loading
@@ -566,7 +566,7 @@ describe API::Files do
Loading
@@ -566,7 +566,7 @@ describe API::Files do
   
post api(route("any%2Etxt"), user), params: params post api(route("any%2Etxt"), user), params: params
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
end end
   
context 'with PATs' do context 'with PATs' do
Loading
@@ -575,7 +575,7 @@ describe API::Files do
Loading
@@ -575,7 +575,7 @@ describe API::Files do
   
post api(route(file_path), personal_access_token: token), params: params post api(route(file_path), personal_access_token: token), params: params
   
expect(response).to have_gitlab_http_status(403) expect(response).to have_gitlab_http_status(:forbidden)
end end
   
it 'returns 201 with `api` scope' do it 'returns 201 with `api` scope' do
Loading
@@ -583,7 +583,7 @@ describe API::Files do
Loading
@@ -583,7 +583,7 @@ describe API::Files do
   
post api(route(file_path), personal_access_token: token), params: params post api(route(file_path), personal_access_token: token), params: params
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
end end
end end
   
Loading
@@ -593,7 +593,7 @@ describe API::Files do
Loading
@@ -593,7 +593,7 @@ describe API::Files do
   
post api(route("new_file_with_author%2Etxt"), user), params: params post api(route("new_file_with_author%2Etxt"), user), params: params
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(response.content_type).to eq('application/json') expect(response.content_type).to eq('application/json')
last_commit = project.repository.commit.raw last_commit = project.repository.commit.raw
expect(last_commit.author_email).to eq(author_email) expect(last_commit.author_email).to eq(author_email)
Loading
@@ -607,7 +607,7 @@ describe API::Files do
Loading
@@ -607,7 +607,7 @@ describe API::Files do
it "creates a new file in project repo" do it "creates a new file in project repo" do
post api(route("newfile%2Erb"), user), params: params post api(route("newfile%2Erb"), user), params: params
   
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(:created)
expect(json_response['file_path']).to eq('newfile.rb') expect(json_response['file_path']).to eq('newfile.rb')
last_commit = project.repository.commit.raw last_commit = project.repository.commit.raw
expect(last_commit.author_email).to eq(user.email) expect(last_commit.author_email).to eq(user.email)
Loading
@@ -628,7 +628,7 @@ describe API::Files do
Loading
@@ -628,7 +628,7 @@ describe API::Files do
it "updates existing file in project repo" do it "updates existing file in project repo" do
put api(route(file_path), user), params: params put api(route(file_path), user), params: params
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response['file_path']).to eq(CGI.unescape(file_path)) expect(json_response['file_path']).to eq(CGI.unescape(file_path))
last_commit = project.repository.commit.raw last_commit = project.repository.commit.raw
expect(last_commit.author_email).to eq(user.email) expect(last_commit.author_email).to eq(user.email)
Loading
@@ -640,7 +640,7 @@ describe API::Files do
Loading
@@ -640,7 +640,7 @@ describe API::Files do
   
put api(route(file_path), user), params: params put api(route(file_path), user), params: params
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
end end
   
it "returns a 400 bad request if update existing file with stale last commit id" do it "returns a 400 bad request if update existing file with stale last commit id" do
Loading
@@ -648,7 +648,7 @@ describe API::Files do
Loading
@@ -648,7 +648,7 @@ describe API::Files do
   
put api(route(file_path), user), params: params_with_stale_id put api(route(file_path), user), params: params_with_stale_id
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
expect(json_response['message']).to eq(_('You are attempting to update a file that has changed since you started editing it.')) expect(json_response['message']).to eq(_('You are attempting to update a file that has changed since you started editing it.'))
end end
   
Loading
@@ -659,13 +659,13 @@ describe API::Files do
Loading
@@ -659,13 +659,13 @@ describe API::Files do
   
put api(route(file_path), user), params: params_with_correct_id put api(route(file_path), user), params: params_with_correct_id
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
end end
   
it "returns a 400 bad request if no params given" do it "returns a 400 bad request if no params given" do
put api(route(file_path), user) put api(route(file_path), user)
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
end end
   
context "when specifying an author" do context "when specifying an author" do
Loading
@@ -674,7 +674,7 @@ describe API::Files do
Loading
@@ -674,7 +674,7 @@ describe API::Files do
   
put api(route(file_path), user), params: params put api(route(file_path), user), params: params
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
last_commit = project.repository.commit.raw last_commit = project.repository.commit.raw
expect(last_commit.author_email).to eq(author_email) expect(last_commit.author_email).to eq(author_email)
expect(last_commit.author_name).to eq(author_name) expect(last_commit.author_name).to eq(author_name)
Loading
@@ -693,13 +693,13 @@ describe API::Files do
Loading
@@ -693,13 +693,13 @@ describe API::Files do
it "deletes existing file in project repo" do it "deletes existing file in project repo" do
delete api(route(file_path), user), params: params delete api(route(file_path), user), params: params
   
expect(response).to have_gitlab_http_status(204) expect(response).to have_gitlab_http_status(:no_content)
end end
   
it "returns a 400 bad request if no params given" do it "returns a 400 bad request if no params given" do
delete api(route(file_path), user) delete api(route(file_path), user)
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
end end
   
it 'returns a 400 bad request if the commit message is empty' do it 'returns a 400 bad request if the commit message is empty' do
Loading
@@ -707,7 +707,7 @@ describe API::Files do
Loading
@@ -707,7 +707,7 @@ describe API::Files do
   
delete api(route(file_path), user), params: params delete api(route(file_path), user), params: params
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
end end
   
it "returns a 400 if fails to delete file" do it "returns a 400 if fails to delete file" do
Loading
@@ -717,7 +717,7 @@ describe API::Files do
Loading
@@ -717,7 +717,7 @@ describe API::Files do
   
delete api(route(file_path), user), params: params delete api(route(file_path), user), params: params
   
expect(response).to have_gitlab_http_status(400) expect(response).to have_gitlab_http_status(:bad_request)
end end
   
context "when specifying an author" do context "when specifying an author" do
Loading
@@ -726,7 +726,7 @@ describe API::Files do
Loading
@@ -726,7 +726,7 @@ describe API::Files do
   
delete api(route(file_path), user), params: params delete api(route(file_path), user), params: params
   
expect(response).to have_gitlab_http_status(204) expect(response).to have_gitlab_http_status(:no_content)
end end
end end
end end
Loading
@@ -754,7 +754,7 @@ describe API::Files do
Loading
@@ -754,7 +754,7 @@ describe API::Files do
it "remains unchanged" do it "remains unchanged" do
get api(route(file_path), user), params: get_params get api(route(file_path), user), params: get_params
   
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(:ok)
expect(json_response['file_path']).to eq(CGI.unescape(file_path)) expect(json_response['file_path']).to eq(CGI.unescape(file_path))
expect(json_response['file_name']).to eq(CGI.unescape(file_path)) expect(json_response['file_name']).to eq(CGI.unescape(file_path))
expect(json_response['content']).to eq(put_params[:content]) expect(json_response['content']).to eq(put_params[:content])
Loading
Loading
Loading
@@ -98,6 +98,53 @@ describe Issues::CloseService do
Loading
@@ -98,6 +98,53 @@ describe Issues::CloseService do
expect(body_text).not_to include(closing_merge_request.to_reference) expect(body_text).not_to include(closing_merge_request.to_reference)
end end
end end
context 'updating `metrics.first_mentioned_in_commit_at`' do
subject { described_class.new(project, user).close_issue(issue, closed_via: closing_merge_request) }
context 'when `metrics.first_mentioned_in_commit_at` is not set' do
it 'uses the first commit timestamp' do
expected = closing_merge_request.commits.first.date
subject
expect(issue.metrics.first_mentioned_in_commit_at).to eq(expected)
end
end
context 'when `metrics.first_mentioned_in_commit_at` is already set' do
before do
issue.metrics.update!(first_mentioned_in_commit_at: Time.now)
end
it 'does not update the metrics' do
expect { subject }.not_to change { issue.metrics.first_mentioned_in_commit_at }
end
end
context 'when merge request has no commits' do
let(:closing_merge_request) { create(:merge_request, :without_diffs, source_project: project) }
it 'does not update the metrics' do
subject
expect(issue.metrics.first_mentioned_in_commit_at).to be_nil
end
end
context 'when `store_first_mentioned_in_commit_on_issue_close` feature flag is off' do
before do
stub_feature_flags(store_first_mentioned_in_commit_on_issue_close: { enabled: false, thing: issue.project })
end
it 'does not update the metrics' do
subject
expect(described_class).not_to receive(:store_first_mentioned_in_commit_at)
expect(issue.metrics.first_mentioned_in_commit_at).to be_nil
end
end
end
end end
   
context "closed by a commit", :sidekiq_might_not_need_inline do context "closed by a commit", :sidekiq_might_not_need_inline do
Loading
Loading
Loading
@@ -118,7 +118,7 @@ describe MergeRequests::MergeService do
Loading
@@ -118,7 +118,7 @@ describe MergeRequests::MergeService do
   
it 'closes GitLab issue tracker issues' do it 'closes GitLab issue tracker issues' do
issue = create :issue, project: project issue = create :issue, project: project
commit = double('commit', safe_message: "Fixes #{issue.to_reference}") commit = double('commit', safe_message: "Fixes #{issue.to_reference}", date: Time.now)
allow(merge_request).to receive(:commits).and_return([commit]) allow(merge_request).to receive(:commits).and_return([commit])
merge_request.cache_merge_request_closes_issues! merge_request.cache_merge_request_closes_issues!
   
Loading
Loading
Loading
@@ -25,7 +25,31 @@ describe Projects::Alerting::NotifyService do
Loading
@@ -25,7 +25,31 @@ describe Projects::Alerting::NotifyService do
end end
end end
   
shared_examples 'does not process incident issues' do |http_status:| shared_examples 'sends notification email' do
let(:notification_service) { spy }
it 'sends a notification for firing alerts only' do
expect(NotificationService)
.to receive(:new)
.and_return(notification_service)
expect(notification_service)
.to receive_message_chain(:async, :prometheus_alerts_fired)
expect(subject.status).to eq(:success)
end
end
shared_examples 'does not process incident issues' do
it 'does not process issues' do
expect(IncidentManagement::ProcessAlertWorker)
.not_to receive(:perform_async)
expect(subject.status).to eq(:success)
end
end
shared_examples 'does not process incident issues due to error' do |http_status:|
it 'does not process issues' do it 'does not process issues' do
expect(IncidentManagement::ProcessAlertWorker) expect(IncidentManagement::ProcessAlertWorker)
.not_to receive(:perform_async) .not_to receive(:perform_async)
Loading
@@ -54,31 +78,50 @@ describe Projects::Alerting::NotifyService do
Loading
@@ -54,31 +78,50 @@ describe Projects::Alerting::NotifyService do
   
context 'with valid token' do context 'with valid token' do
let(:token) { alerts_service.token } let(:token) { alerts_service.token }
let(:incident_management_setting) { double(send_email?: email_enabled, create_issue?: issue_enabled) }
let(:email_enabled) { false }
let(:issue_enabled) { false }
before do
allow(service)
.to receive(:incident_management_setting)
.and_return(incident_management_setting)
end
it_behaves_like 'does not process incident issues'
context 'issue enabled' do
let(:issue_enabled) { true }
   
context 'with a valid payload' do
it_behaves_like 'processes incident issues', 1 it_behaves_like 'processes incident issues', 1
end
   
context 'with an invalid payload' do context 'with an invalid payload' do
before do before do
allow(Gitlab::Alerting::NotificationPayloadParser) allow(Gitlab::Alerting::NotificationPayloadParser)
.to receive(:call) .to receive(:call)
.and_raise(Gitlab::Alerting::NotificationPayloadParser::BadPayloadError) .and_raise(Gitlab::Alerting::NotificationPayloadParser::BadPayloadError)
end
it_behaves_like 'does not process incident issues due to error', http_status: 400
end end
end
context 'with emails turned on' do
let(:email_enabled) { true }
   
it_behaves_like 'does not process incident issues', http_status: 400 it_behaves_like 'sends notification email'
end end
end end
   
context 'with invalid token' do context 'with invalid token' do
it_behaves_like 'does not process incident issues', http_status: 401 it_behaves_like 'does not process incident issues due to error', http_status: 401
end end
end
   
context 'with deactivated Alerts Service' do context 'with deactivated Alerts Service' do
let!(:alerts_service) { create(:alerts_service, :inactive, project: project) } let!(:alerts_service) { create(:alerts_service, :inactive, project: project) }
   
it_behaves_like 'does not process incident issues', http_status: 403 it_behaves_like 'does not process incident issues due to error', http_status: 403
end
end end
end end
end end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment