gitlab-ce/spec/services/web_hooks/log_execution_service_spec.rb

172 lines
5.7 KiB
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe WebHooks::LogExecutionService, feature_category: :webhooks do
include ExclusiveLeaseHelpers
using RSpec::Parameterized::TableSyntax
describe '#execute', :freeze_time do
let_it_be_with_reload(:project_hook) { create(:project_hook) }
let(:idempotency_key) { SecureRandom.uuid }
let(:response_category) { :ok }
let(:request_headers) { { 'Header' => 'header value', 'Idempotency-Key' => idempotency_key } }
let(:data) do
{
trigger: 'trigger_name',
url: 'https://example.com',
request_headers: request_headers,
request_data: { 'Request Data' => 'request data value' },
response_body: 'Response body',
response_status: '200',
execution_duration: 1.2,
internal_error_message: 'error message'
}
end
subject(:service) { described_class.new(hook: project_hook, log_data: data, response_category: response_category) }
it 'logs the data' do
expect { service.execute }.to change { ::WebHookLog.count }.by(1)
expect(WebHookLog.recent.first).to have_attributes(data)
end
context 'when data contains unsafe YAML properties' do
before do
data[:request_data] = { data: described_class }
end
it 'casts to safe properties and logs the data' do
expect { service.execute }.to change { ::WebHookLog.count }.by(1)
expect(WebHookLog.recent.first).to have_attributes('request_data' => { 'data' => described_class.to_s })
end
end
it 'updates the last failure' do
# Avoid pruning AR caches in `update_hook_failure_state` so the following expectation works.
allow(project_hook).to receive(:reset)
expect(project_hook.parent).to receive(:update_last_webhook_failure).with(project_hook)
service.execute
end
context 'obtaining an exclusive lease' do
let(:lease_key) { "web_hooks:update_hook_failure_state:#{project_hook.id}" }
let(:response_category) { :error }
it 'updates failure state using a lease that ensures fresh state is written' do
lease = stub_exclusive_lease(lease_key, timeout: described_class::LOCK_TTL)
expect(lease).to receive(:try_obtain)
expect(lease).to receive(:cancel)
expect { service.execute }.to change { WebHook.find(project_hook.id).recent_failures }.to(1)
end
context 'when the hook does not have auto-disabling enabled' do
before do
allow(project_hook).to receive(:auto_disabling_enabled?).and_return(false)
end
it 'does not try to obtain a lease or update failure state' do
lease = stub_exclusive_lease(lease_key, timeout: described_class::LOCK_TTL)
expect(lease).not_to receive(:try_obtain)
expect { service.execute }.not_to change { WebHook.find(project_hook.id).recent_failures }.from(0)
end
end
context 'when a lease cannot be obtained' do
before do
stub_exclusive_lease_taken(lease_key)
end
it 'creates the WebHookLog and skips hook state update' do
expect(project_hook).not_to receive(:backoff!)
expect(project_hook).not_to receive(:parent)
expect { service.execute }.to change { ::WebHookLog.count }.by(1)
end
end
end
context 'when response_category is :ok' do
it 'does not increment the failure count' do
expect { service.execute }.not_to change { project_hook.recent_failures }
end
it 'does not change the disabled_until attribute' do
expect { service.execute }.not_to change { project_hook.disabled_until }
end
context 'when the hook had previously failed' do
before do
project_hook.update!(recent_failures: 2)
end
it 'resets the failure count' do
expect { service.execute }.to change { project_hook.recent_failures }.to(0)
end
end
end
context 'when response_category is :error' do
let(:response_category) { :error }
before do
data[:response_status] = '500'
end
it 'backs off' do
expect(project_hook).to receive(:backoff!)
service.execute
end
end
context 'when an unexpected error occurs while updating hook status' do
let(:standard_error) { StandardError.new('Unexpected error') }
before do
allow(project_hook).to receive(:enable!).and_raise(standard_error)
end
it 'creates the WebHookLog and tracks the exception without raising an error' do
expect(Gitlab::ErrorTracking).to receive(:track_exception).with(standard_error, hook_id: project_hook.id)
expect { service.execute }.to change { ::WebHookLog.count }.by(1)
end
end
context 'with url_variables' do
before do
project_hook.update!(
url: 'http://example1.test/{foo}-{bar}',
url_variables: { 'foo' => 'supers3cret', 'bar' => 'token' }
)
end
let(:data) { super().merge(response_headers: { 'X-Token-Id' => 'supers3cret-token', 'X-Request' => 'PUBLIC-token' }) }
let(:expected_headers) { { 'X-Token-Id' => '{foo}-{bar}', 'X-Request' => 'PUBLIC-{bar}' } }
it 'logs the data and masks response headers' do
expect { service.execute }.to change { ::WebHookLog.count }.by(1)
expect(WebHookLog.recent.first.response_headers).to eq(expected_headers)
end
end
context 'with X-Gitlab-Token' do
let(:request_headers) { { 'X-Gitlab-Token' => 'secret_token' } }
it 'redacts the token' do
service.execute
expect(WebHookLog.recent.first.request_headers).to include('X-Gitlab-Token' => '[REDACTED]')
end
end
end
end