mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-03 16:04:30 +00:00
74 lines
2.5 KiB
Ruby
74 lines
2.5 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.configure do |config|
|
|
def gitlab_sidekiq_inline
|
|
# We need to cleanup the queues before running jobs in specs because the
|
|
# middleware might have written to redis
|
|
redis_queues_cleanup!
|
|
redis_queues_metadata_cleanup!
|
|
|
|
# Scoped inline! is thread-safe which breaks capybara specs
|
|
# see https://github.com/sidekiq/sidekiq/issues/6069
|
|
Sidekiq::Testing.inline!
|
|
|
|
# Set a thread-local sidekiq capsule as it may be accessed in the
|
|
# Gitlab::SidekiqMiddleware::ConcurrencyLimit::WorkerExecutionTracker
|
|
Thread.current[:sidekiq_capsule] = Sidekiq::Capsule.new('test', Sidekiq.default_configuration)
|
|
|
|
yield
|
|
ensure
|
|
Thread.current[:sidekiq_capsule] = nil
|
|
Sidekiq::Testing.fake! # fake is the default so we reset it to that
|
|
redis_queues_cleanup!
|
|
redis_queues_metadata_cleanup!
|
|
end
|
|
|
|
def with_sidekiq_context
|
|
allow(Sidekiq).to receive(:server?).and_return(true)
|
|
end
|
|
|
|
# As we'll review the examples with this tag, we should either:
|
|
# - fix the example to not require Sidekiq inline mode (and remove this tag)
|
|
# - explicitly keep the inline mode and change the tag for `:sidekiq_inline` instead
|
|
config.around(:example, :sidekiq_might_not_need_inline) do |example|
|
|
gitlab_sidekiq_inline { example.run }
|
|
end
|
|
|
|
config.around(:example, :sidekiq_inline) do |example|
|
|
gitlab_sidekiq_inline { example.run }
|
|
end
|
|
|
|
config.before(:example, :sidekiq_inline) do
|
|
with_sidekiq_context
|
|
end
|
|
|
|
config.before(:example, :sidekiq_might_not_need_inline) do
|
|
with_sidekiq_context
|
|
end
|
|
|
|
config.before(:example, :with_sidekiq_context) do
|
|
with_sidekiq_context
|
|
end
|
|
|
|
# Some specs need to run mailers through Sidekiq explicitly, rather
|
|
# than the ActiveJob test adapter. There is a Rails bug that means we
|
|
# have to do some extra steps to make this happen:
|
|
# https://github.com/rails/rails/issues/37270
|
|
#
|
|
# In particular, we can't use an `around` hook because then the 'before' part
|
|
# of that will run before the `before_setup` hook in ActiveJob::TestHelper,
|
|
# which doesn't do what we want.
|
|
#
|
|
config.before(:example, :sidekiq_mailers) do
|
|
queue_adapter_changed_jobs.each { |k| k.queue_adapter = :sidekiq }
|
|
queue_adapter_changed_jobs.each(&:disable_test_adapter)
|
|
end
|
|
|
|
config.after(:example, :sidekiq_mailers) do
|
|
queue_adapter_changed_jobs.each do |klass|
|
|
klass.queue_adapter = :test
|
|
klass.enable_test_adapter(ActiveJob::QueueAdapters::TestAdapter.new)
|
|
end
|
|
end
|
|
end
|