2016-07-21 04:44:18 -04:00
|
|
|
require './spec/simplecov_env'
|
|
|
|
SimpleCovEnv.start!
|
2013-01-05 06:30:42 -05:00
|
|
|
|
2012-09-10 03:52:43 -04:00
|
|
|
ENV['RAILS_ENV'] = 'test'
|
|
|
|
require './config/environment'
|
2013-12-06 10:40:39 -05:00
|
|
|
require 'rspec/expectations'
|
2013-01-09 01:14:05 -05:00
|
|
|
|
2016-06-08 05:43:13 -04:00
|
|
|
if ENV['CI']
|
|
|
|
require 'knapsack'
|
2016-07-13 05:03:06 -04:00
|
|
|
Knapsack::Adapters::SpinachAdapter.bind
|
2016-06-08 05:43:13 -04:00
|
|
|
end
|
2016-05-22 21:34:36 -04:00
|
|
|
|
2018-01-10 06:45:11 -05:00
|
|
|
WebMock.enable!
|
|
|
|
|
|
|
|
%w(select2_helper test_env repo_helpers wait_for_requests sidekiq project_forks_helper webmock).each do |f|
|
2012-09-10 04:51:02 -04:00
|
|
|
require Rails.root.join('spec', 'support', f)
|
|
|
|
end
|
|
|
|
|
2015-04-25 14:20:15 -04:00
|
|
|
Dir["#{Rails.root}/features/steps/shared/*.rb"].each { |file| require file }
|
2012-09-10 11:35:03 -04:00
|
|
|
|
2012-09-10 07:27:11 -04:00
|
|
|
Spinach.hooks.before_run do
|
2015-02-12 13:48:42 -05:00
|
|
|
include RSpec::Mocks::ExampleMethods
|
2018-02-14 12:14:40 -05:00
|
|
|
include ActiveJob::TestHelper
|
|
|
|
include FactoryBot::Syntax::Methods
|
|
|
|
include GitlabRoutingHelper
|
|
|
|
|
2015-02-13 11:48:31 -05:00
|
|
|
RSpec::Mocks.setup
|
2014-07-31 12:24:53 -04:00
|
|
|
TestEnv.init(mailer: false)
|
2012-09-10 07:27:11 -04:00
|
|
|
|
2015-08-14 09:08:31 -04:00
|
|
|
# skip pre-receive hook check so we can use
|
|
|
|
# web editor and merge
|
|
|
|
TestEnv.disable_pre_receive
|
2012-09-10 07:27:11 -04:00
|
|
|
end
|
2017-03-29 17:07:51 -04:00
|
|
|
|
2017-05-12 18:10:12 -04:00
|
|
|
Spinach.hooks.after_scenario do |scenario_data, step_definitions|
|
|
|
|
if scenario_data.tags.include?('javascript')
|
2017-04-26 06:40:52 -04:00
|
|
|
include WaitForRequests
|
2017-05-17 14:25:13 -04:00
|
|
|
block_and_wait_for_requests_complete
|
2017-04-26 06:40:52 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-03-29 17:07:51 -04:00
|
|
|
module StdoutReporterWithScenarioLocation
|
|
|
|
# Override the standard reporter to show filename and line number next to each
|
|
|
|
# scenario for easy, focused re-runs
|
|
|
|
def before_scenario_run(scenario, step_definitions = nil)
|
2017-11-22 02:50:36 -05:00
|
|
|
@max_step_name_length = scenario.steps.map(&:name).map(&:length).max if scenario.steps.any? # rubocop:disable Gitlab/ModuleWithInstanceVariables
|
2017-03-29 17:07:51 -04:00
|
|
|
name = scenario.name
|
|
|
|
|
|
|
|
# This number has no significance, it's just to line things up
|
2017-11-22 02:50:36 -05:00
|
|
|
max_length = @max_step_name_length + 19 # rubocop:disable Gitlab/ModuleWithInstanceVariables
|
2017-03-29 17:07:51 -04:00
|
|
|
out.puts "\n #{'Scenario:'.green} #{name.light_green.ljust(max_length)}" \
|
|
|
|
" # #{scenario.feature.filename}:#{scenario.line}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
Spinach::Reporter::Stdout.prepend(StdoutReporterWithScenarioLocation)
|