2019-04-15 06:17:05 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-05-10 19:19:16 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe HealthCheckController do
|
2017-01-21 19:11:19 -05:00
|
|
|
include StubENV
|
|
|
|
|
2016-05-10 19:19:16 -04:00
|
|
|
let(:xml_response) { Hash.from_xml(response.body)['hash'] }
|
2018-02-02 13:39:55 -05:00
|
|
|
let(:token) { Gitlab::CurrentSettings.health_check_access_token }
|
2017-07-03 11:09:34 -04:00
|
|
|
let(:whitelisted_ip) { '127.0.0.1' }
|
|
|
|
let(:not_whitelisted_ip) { '127.0.0.2' }
|
2016-05-10 19:19:16 -04:00
|
|
|
|
2017-01-21 19:11:19 -05:00
|
|
|
before do
|
2017-07-04 18:12:21 -04:00
|
|
|
allow(Settings.monitoring).to receive(:ip_whitelist).and_return([whitelisted_ip])
|
2017-01-21 19:11:19 -05:00
|
|
|
stub_env('IN_MEMORY_APPLICATION_SETTINGS', 'false')
|
|
|
|
end
|
|
|
|
|
2016-05-10 19:19:16 -04:00
|
|
|
describe 'GET #index' do
|
2017-07-03 11:09:34 -04:00
|
|
|
context 'when services are up but accessed from outside whitelisted ips' do
|
|
|
|
before do
|
|
|
|
allow(Gitlab::RequestContext).to receive(:client_ip).and_return(not_whitelisted_ip)
|
|
|
|
end
|
|
|
|
|
2016-05-10 19:19:16 -04:00
|
|
|
it 'returns a not found page' do
|
|
|
|
get :index
|
2017-07-04 18:12:21 -04:00
|
|
|
|
2016-05-10 19:19:16 -04:00
|
|
|
expect(response).to be_not_found
|
|
|
|
end
|
2017-07-03 16:41:33 -04:00
|
|
|
|
|
|
|
context 'when services are accessed with token' do
|
|
|
|
it 'supports passing the token in the header' do
|
|
|
|
request.headers['TOKEN'] = token
|
2017-07-04 18:12:21 -04:00
|
|
|
|
2017-07-03 16:41:33 -04:00
|
|
|
get :index
|
2017-07-04 18:12:21 -04:00
|
|
|
|
2019-08-19 05:55:20 -04:00
|
|
|
expect(response).to be_successful
|
2017-07-03 16:41:33 -04:00
|
|
|
expect(response.content_type).to eq 'text/plain'
|
|
|
|
end
|
|
|
|
|
2017-07-10 11:00:43 -04:00
|
|
|
it 'supports passing the token in query params' do
|
2018-12-17 17:52:17 -05:00
|
|
|
get :index, params: { token: token }
|
2017-07-04 18:12:21 -04:00
|
|
|
|
2019-08-19 05:55:20 -04:00
|
|
|
expect(response).to be_successful
|
2017-07-03 16:41:33 -04:00
|
|
|
expect(response.content_type).to eq 'text/plain'
|
|
|
|
end
|
|
|
|
end
|
2016-05-10 19:19:16 -04:00
|
|
|
end
|
|
|
|
|
2017-07-03 11:09:34 -04:00
|
|
|
context 'when services are up and accessed from whitelisted ips' do
|
|
|
|
before do
|
|
|
|
allow(Gitlab::RequestContext).to receive(:client_ip).and_return(whitelisted_ip)
|
2016-05-11 20:27:08 -04:00
|
|
|
end
|
|
|
|
|
2017-07-10 11:00:43 -04:00
|
|
|
it 'supports successful plaintext response' do
|
2017-07-03 11:09:34 -04:00
|
|
|
get :index
|
2017-07-04 18:12:21 -04:00
|
|
|
|
2019-08-19 05:55:20 -04:00
|
|
|
expect(response).to be_successful
|
2016-05-10 19:19:16 -04:00
|
|
|
expect(response.content_type).to eq 'text/plain'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'supports successful json response' do
|
2017-07-03 11:09:34 -04:00
|
|
|
get :index, format: :json
|
2017-07-04 18:12:21 -04:00
|
|
|
|
2019-08-19 05:55:20 -04:00
|
|
|
expect(response).to be_successful
|
2016-05-10 19:19:16 -04:00
|
|
|
expect(response.content_type).to eq 'application/json'
|
|
|
|
expect(json_response['healthy']).to be true
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'supports successful xml response' do
|
2017-07-03 11:09:34 -04:00
|
|
|
get :index, format: :xml
|
2017-07-04 18:12:21 -04:00
|
|
|
|
2019-08-19 05:55:20 -04:00
|
|
|
expect(response).to be_successful
|
2016-05-10 19:19:16 -04:00
|
|
|
expect(response.content_type).to eq 'application/xml'
|
|
|
|
expect(xml_response['healthy']).to be true
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'supports successful responses for specific checks' do
|
2018-12-17 17:52:17 -05:00
|
|
|
get :index, params: { checks: 'email' }, format: :json
|
2017-07-04 18:12:21 -04:00
|
|
|
|
2019-08-19 05:55:20 -04:00
|
|
|
expect(response).to be_successful
|
2016-05-10 19:19:16 -04:00
|
|
|
expect(response.content_type).to eq 'application/json'
|
|
|
|
expect(json_response['healthy']).to be true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when a service is down but NO access token' do
|
|
|
|
it 'returns a not found page' do
|
|
|
|
get :index
|
2017-07-04 18:12:21 -04:00
|
|
|
|
2016-05-10 19:19:16 -04:00
|
|
|
expect(response).to be_not_found
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-07-03 11:09:34 -04:00
|
|
|
context 'when a service is down and an endpoint is accessed from whitelisted ip' do
|
2016-05-10 19:19:16 -04:00
|
|
|
before do
|
2017-03-03 13:44:08 -05:00
|
|
|
allow(HealthCheck::Utils).to receive(:process_checks).with(['standard']).and_return('The server is on fire')
|
|
|
|
allow(HealthCheck::Utils).to receive(:process_checks).with(['email']).and_return('Email is on fire')
|
2017-07-03 11:09:34 -04:00
|
|
|
allow(Gitlab::RequestContext).to receive(:client_ip).and_return(whitelisted_ip)
|
2016-05-11 20:27:08 -04:00
|
|
|
end
|
|
|
|
|
2017-07-10 11:00:43 -04:00
|
|
|
it 'supports failure plaintext response' do
|
2017-07-03 11:09:34 -04:00
|
|
|
get :index
|
2017-07-04 18:12:21 -04:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(500)
|
2016-05-10 19:19:16 -04:00
|
|
|
expect(response.content_type).to eq 'text/plain'
|
|
|
|
expect(response.body).to include('The server is on fire')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'supports failure json response' do
|
2017-07-03 11:09:34 -04:00
|
|
|
get :index, format: :json
|
2017-07-04 18:12:21 -04:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(500)
|
2016-05-10 19:19:16 -04:00
|
|
|
expect(response.content_type).to eq 'application/json'
|
|
|
|
expect(json_response['healthy']).to be false
|
|
|
|
expect(json_response['message']).to include('The server is on fire')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'supports failure xml response' do
|
2017-07-03 11:09:34 -04:00
|
|
|
get :index, format: :xml
|
2017-07-04 18:12:21 -04:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(500)
|
2016-05-10 19:19:16 -04:00
|
|
|
expect(response.content_type).to eq 'application/xml'
|
|
|
|
expect(xml_response['healthy']).to be false
|
|
|
|
expect(xml_response['message']).to include('The server is on fire')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'supports failure responses for specific checks' do
|
2018-12-17 17:52:17 -05:00
|
|
|
get :index, params: { checks: 'email' }, format: :json
|
2017-07-04 18:12:21 -04:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(500)
|
2016-05-10 19:19:16 -04:00
|
|
|
expect(response.content_type).to eq 'application/json'
|
|
|
|
expect(json_response['healthy']).to be false
|
|
|
|
expect(json_response['message']).to include('Email is on fire')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|