2019-07-25 01:24:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-05-10 19:19:16 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-03 14:08:28 -04:00
|
|
|
RSpec.describe "Admin Health Check", :feature do
|
2017-01-21 19:11:19 -05:00
|
|
|
include StubENV
|
2020-02-26 13:09:24 -05:00
|
|
|
let_it_be(:admin) { create(:admin) }
|
2016-05-10 19:19:16 -04:00
|
|
|
|
|
|
|
before do
|
2017-01-21 19:11:19 -05:00
|
|
|
stub_env('IN_MEMORY_APPLICATION_SETTINGS', 'false')
|
2018-10-09 01:59:42 -04:00
|
|
|
sign_in(admin)
|
2016-05-10 19:19:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe '#show' do
|
|
|
|
before do
|
|
|
|
visit admin_health_check_path
|
|
|
|
end
|
|
|
|
|
2017-01-21 17:55:35 -05:00
|
|
|
it 'has a health check access token' do
|
2017-01-21 19:11:19 -05:00
|
|
|
page.has_text? 'Health Check'
|
|
|
|
page.has_text? 'Health information can be retrieved'
|
|
|
|
|
2018-02-02 13:39:55 -05:00
|
|
|
token = Gitlab::CurrentSettings.health_check_access_token
|
2017-01-21 19:11:19 -05:00
|
|
|
|
2016-05-10 19:19:16 -04:00
|
|
|
expect(page).to have_content("Access token is #{token}")
|
|
|
|
expect(page).to have_selector('#health-check-token', text: token)
|
|
|
|
end
|
|
|
|
|
2017-04-04 14:28:43 -04:00
|
|
|
describe 'reload access token' do
|
2016-05-10 19:19:16 -04:00
|
|
|
it 'changes the access token' do
|
2018-02-02 13:39:55 -05:00
|
|
|
orig_token = Gitlab::CurrentSettings.health_check_access_token
|
2016-05-10 19:19:16 -04:00
|
|
|
click_button 'Reset health check access token'
|
2017-04-04 14:28:43 -04:00
|
|
|
|
|
|
|
expect(page).to have_content('New health check access token has been generated!')
|
2016-05-10 19:19:16 -04:00
|
|
|
expect(find('#health-check-token').text).not_to eq orig_token
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when services are up' do
|
|
|
|
before do
|
2017-11-13 10:52:07 -05:00
|
|
|
stub_storage_settings({}) # Hide the broken storage
|
2016-05-10 19:19:16 -04:00
|
|
|
visit admin_health_check_path
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'shows healthy status' do
|
|
|
|
expect(page).to have_content('Current Status: Healthy')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when a service is down' do
|
|
|
|
before do
|
|
|
|
allow(HealthCheck::Utils).to receive(:process_checks).and_return('The server is on fire')
|
|
|
|
visit admin_health_check_path
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'shows unhealthy status' do
|
|
|
|
expect(page).to have_content('Current Status: Unhealthy')
|
|
|
|
expect(page).to have_content('The server is on fire')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|