mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-07-23 00:45:28 +00:00
26 lines
501 B
Ruby
26 lines
501 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :web_hook_log do
|
|
web_hook factory: :project_hook
|
|
trigger { 'push_hooks' }
|
|
url { generate(:url) }
|
|
request_headers do
|
|
{
|
|
'Idempotency-Key' => idempotency_key
|
|
}
|
|
end
|
|
request_data do
|
|
{}
|
|
end
|
|
response_body { '' }
|
|
response_status { '200' }
|
|
execution_duration { 2.0 }
|
|
internal_error_message { nil }
|
|
|
|
transient do
|
|
idempotency_key { SecureRandom.uuid }
|
|
end
|
|
end
|
|
end
|