debian-mirror-gitlab/spec/lib/gitlab/health_checks/simple_check_shared.rb

74 lines
2.6 KiB
Ruby
Raw Normal View History

2020-01-01 13:55:28 +05:30
# frozen_string_literal: true
2020-07-28 23:09:34 +05:30
RSpec.shared_context 'simple_check' do |metrics_prefix, check_name, success_result|
2017-08-17 22:00:37 +05:30
describe '#metrics' do
subject { described_class.metrics }
2019-12-21 20:55:43 +05:30
2017-08-17 22:00:37 +05:30
context 'Check is passing' do
before do
allow(described_class).to receive(:check).and_return success_result
end
it { is_expected.to include(have_attributes(name: "#{metrics_prefix}_success", value: 1)) }
it { is_expected.to include(have_attributes(name: "#{metrics_prefix}_timeout", value: 0)) }
2017-09-10 17:25:29 +05:30
it { is_expected.to include(have_attributes(name: "#{metrics_prefix}_latency_seconds", value: be >= 0)) }
2017-08-17 22:00:37 +05:30
end
context 'Check is misbehaving' do
before do
allow(described_class).to receive(:check).and_return 'error!'
end
it { is_expected.to include(have_attributes(name: "#{metrics_prefix}_success", value: 0)) }
it { is_expected.to include(have_attributes(name: "#{metrics_prefix}_timeout", value: 0)) }
2017-09-10 17:25:29 +05:30
it { is_expected.to include(have_attributes(name: "#{metrics_prefix}_latency_seconds", value: be >= 0)) }
2017-08-17 22:00:37 +05:30
end
context 'Check is timeouting' do
before do
allow(described_class).to receive(:check).and_return Timeout::Error.new
end
it { is_expected.to include(have_attributes(name: "#{metrics_prefix}_success", value: 0)) }
it { is_expected.to include(have_attributes(name: "#{metrics_prefix}_timeout", value: 1)) }
2017-09-10 17:25:29 +05:30
it { is_expected.to include(have_attributes(name: "#{metrics_prefix}_latency_seconds", value: be >= 0)) }
2017-08-17 22:00:37 +05:30
end
end
describe '#readiness' do
subject { described_class.readiness }
2019-12-21 20:55:43 +05:30
2017-08-17 22:00:37 +05:30
context 'Check returns ok' do
before do
allow(described_class).to receive(:check).and_return success_result
end
it { is_expected.to have_attributes(success: true) }
end
context 'Check is misbehaving' do
before do
allow(described_class).to receive(:check).and_return 'error!'
end
2017-09-10 17:25:29 +05:30
it { is_expected.to have_attributes(success: false, message: "unexpected #{described_class.human_name} check result: error!") }
2017-08-17 22:00:37 +05:30
end
context 'Check is timeouting' do
before do
allow(described_class).to receive(:check ).and_return Timeout::Error.new
end
2017-09-10 17:25:29 +05:30
it { is_expected.to have_attributes(success: false, message: "#{described_class.human_name} check timed out") }
2017-08-17 22:00:37 +05:30
end
2019-12-21 20:55:43 +05:30
context 'Check is raising an unhandled exception' do
before do
allow(described_class).to receive(:check ).and_raise "unexpected error"
end
it { is_expected.to have_attributes(success: false, message: "unexpected #{described_class.human_name} check result: unexpected error") }
end
2017-08-17 22:00:37 +05:30
end
end