2023-02-22 09:55:31 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-11-16 08:09:31 +09:00
|
|
|
unless ENV['DISABLE_SIMPLECOV'] == 'true'
|
|
|
|
require 'simplecov' # Configuration details loaded from .simplecov
|
2016-02-25 08:17:01 +09:00
|
|
|
end
|
|
|
|
|
|
|
|
RSpec.configure do |config|
|
2023-02-19 07:38:14 +09:00
|
|
|
config.example_status_persistence_file_path = 'tmp/rspec/examples.txt'
|
2016-02-25 08:17:01 +09:00
|
|
|
config.expect_with :rspec do |expectations|
|
|
|
|
expectations.include_chain_clauses_in_custom_matcher_descriptions = true
|
|
|
|
end
|
|
|
|
|
|
|
|
config.mock_with :rspec do |mocks|
|
|
|
|
mocks.verify_partial_doubles = true
|
2017-04-16 10:40:33 +09:00
|
|
|
|
|
|
|
config.around(:example, :without_verify_partial_doubles) do |example|
|
|
|
|
mocks.verify_partial_doubles = false
|
|
|
|
example.call
|
|
|
|
mocks.verify_partial_doubles = true
|
|
|
|
end
|
2016-02-25 08:17:01 +09:00
|
|
|
end
|
2016-09-06 00:46:36 +09:00
|
|
|
|
2018-02-10 07:04:47 +09:00
|
|
|
config.before :suite do
|
2019-07-19 08:44:42 +09:00
|
|
|
Rails.application.load_seed
|
2018-02-10 07:04:47 +09:00
|
|
|
Chewy.strategy(:bypass)
|
2024-02-22 22:28:19 +09:00
|
|
|
|
|
|
|
# NOTE: we switched registrations mode to closed by default, but the specs
|
|
|
|
# very heavily rely on having it enabled by default, as it relies on users
|
|
|
|
# being approved by default except in select cases where explicitly testing
|
|
|
|
# other registration modes
|
|
|
|
Setting.registrations_mode = 'open'
|
2018-02-10 07:04:47 +09:00
|
|
|
end
|
|
|
|
|
2017-01-29 20:25:10 +09:00
|
|
|
config.after :suite do
|
2023-05-04 12:50:40 +09:00
|
|
|
FileUtils.rm_rf(Dir[Rails.root.join('spec', 'test_files')])
|
2016-09-06 00:46:36 +09:00
|
|
|
end
|
2023-10-18 01:28:09 +09:00
|
|
|
|
|
|
|
# Use the GitHub Annotations formatter for CI
|
2023-10-18 17:18:34 +09:00
|
|
|
if ENV['GITHUB_ACTIONS'] == 'true' && ENV['GITHUB_RSPEC'] == 'true'
|
2023-10-18 01:28:09 +09:00
|
|
|
require 'rspec/github'
|
|
|
|
config.add_formatter RSpec::Github::Formatter
|
|
|
|
end
|
2016-09-06 00:46:36 +09:00
|
|
|
end
|
|
|
|
|
|
|
|
def body_as_json
|
|
|
|
json_str_to_hash(response.body)
|
|
|
|
end
|
|
|
|
|
|
|
|
def json_str_to_hash(str)
|
2016-09-22 05:07:18 +09:00
|
|
|
JSON.parse(str, symbolize_names: true)
|
2016-02-25 08:17:01 +09:00
|
|
|
end
|
2022-02-11 03:42:45 +09:00
|
|
|
|
2023-11-08 00:20:24 +09:00
|
|
|
def serialized_record_json(record, serializer, adapter: nil)
|
|
|
|
options = { serializer: serializer }
|
|
|
|
options[:adapter] = adapter if adapter.present?
|
|
|
|
JSON.parse(
|
|
|
|
ActiveModelSerializers::SerializableResource.new(
|
|
|
|
record,
|
|
|
|
options
|
|
|
|
).to_json
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2022-02-11 03:42:45 +09:00
|
|
|
def expect_push_bulk_to_match(klass, matcher)
|
2023-11-07 18:46:28 +09:00
|
|
|
allow(Sidekiq::Client).to receive(:push_bulk)
|
|
|
|
yield
|
|
|
|
expect(Sidekiq::Client).to have_received(:push_bulk).with(hash_including({
|
2023-02-19 07:38:14 +09:00
|
|
|
'class' => klass,
|
|
|
|
'args' => matcher,
|
2022-02-11 03:42:45 +09:00
|
|
|
}))
|
|
|
|
end
|