debian-mirror-gitlab/spec/controllers/projects/error_tracking_controller_spec.rb

343 lines
10 KiB
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
# frozen_string_literal: true
2019-10-12 21:52:04 +05:30
require 'spec_helper'
2019-02-15 15:39:39 +05:30
2020-06-23 00:09:42 +05:30
RSpec.describe Projects::ErrorTrackingController do
2019-12-21 20:55:43 +05:30
let_it_be(:project) { create(:project) }
let_it_be(:user) { create(:user) }
2019-02-15 15:39:39 +05:30
before do
sign_in(user)
project.add_maintainer(user)
end
describe 'GET #index' do
describe 'html' do
it 'renders index with 200 status code' do
get :index, params: project_params
expect(response).to have_gitlab_http_status(:ok)
expect(response).to render_template(:index)
end
context 'with insufficient permissions' do
before do
project.add_guest(user)
end
it 'returns 404' do
get :index, params: project_params
expect(response).to have_gitlab_http_status(:not_found)
end
end
context 'with an anonymous user' do
before do
sign_out(user)
end
it 'redirects to sign-in page' do
get :index, params: project_params
expect(response).to redirect_to(new_user_session_path)
end
end
end
describe 'format json' do
let(:list_issues_service) { spy(:list_issues_service) }
let(:external_url) { 'http://example.com' }
2019-12-26 22:10:19 +05:30
context 'no data' do
2020-01-01 13:55:28 +05:30
let(:permitted_params) do
ActionController::Parameters.new({}).permit!
end
2019-12-26 22:10:19 +05:30
before do
2020-01-01 13:55:28 +05:30
expect(ErrorTracking::ListIssuesService)
.to receive(:new).with(project, user, permitted_params)
.and_return(list_issues_service)
2019-12-26 22:10:19 +05:30
expect(list_issues_service).to receive(:execute)
.and_return(status: :error, http_status: :no_content)
end
it 'returns no data' do
get :index, params: project_params(format: :json)
expect(response).to have_gitlab_http_status(:no_content)
end
end
2020-01-01 13:55:28 +05:30
context 'with extra params' do
let(:cursor) { '1572959139000:0:0' }
let(:search_term) { 'something' }
let(:sort) { 'last_seen' }
let(:params) { project_params(format: :json, search_term: search_term, sort: sort, cursor: cursor) }
let(:permitted_params) do
ActionController::Parameters.new(search_term: search_term, sort: sort, cursor: cursor).permit!
end
2019-02-15 15:39:39 +05:30
before do
2020-01-01 13:55:28 +05:30
expect(ErrorTracking::ListIssuesService)
.to receive(:new).with(project, user, permitted_params)
.and_return(list_issues_service)
2019-02-15 15:39:39 +05:30
end
2020-01-01 13:55:28 +05:30
context 'service result is successful' do
before do
expect(list_issues_service).to receive(:execute)
.and_return(status: :success, issues: [error], pagination: {})
expect(list_issues_service).to receive(:external_url)
.and_return(external_url)
2020-03-13 15:44:24 +05:30
get :index, params: params
2020-01-01 13:55:28 +05:30
end
2019-02-15 15:39:39 +05:30
2020-01-01 13:55:28 +05:30
let(:error) { build(:error_tracking_error) }
2019-02-15 15:39:39 +05:30
2020-01-01 13:55:28 +05:30
it 'returns a list of errors' do
expect(response).to have_gitlab_http_status(:ok)
expect(response).to match_response_schema('error_tracking/index')
expect(json_response).to eq(
'errors' => [error].as_json,
'pagination' => {},
'external_url' => external_url
)
end
2020-03-13 15:44:24 +05:30
it_behaves_like 'sets the polling header'
2019-02-15 15:39:39 +05:30
end
end
2020-01-01 13:55:28 +05:30
context 'without extra params' do
before do
expect(ErrorTracking::ListIssuesService)
.to receive(:new).with(project, user, {})
.and_return(list_issues_service)
end
2019-02-15 15:39:39 +05:30
2020-01-01 13:55:28 +05:30
context 'service result is successful' do
2019-02-15 15:39:39 +05:30
before do
expect(list_issues_service).to receive(:execute)
2020-01-01 13:55:28 +05:30
.and_return(status: :success, issues: [error], pagination: {})
expect(list_issues_service).to receive(:external_url)
.and_return(external_url)
2019-02-15 15:39:39 +05:30
end
2020-01-01 13:55:28 +05:30
let(:error) { build(:error_tracking_error) }
it 'returns a list of errors' do
2019-02-15 15:39:39 +05:30
get :index, params: project_params(format: :json)
2020-01-01 13:55:28 +05:30
expect(response).to have_gitlab_http_status(:ok)
expect(response).to match_response_schema('error_tracking/index')
expect(json_response).to eq(
'errors' => [error].as_json,
'pagination' => {},
'external_url' => external_url
)
2019-02-15 15:39:39 +05:30
end
end
2020-01-01 13:55:28 +05:30
context 'service result is erroneous' do
let(:error_message) { 'error message' }
2019-02-15 15:39:39 +05:30
2020-01-01 13:55:28 +05:30
context 'without http_status' do
before do
expect(list_issues_service).to receive(:execute)
.and_return(status: :error, message: error_message)
end
it 'returns 400 with message' do
get :index, params: project_params(format: :json)
expect(response).to have_gitlab_http_status(:bad_request)
expect(json_response['message']).to eq(error_message)
end
2019-02-15 15:39:39 +05:30
end
2020-01-01 13:55:28 +05:30
context 'with explicit http_status' do
let(:http_status) { :no_content }
2019-02-15 15:39:39 +05:30
2020-01-01 13:55:28 +05:30
before do
expect(list_issues_service).to receive(:execute).and_return(
status: :error,
message: error_message,
http_status: http_status
)
end
it 'returns http_status with message' do
get :index, params: project_params(format: :json)
expect(response).to have_gitlab_http_status(http_status)
expect(json_response['message']).to eq(error_message)
end
2019-02-15 15:39:39 +05:30
end
end
end
end
end
2019-12-26 22:10:19 +05:30
describe 'GET #issue_details' do
2020-04-22 19:07:51 +05:30
let_it_be(:issue_id) { non_existing_record_id }
2019-12-26 22:10:19 +05:30
let(:issue_details_service) { spy(:issue_details_service) }
let(:permitted_params) do
ActionController::Parameters.new(
{ issue_id: issue_id.to_s }
).permit!
end
before do
expect(ErrorTracking::IssueDetailsService)
.to receive(:new).with(project, user, permitted_params)
.and_return(issue_details_service)
end
describe 'format json' do
context 'no data' do
before do
expect(issue_details_service).to receive(:execute)
.and_return(status: :error, http_status: :no_content)
2020-03-13 15:44:24 +05:30
get :details, params: issue_params(issue_id: issue_id, format: :json)
2019-12-26 22:10:19 +05:30
end
it 'returns no data' do
expect(response).to have_gitlab_http_status(:no_content)
end
2020-03-13 15:44:24 +05:30
it_behaves_like 'sets the polling header'
2019-12-26 22:10:19 +05:30
end
context 'service result is successful' do
before do
expect(issue_details_service).to receive(:execute)
.and_return(status: :success, issue: error)
2020-03-13 15:44:24 +05:30
get :details, params: issue_params(issue_id: issue_id, format: :json)
2019-12-26 22:10:19 +05:30
end
let(:error) { build(:detailed_error_tracking_error) }
it 'returns an error' do
2020-03-13 15:44:24 +05:30
expected_error = error.as_json.except('first_release_version').merge(
{
'gitlab_commit' => nil,
'gitlab_commit_path' => nil
}
)
2019-12-26 22:10:19 +05:30
expect(response).to have_gitlab_http_status(:ok)
expect(response).to match_response_schema('error_tracking/issue_detailed')
2020-03-13 15:44:24 +05:30
expect(json_response['error']).to eq(expected_error)
2019-12-26 22:10:19 +05:30
end
2020-03-13 15:44:24 +05:30
it_behaves_like 'sets the polling header'
2019-12-26 22:10:19 +05:30
end
context 'service result is erroneous' do
let(:error_message) { 'error message' }
context 'without http_status' do
before do
expect(issue_details_service).to receive(:execute)
.and_return(status: :error, message: error_message)
end
it 'returns 400 with message' do
get :details, params: issue_params(issue_id: issue_id, format: :json)
expect(response).to have_gitlab_http_status(:bad_request)
expect(json_response['message']).to eq(error_message)
end
end
context 'with explicit http_status' do
let(:http_status) { :no_content }
before do
expect(issue_details_service).to receive(:execute).and_return(
status: :error,
message: error_message,
http_status: http_status
)
end
it 'returns http_status with message' do
get :details, params: issue_params(issue_id: issue_id, format: :json)
expect(response).to have_gitlab_http_status(http_status)
expect(json_response['message']).to eq(error_message)
end
end
end
end
end
2020-03-13 15:44:24 +05:30
describe 'PUT #update' do
2020-04-22 19:07:51 +05:30
let(:issue_id) { non_existing_record_id }
2020-03-13 15:44:24 +05:30
let(:issue_update_service) { spy(:issue_update_service) }
2019-12-26 22:10:19 +05:30
let(:permitted_params) do
ActionController::Parameters.new(
2020-03-13 15:44:24 +05:30
{ issue_id: issue_id.to_s, status: 'resolved' }
2019-12-26 22:10:19 +05:30
).permit!
end
2020-03-13 15:44:24 +05:30
subject(:update_issue) do
put :update, params: issue_params(issue_id: issue_id, status: 'resolved', format: :json)
2020-01-01 13:55:28 +05:30
end
2019-12-26 22:10:19 +05:30
before do
2020-03-13 15:44:24 +05:30
expect(ErrorTracking::IssueUpdateService)
2019-12-26 22:10:19 +05:30
.to receive(:new).with(project, user, permitted_params)
2020-03-13 15:44:24 +05:30
.and_return(issue_update_service)
2019-12-26 22:10:19 +05:30
end
describe 'format json' do
2020-03-13 15:44:24 +05:30
context 'update result is successful' do
2019-12-26 22:10:19 +05:30
before do
2020-03-13 15:44:24 +05:30
expect(issue_update_service).to receive(:execute)
2020-04-22 19:07:51 +05:30
.and_return(status: :success, updated: true, closed_issue_iid: non_existing_record_iid)
2020-01-01 13:55:28 +05:30
2020-03-13 15:44:24 +05:30
update_issue
2019-12-26 22:10:19 +05:30
end
2020-03-13 15:44:24 +05:30
it 'returns a success' do
2019-12-26 22:10:19 +05:30
expect(response).to have_gitlab_http_status(:ok)
2020-03-13 15:44:24 +05:30
expect(response).to match_response_schema('error_tracking/update_issue')
2019-12-26 22:10:19 +05:30
end
end
2020-03-13 15:44:24 +05:30
context 'update result is erroneous' do
2019-12-26 22:10:19 +05:30
let(:error_message) { 'error message' }
2020-03-13 15:44:24 +05:30
before do
expect(issue_update_service).to receive(:execute)
.and_return(status: :error, message: error_message)
2019-12-26 22:10:19 +05:30
2020-03-13 15:44:24 +05:30
update_issue
2019-12-26 22:10:19 +05:30
end
2020-03-13 15:44:24 +05:30
it 'returns 400 with message' do
expect(response).to have_gitlab_http_status(:bad_request)
expect(json_response['message']).to eq(error_message)
2019-12-26 22:10:19 +05:30
end
end
end
end
2019-02-15 15:39:39 +05:30
private
2019-12-26 22:10:19 +05:30
def issue_params(opts = {})
project_params.reverse_merge(opts)
end
2019-02-15 15:39:39 +05:30
def project_params(opts = {})
opts.reverse_merge(namespace_id: project.namespace, project_id: project)
end
end