-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathenv.rb
More file actions
176 lines (150 loc) · 5.89 KB
/
Copy pathenv.rb
File metadata and controls
176 lines (150 loc) · 5.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
# IMPORTANT: This file is generated by cucumber-rails - edit at your own peril.
# It is recommended to regenerate this file in the future when you upgrade to a
# newer version of cucumber-rails. Consider adding your own code to a new file
# instead of editing this one. Cucumber will automatically load all features/**/*.rb
# files.
# frozen_string_literal: true
module Warning
class << self
alias __orig_warn warn
def warn(msg)
return if msg.include?('mustache/generator.rb') &&
msg.include?('literal string will be frozen in the future')
__orig_warn(msg)
end
end
end
require 'simplecov'
# require 'phantomjs'
SimpleCov.start 'rails'
module SimpleCov
module Formatter
class QualityFormatter
def format(result)
SimpleCov::Formatter::HTMLFormatter.new.format(result)
File.open('coverage/covered_percent', 'w') do |f|
f.puts result.source_files.covered_percent.to_f
end
end
end
end
end
if ENV['CI'] == 'true'
require 'simplecov-cobertura'
SimpleCov.formatter = SimpleCov::Formatter::CoberturaFormatter
else
SimpleCov.formatter = SimpleCov::Formatter::QualityFormatter
end
ENV['IGNORE_ROLES'] ||= 'false'
ENV['CUCUMBER'] = 'true'
require 'cucumber/rails'
require 'capybara/cucumber'
require 'capybara/poltergeist'
require 'capybara/accessible'
require 'axe-cucumber-steps'
# Capybara.register_driver :poltergeist do |app|
# Capybara::Poltergeist::Driver.new(app, phantomjs: Phantomjs.path)
# end
def default_drivers
if ENV['IN_BROWSER']
# On demand: non-headless tests via Selenium/WebDriver
# To run the scenarios in browser (default: Firefox), use the following command line:
# IN_BROWSER=true bundle exec cucumber
# or (to have a pause of 1 second between each step):
# IN_BROWSER=true PAUSE=1 bundle exec cucumber
Capybara.default_driver = :selenium_chrome
elsif ENV['CI'] == 'true'
Capybara.register_driver :headless_chrome do |app|
options = Selenium::WebDriver::Chrome::Options.new
options.add_argument '--headless=new'
options.add_argument '--no-sandbox'
options.add_argument '--disable-dev-shm-usage'
Capybara::Selenium::Driver.new app, browser: :chrome, options:
end
Capybara.default_driver = :headless_chrome
Capybara.javascript_driver = :headless_chrome
else
Capybara.default_driver = :selenium_headless
Capybara.javascript_driver = :selenium_headless
end
end
Mongoid.logger.level = Logger::INFO
Mongo::Logger.logger.level = Logger::INFO
default_drivers
Capybara.server = :puma, { Silent: true }
Capybara.default_max_wait_time = 15
# Capybara.ignore_hidden_elements = false
# Capybara defaults to CSS3 selectors rather than XPath.
# If you'd prefer to use XPath, just uncomment this line and adjust any
# selectors in your step definitions to use the XPath syntax.
# Capybara.default_selector = :xpath
# By default, any exception happening in your Rails application will bubble up
# to Cucumber so that your scenario will fail. This is a different from how
# your application behaves in the production environment, where an error page will
# be rendered instead.
#
# Sometimes we want to override this default behaviour and allow Rails to rescue
# exceptions and display an error page (just like when the app is running in production).
# Typical scenarios where you want to do this is when you test your error pages.
# There are two ways to allow Rails to rescue exceptions:
#
# 1) Tag your scenario (or feature) with @allow-rescue
#
# 2) Set the value below to true. Beware that doing this globally is not
# recommended as it will mask a lot of errors for you!
#
ActionController::Base.allow_rescue = false
# Remove/comment out the lines below if your app doesn't have a database.
# For some databases (like MongoDB and CouchDB) you may need to use :truncation instead.
begin
DatabaseCleaner[:mongoid].strategy = :deletion
rescue NameError
raise 'You need to add database_cleaner to your Gemfile (in the :test group) if you wish to use it.'
end
# You may also want to configure DatabaseCleaner to use different strategies for certain features and scenarios.
# See the DatabaseCleaner documentation for details. Example:
#
# Before('@no-txn,@selenium,@culerity,@celerity,@javascript') do
# # { except: [:widgets] } may not do what you expect here
# # as Cucumber::Rails::Database.javascript_strategy overrides
# # this setting.
# DatabaseCleaner.strategy = :truncation
# end
#
# Before('not @no-txn', 'not @selenium', 'not @culerity', 'not @celerity', 'not @javascript') do
# DatabaseCleaner.strategy = :transaction
# end
#
# Possible values are :truncation and :transaction
# The :transaction strategy is faster, but might give you threading problems.
# See https://github.com/cucumber/cucumber-rails/blob/master/features/choose_javascript_database_strategy.feature
Cucumber::Rails::Database.javascript_strategy = :truncation
# to allow CSS and Javascript to be loaded when we use save_and_open_page, the
# development server must be running at localhost:3000 as specified below or
# wherever you want. See original issue here:
# https://github.com/jnicklas/capybara/pull/609
# and final resolution here:
# https://github.com/jnicklas/capybara/pull/958
Capybara.asset_host = 'http://localhost:3000'
# # # # # # # # # # #
# H E L P E R S #
# # # # # # # # # # #
def wait_for_all_delayed_jobs_to_run
sleep(1)
Delayed::Job.each do |delayed_job|
Delayed::Worker.new.run(delayed_job)
end
end
def setup_accessabilty
Capybara.default_driver = :selenium_chrome_headless
end
Before do
# Make the window larger in order to account for navbar larger collapse point
Capybara.page.current_window.resize_to(1200, 800)
Mongoid.default_client['users'].drop
Mongoid.default_client['vendors'].drop
Mongoid.default_client['products'].drop
Mongoid.default_client['product_tests'].drop
FactoryBot.create(:static_bundle)
FactoryBot.create(:bundle)
end