I have a health endpoint that will check if the database connection is working:
class HealthController < ApplicationController
def health
User.any? # Force a DB connection to see if the database is healthy
head :ok
rescue StandardError
service_unavailable # Defined in ApplicationController
end
end
And I want to test the 503 status when there is a database connection failure, but I'm not sure how to mock the database failing within RSpec:
require 'swagger_helper'
RSpec.describe 'Health' do
path '/health' do
get 'Returns API health status' do
security []
response '200', 'API is healthy' do
run_test!
end
response '503', 'API is currently unavailable' do
# Test setup to mock database failure goes here
run_test!
end
end
end
end