debian-mirror-gitlab/spec/support/sidekiq.rb

57 lines
1.6 KiB
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2019-12-26 22:10:19 +05:30
require 'sidekiq/testing'
2017-08-17 22:00:37 +05:30
2018-11-20 20:47:30 +05:30
# If Sidekiq::Testing.inline! is used, SQL transactions done inside
# Sidekiq worker are included in the SQL query limit (in a real
# deployment sidekiq worker is executed separately). To avoid
# increasing SQL limit counter, the request is marked as whitelisted
# during Sidekiq block
class DisableQueryLimit
def call(worker_instance, msg, queue)
transaction = Gitlab::QueryLimiting::Transaction.current
if !transaction.respond_to?(:whitelisted) || transaction.whitelisted
yield
else
transaction.whitelisted = true
yield
transaction.whitelisted = false
end
end
end
2017-08-17 22:00:37 +05:30
Sidekiq::Testing.server_middleware do |chain|
chain.add Gitlab::SidekiqStatus::ServerMiddleware
2018-11-20 20:47:30 +05:30
chain.add DisableQueryLimit
2017-08-17 22:00:37 +05:30
end
2017-09-10 17:25:29 +05:30
RSpec.configure do |config|
2019-12-26 22:10:19 +05:30
config.around(:each, :sidekiq) do |example|
Sidekiq::Worker.clear_all
example.run
2017-09-10 17:25:29 +05:30
Sidekiq::Worker.clear_all
end
config.after(:each, :sidekiq, :redis) do
2019-09-30 21:07:59 +05:30
Sidekiq.redis do |connection|
connection.redis.flushdb
end
2017-09-10 17:25:29 +05:30
end
2019-12-26 22:10:19 +05:30
# 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|
Sidekiq::Worker.clear_all
Sidekiq::Testing.inline! { example.run }
Sidekiq::Worker.clear_all
end
config.around(:example, :sidekiq_inline) do |example|
Sidekiq::Worker.clear_all
Sidekiq::Testing.inline! { example.run }
Sidekiq::Worker.clear_all
end
2017-09-10 17:25:29 +05:30
end