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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

53 lines
1.6 KiB
Ruby
Raw Normal View History

2022-03-02 08:16:31 +05:30
# frozen_string_literal: true
require 'fast_spec_helper'
2022-07-16 23:28:13 +05:30
RSpec.describe Gitlab::HealthChecks::Middleware do
let(:app) { instance_double(Proc) }
2022-03-02 08:16:31 +05:30
let(:env) { { 'PATH_INFO' => path } }
2022-07-16 23:28:13 +05:30
let(:readiness_probe) { instance_double(Gitlab::HealthChecks::Probes::Collection) }
let(:liveness_probe) { instance_double(Gitlab::HealthChecks::Probes::Collection) }
2022-03-02 08:16:31 +05:30
let(:probe_result) { Gitlab::HealthChecks::Probes::Status.new(200, { status: 'ok' }) }
subject(:middleware) { described_class.new(app, readiness_probe, liveness_probe) }
describe '#call' do
context 'handling /readiness requests' do
let(:path) { '/readiness' }
it 'handles the request' do
expect(readiness_probe).to receive(:execute).and_return(probe_result)
response = middleware.call(env)
expect(response).to eq([200, { 'Content-Type' => 'application/json; charset=utf-8' }, ['{"status":"ok"}']])
end
end
context 'handling /liveness requests' do
let(:path) { '/liveness' }
it 'handles the request' do
expect(liveness_probe).to receive(:execute).and_return(probe_result)
response = middleware.call(env)
expect(response).to eq([200, { 'Content-Type' => 'application/json; charset=utf-8' }, ['{"status":"ok"}']])
end
end
context 'handling other requests' do
let(:path) { '/other_path' }
it 'forwards them to the next middleware' do
expect(app).to receive(:call).with(env).and_return([201, {}, []])
response = middleware.call(env)
expect(response).to eq([201, {}, []])
end
end
end
end