2020-01-13 16:07:39 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-24 02:09:01 -04:00
|
|
|
RSpec.describe API::ErrorTracking do
|
2020-02-15 16:08:49 -05:00
|
|
|
let_it_be(:user) { create(:user) }
|
2020-02-05 13:09:06 -05:00
|
|
|
let(:setting) { create(:project_error_tracking_setting) }
|
|
|
|
let(:project) { setting.project }
|
|
|
|
|
|
|
|
shared_examples 'returns project settings' do
|
|
|
|
it 'returns correct project settings' do
|
2020-02-15 16:08:49 -05:00
|
|
|
make_request
|
2020-02-05 13:09:06 -05:00
|
|
|
|
|
|
|
expect(response).to have_gitlab_http_status(:ok)
|
|
|
|
expect(json_response).to eq(
|
|
|
|
'active' => setting.reload.enabled,
|
|
|
|
'project_name' => setting.project_name,
|
|
|
|
'sentry_external_url' => setting.sentry_external_url,
|
|
|
|
'api_url' => setting.api_url
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
shared_examples 'returns 404' do
|
2020-02-27 07:09:12 -05:00
|
|
|
it 'returns no project settings' do
|
2020-02-15 16:08:49 -05:00
|
|
|
make_request
|
2020-02-05 13:09:06 -05:00
|
|
|
|
|
|
|
expect(response).to have_gitlab_http_status(:not_found)
|
|
|
|
expect(json_response['message'])
|
|
|
|
.to eq('404 Error Tracking Setting Not Found')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "PATCH /projects/:id/error_tracking/settings" do
|
2020-02-15 16:08:49 -05:00
|
|
|
let(:params) { { active: false } }
|
|
|
|
|
|
|
|
def make_request
|
2020-02-05 13:09:06 -05:00
|
|
|
patch api("/projects/#{project.id}/error_tracking/settings", user), params: params
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when authenticated as maintainer' do
|
|
|
|
before do
|
|
|
|
project.add_maintainer(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'patch settings' do
|
2020-02-15 16:08:49 -05:00
|
|
|
it_behaves_like 'returns project settings'
|
|
|
|
|
|
|
|
it 'updates enabled flag' do
|
|
|
|
expect(setting).to be_enabled
|
|
|
|
|
|
|
|
make_request
|
|
|
|
|
|
|
|
expect(json_response).to include('active' => false)
|
|
|
|
expect(setting.reload).not_to be_enabled
|
2020-02-05 13:09:06 -05:00
|
|
|
end
|
|
|
|
|
2020-02-15 16:08:49 -05:00
|
|
|
context 'active is invalid' do
|
|
|
|
let(:params) { { active: "randomstring" } }
|
2020-02-05 13:09:06 -05:00
|
|
|
|
2020-02-15 16:08:49 -05:00
|
|
|
it 'returns active is invalid if non boolean' do
|
|
|
|
make_request
|
2020-02-05 13:09:06 -05:00
|
|
|
|
2020-02-15 16:08:49 -05:00
|
|
|
expect(response).to have_gitlab_http_status(:bad_request)
|
|
|
|
expect(json_response['error'])
|
|
|
|
.to eq('active is invalid')
|
|
|
|
end
|
2020-02-05 13:09:06 -05:00
|
|
|
end
|
|
|
|
|
2020-02-15 16:08:49 -05:00
|
|
|
context 'active is empty' do
|
|
|
|
let(:params) { { active: '' } }
|
|
|
|
|
|
|
|
it 'returns 400' do
|
|
|
|
make_request
|
2020-01-13 16:07:39 -05:00
|
|
|
|
2020-02-15 16:08:49 -05:00
|
|
|
expect(response).to have_gitlab_http_status(:bad_request)
|
|
|
|
expect(json_response['error'])
|
|
|
|
.to eq('active is empty')
|
|
|
|
end
|
2020-02-05 13:09:06 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'without a project setting' do
|
|
|
|
let(:project) { create(:project) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
project.add_maintainer(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'patch settings' do
|
|
|
|
it_behaves_like 'returns 404'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when authenticated as reporter' do
|
|
|
|
before do
|
|
|
|
project.add_reporter(user)
|
|
|
|
end
|
|
|
|
|
2020-02-15 16:08:49 -05:00
|
|
|
context 'patch request' do
|
|
|
|
it 'returns 403' do
|
|
|
|
make_request
|
2020-02-05 13:09:06 -05:00
|
|
|
|
2020-02-15 16:08:49 -05:00
|
|
|
expect(response).to have_gitlab_http_status(:forbidden)
|
|
|
|
end
|
2020-02-05 13:09:06 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when authenticated as developer' do
|
|
|
|
before do
|
|
|
|
project.add_developer(user)
|
|
|
|
end
|
|
|
|
|
2020-02-15 16:08:49 -05:00
|
|
|
context 'patch request' do
|
|
|
|
it 'returns 403' do
|
|
|
|
make_request
|
2020-02-05 13:09:06 -05:00
|
|
|
|
2020-02-15 16:08:49 -05:00
|
|
|
expect(response).to have_gitlab_http_status(:forbidden)
|
|
|
|
end
|
2020-02-05 13:09:06 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when authenticated as non-member' do
|
2020-02-15 16:08:49 -05:00
|
|
|
context 'patch request' do
|
|
|
|
it 'returns 404' do
|
|
|
|
make_request
|
2020-02-05 13:09:06 -05:00
|
|
|
|
2020-02-15 16:08:49 -05:00
|
|
|
expect(response).to have_gitlab_http_status(:not_found)
|
|
|
|
end
|
2020-02-05 13:09:06 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when unauthenticated' do
|
|
|
|
let(:user) { nil }
|
|
|
|
|
2020-02-15 16:08:49 -05:00
|
|
|
context 'patch request' do
|
|
|
|
it 'returns 401 for update request' do
|
|
|
|
make_request
|
2020-02-05 13:09:06 -05:00
|
|
|
|
2020-02-15 16:08:49 -05:00
|
|
|
expect(response).to have_gitlab_http_status(:unauthorized)
|
|
|
|
end
|
2020-02-05 13:09:06 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "GET /projects/:id/error_tracking/settings" do
|
2020-01-13 16:07:39 -05:00
|
|
|
def make_request
|
|
|
|
get api("/projects/#{project.id}/error_tracking/settings", user)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when authenticated as maintainer' do
|
|
|
|
before do
|
|
|
|
project.add_maintainer(user)
|
|
|
|
end
|
|
|
|
|
2020-02-05 13:09:06 -05:00
|
|
|
context 'get settings' do
|
|
|
|
it_behaves_like 'returns project settings'
|
2020-01-13 16:07:39 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'without a project setting' do
|
|
|
|
let(:project) { create(:project) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
project.add_maintainer(user)
|
|
|
|
end
|
|
|
|
|
2020-02-05 13:09:06 -05:00
|
|
|
context 'get settings' do
|
|
|
|
it_behaves_like 'returns 404'
|
2020-01-13 16:07:39 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when authenticated as reporter' do
|
|
|
|
before do
|
|
|
|
project.add_reporter(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns 403' do
|
|
|
|
make_request
|
|
|
|
|
|
|
|
expect(response).to have_gitlab_http_status(:forbidden)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-02-05 13:09:06 -05:00
|
|
|
context 'when authenticated as developer' do
|
|
|
|
before do
|
|
|
|
project.add_developer(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns 403' do
|
|
|
|
make_request
|
|
|
|
|
|
|
|
expect(response).to have_gitlab_http_status(:forbidden)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-01-13 16:07:39 -05:00
|
|
|
context 'when authenticated as non-member' do
|
|
|
|
it 'returns 404' do
|
|
|
|
make_request
|
|
|
|
|
|
|
|
expect(response).to have_gitlab_http_status(:not_found)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when unauthenticated' do
|
|
|
|
let(:user) { nil }
|
|
|
|
|
|
|
|
it 'returns 401' do
|
|
|
|
make_request
|
|
|
|
|
|
|
|
expect(response).to have_gitlab_http_status(:unauthorized)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|