2023-02-22 11:55:31 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-25 10:17:01 +11:00
|
|
|
RSpec.configure do |config|
|
2023-02-19 09:38:14 +11:00
|
|
|
config.example_status_persistence_file_path = 'tmp/rspec/examples.txt'
|
2016-02-25 10:17:01 +11:00
|
|
|
config.expect_with :rspec do |expectations|
|
|
|
|
expectations.include_chain_clauses_in_custom_matcher_descriptions = true
|
|
|
|
end
|
|
|
|
|
2024-09-04 15:12:25 +10:00
|
|
|
config.disable_monkey_patching!
|
|
|
|
|
2016-02-25 10:17:01 +11:00
|
|
|
config.mock_with :rspec do |mocks|
|
|
|
|
mocks.verify_partial_doubles = true
|
|
|
|
end
|
2016-09-06 01:46:36 +10:00
|
|
|
|
2018-02-10 09:04:47 +11:00
|
|
|
config.before :suite do
|
2019-07-19 09:44:42 +10:00
|
|
|
Rails.application.load_seed
|
2018-02-10 09:04:47 +11:00
|
|
|
Chewy.strategy(:bypass)
|
2024-02-23 00:28:19 +11: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 09:04:47 +11:00
|
|
|
end
|
|
|
|
|
2017-01-29 22:25:10 +11:00
|
|
|
config.after :suite do
|
2024-08-26 17:35:07 +10:00
|
|
|
FileUtils.rm_rf(Rails.root.glob('spec/test_files'))
|
2016-09-06 01:46:36 +10:00
|
|
|
end
|
2023-10-18 03:28:09 +11:00
|
|
|
|
|
|
|
# Use the GitHub Annotations formatter for CI
|
2023-10-18 19:18:34 +11:00
|
|
|
if ENV['GITHUB_ACTIONS'] == 'true' && ENV['GITHUB_RSPEC'] == 'true'
|
2023-10-18 03:28:09 +11:00
|
|
|
require 'rspec/github'
|
|
|
|
config.add_formatter RSpec::Github::Formatter
|
|
|
|
end
|
2016-09-06 01:46:36 +10:00
|
|
|
end
|
|
|
|
|
2023-11-08 02:20:24 +11: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 05:42:45 +11:00
|
|
|
def expect_push_bulk_to_match(klass, matcher)
|
2023-11-07 20:46:28 +11:00
|
|
|
allow(Sidekiq::Client).to receive(:push_bulk)
|
|
|
|
yield
|
|
|
|
expect(Sidekiq::Client).to have_received(:push_bulk).with(hash_including({
|
2023-02-19 09:38:14 +11:00
|
|
|
'class' => klass,
|
|
|
|
'args' => matcher,
|
2022-02-11 05:42:45 +11:00
|
|
|
}))
|
|
|
|
end
|