2019-04-11 08:02:24 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-02-20 06:45:04 -05:00
|
|
|
require_relative '../qa'
|
2019-02-19 07:12:07 -05:00
|
|
|
require 'rspec/retry'
|
2017-02-20 06:45:04 -05:00
|
|
|
|
2019-06-03 06:37:43 -04:00
|
|
|
if ENV['CI'] && QA::Runtime::Env.knapsack? && !ENV['NO_KNAPSACK']
|
|
|
|
require 'knapsack'
|
|
|
|
Knapsack::Adapters::RSpecAdapter.bind
|
|
|
|
end
|
|
|
|
|
2019-07-09 11:40:46 -04:00
|
|
|
QA::Runtime::Browser.configure!
|
|
|
|
|
|
|
|
QA::Runtime::Scenario.from_env(QA::Runtime::Env.runtime_scenario_attributes) if QA::Runtime::Env.runtime_scenario_attributes
|
|
|
|
|
2019-02-11 04:04:59 -05:00
|
|
|
%w[helpers shared_examples].each do |d|
|
|
|
|
Dir[::File.join(__dir__, d, '**', '*.rb')].each { |f| require f }
|
|
|
|
end
|
2018-01-23 05:23:23 -05:00
|
|
|
|
2017-02-20 06:45:04 -05:00
|
|
|
RSpec.configure do |config|
|
2019-03-11 07:50:09 -04:00
|
|
|
QA::Specs::Helpers::Quarantine.configure_rspec
|
2018-12-28 07:15:32 -05:00
|
|
|
|
2019-02-13 23:35:20 -05:00
|
|
|
config.before do |example|
|
|
|
|
QA::Runtime::Logger.debug("Starting test: #{example.full_description}") if QA::Runtime::Env.debug?
|
2018-10-02 14:31:39 -04:00
|
|
|
end
|
|
|
|
|
2017-02-20 06:45:04 -05: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
|
|
|
|
end
|
|
|
|
|
|
|
|
config.shared_context_metadata_behavior = :apply_to_host_groups
|
|
|
|
config.disable_monkey_patching!
|
|
|
|
config.expose_dsl_globally = true
|
|
|
|
config.profile_examples = 10
|
|
|
|
config.order = :random
|
|
|
|
Kernel.srand config.seed
|
2019-02-19 07:12:07 -05:00
|
|
|
|
|
|
|
# show retry status in spec process
|
|
|
|
config.verbose_retry = true
|
|
|
|
|
|
|
|
# show exception that triggers a retry if verbose_retry is set to true
|
|
|
|
config.display_try_failure_messages = true
|
|
|
|
|
2019-05-06 22:49:39 -04:00
|
|
|
if ENV['CI']
|
|
|
|
config.around do |example|
|
|
|
|
retry_times = example.metadata.keys.include?(:quarantine) ? 1 : 2
|
|
|
|
example.run_with_retry retry: retry_times
|
|
|
|
end
|
2019-02-19 07:12:07 -05:00
|
|
|
end
|
2017-02-20 06:45:04 -05:00
|
|
|
end
|