* Add dual booting logic to Gemfile This might be helpful for the Rails 6.0 upgrade project. * Add more than one gemfile to Travis' configuration We want to see how the application behaves with more than one Rails versions: - Gemfile -> Rails 5.2 - Gemfile.next -> Rails 6.0 This will help us figure out what needs to be addressed before migrating to Rails 6.0. If you want to read more about this technique (dual booting) you can check out this page: https://www.fastruby.io/blog/upgrade-rails/dual-boot/dual-boot-with-rails-6-0-beta.html * Fix joins * Upgrade Gemfile.next.lock * Make sure we're installing the correct versions of gems * Add Rails 6 notes * Update rubocop in Gemfile.next.lock * Fix organization spec * Fix page_views_spec * Add Rails 6 and run rails app:update * Remove some tricks * Remove Gemfile.next for now * Fix .content_type deprecation * Fix deprecation of .where.not NAND/NOR behavior * Fix deprecation of parameterized emails * Fix specs * Remove next flag for now * Fix spec (hopefully) * Add wait_for_javascript * Fix spec, thanks @maestromac! * Try without wait for javascript hack * Remove unnecessary bin/update * Remove file that snuck in the rebase * Update the vendored gems * Replace migrate+db:setup with db:prepare * Update vendored gems * Fix Gemfile.lock and update vendored stuff * Fix Gemfile.lock to be the same as master's minus the changes Co-authored-by: rhymes <rhymesete@gmail.com>
172 lines
6.1 KiB
Ruby
172 lines
6.1 KiB
Ruby
ENV["RAILS_ENV"] = "test"
|
|
|
|
require "spec_helper"
|
|
require File.expand_path("../config/environment", __dir__)
|
|
require "rspec/rails"
|
|
abort("The Rails environment is running in production mode!") if Rails.env.production?
|
|
|
|
# Add additional requires below this line. Rails is not loaded until this point!
|
|
|
|
require "percy"
|
|
require "pundit/matchers"
|
|
require "pundit/rspec"
|
|
require "webmock/rspec"
|
|
require "test_prof/recipes/rspec/before_all"
|
|
require "test_prof/recipes/rspec/let_it_be"
|
|
require "test_prof/recipes/rspec/sample"
|
|
require "sidekiq/testing"
|
|
require "validate_url/rspec_matcher"
|
|
|
|
# Requires supporting ruby files with custom matchers and macros, etc, in
|
|
# spec/support/ and its subdirectories. Files matching `spec/**/*_spec.rb` are
|
|
# run as spec files by default. This means that files in spec/support that end
|
|
# in _spec.rb will both be required and run as specs, causing the specs to be
|
|
# run twice. It is recommended that you do not name files matching this glob to
|
|
# end with _spec.rb. You can configure this pattern with the --pattern
|
|
# option on the command line or in ~/.rspec, .rspec or `.rspec-local`.
|
|
#
|
|
# The following line is provided for convenience purposes. It has the downside
|
|
# of increasing the boot-up time by auto-requiring all files in the support
|
|
# directory. Alternatively, in the individual `*_spec.rb` files, manually
|
|
# require only the support files necessary.
|
|
|
|
Dir[Rails.root.join("spec/support/**/*.rb")].sort.each { |f| require f }
|
|
Dir[Rails.root.join("spec/system/shared_examples/**/*.rb")].sort.each { |f| require f }
|
|
Dir[Rails.root.join("spec/models/shared_examples/**/*.rb")].sort.each { |f| require f }
|
|
Dir[Rails.root.join("spec/jobs/shared_examples/**/*.rb")].sort.each { |f| require f }
|
|
Dir[Rails.root.join("spec/workers/shared_examples/**/*.rb")].sort.each { |f| require f }
|
|
Dir[Rails.root.join("spec/initializers/shared_examples/**/*.rb")].sort.each { |f| require f }
|
|
|
|
# Checks for pending migrations before tests are run.
|
|
# If you are not using ActiveRecord, you can remove this line.
|
|
ActiveRecord::Migration.maintain_test_schema!
|
|
|
|
# Disable internet connection with Webmock
|
|
# allow browser websites, so that "webdrivers" can access their binaries
|
|
# see <https://github.com/titusfortner/webdrivers/wiki/Using-with-VCR-or-WebMock>
|
|
allowed_sites = [
|
|
"https://chromedriver.storage.googleapis.com",
|
|
"https://github.com/mozilla/geckodriver/releases",
|
|
"https://selenium-release.storage.googleapis.com",
|
|
"https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver",
|
|
]
|
|
WebMock.disable_net_connect!(allow_localhost: true, allow: allowed_sites)
|
|
|
|
RSpec::Matchers.define_negated_matcher :not_change, :change
|
|
|
|
Rack::Attack.enabled = false
|
|
|
|
# `browser`, a dependency of `field_test`, starting from version 3.0
|
|
# considers the empty user agent a bot, which will fail tests as we
|
|
# explicitly configure field tests to exclude bots
|
|
# see https://github.com/fnando/browser/blob/master/CHANGELOG.md#300
|
|
Browser::Bot.matchers.delete(Browser::Bot::EmptyUserAgentMatcher)
|
|
|
|
RSpec.configure do |config|
|
|
config.use_transactional_fixtures = true
|
|
config.fixture_path = "#{::Rails.root}/spec/fixtures"
|
|
|
|
config.include ApplicationHelper
|
|
config.include ActionMailer::TestHelper
|
|
config.include ActiveJob::TestHelper
|
|
config.include Devise::Test::ControllerHelpers, type: :view
|
|
config.include Devise::Test::IntegrationHelpers, type: :system
|
|
config.include Devise::Test::IntegrationHelpers, type: :request
|
|
config.include FactoryBot::Syntax::Methods
|
|
config.include OmniauthHelpers
|
|
config.include SidekiqTestHelpers
|
|
config.include ElasticsearchHelpers
|
|
|
|
config.before(:suite) do
|
|
Search::Cluster.recreate_indexes
|
|
end
|
|
|
|
config.before do
|
|
Sidekiq::Worker.clear_all # worker jobs shouldn't linger around between tests
|
|
end
|
|
|
|
config.around(:each, elasticsearch_reset: true) do |example|
|
|
Search::Cluster.recreate_indexes
|
|
example.run
|
|
Search::Cluster.recreate_indexes
|
|
end
|
|
|
|
config.around(:each, :elasticsearch) do |ex|
|
|
klasses = Array.wrap(ex.metadata[:elasticsearch]).map do |search_class|
|
|
Search.const_get(search_class)
|
|
end
|
|
klasses.each { |klass| clear_elasticsearch_data(klass) }
|
|
ex.run
|
|
end
|
|
|
|
config.around(:each, throttle: true) do |example|
|
|
Rack::Attack.enabled = true
|
|
example.run
|
|
Rack::Attack.enabled = false
|
|
end
|
|
|
|
config.after do
|
|
SiteConfig.clear_cache
|
|
end
|
|
|
|
# Only turn on VCR if :vcr is included metadata keys
|
|
config.around do |ex|
|
|
if ex.metadata.key?(:vcr)
|
|
ex.run
|
|
else
|
|
VCR.turned_off { ex.run }
|
|
end
|
|
end
|
|
|
|
# Allow testing with Stripe's test server. BE CAREFUL
|
|
if config.filter_manager.inclusions.rules.include?(:live)
|
|
WebMock.allow_net_connect!
|
|
StripeMock.toggle_live(true)
|
|
Rails.logger.info("Running **live** tests against Stripe...")
|
|
end
|
|
|
|
config.before do
|
|
stub_request(:any, /res.cloudinary.com/).to_rack("dsdsdsds")
|
|
|
|
stub_request(:post, /api.fastly.com/).
|
|
to_return(status: 200, body: "".to_json, headers: {})
|
|
|
|
stub_request(:post, /api.bufferapp.com/).
|
|
to_return(status: 200, body: { fake_text: "so fake" }.to_json, headers: {})
|
|
|
|
# for twitter image cdn
|
|
stub_request(:get, /twimg.com/).
|
|
to_return(status: 200, body: "", headers: {})
|
|
|
|
stub_request(:any, /api.mailchimp.com/).
|
|
to_return(status: 200, body: "", headers: {})
|
|
|
|
stub_request(:any, /dummyimage.com/).
|
|
to_return(status: 200, body: "", headers: {})
|
|
|
|
stub_request(:post, "http://www.google-analytics.com/collect").
|
|
to_return(status: 200, body: "", headers: {})
|
|
end
|
|
|
|
OmniAuth.config.test_mode = true
|
|
OmniAuth.config.logger = Rails.logger
|
|
|
|
config.infer_spec_type_from_file_location!
|
|
|
|
# Filter lines from Rails gems in backtraces.
|
|
config.filter_rails_from_backtrace!
|
|
# arbitrary gems may also be filtered via:
|
|
# config.filter_gems_from_backtrace("gem name")
|
|
|
|
# Explicitly set a seed and time to ensure deterministic Percy snapshots.
|
|
# config.around(:each, percy: true) do |example|
|
|
# Timecop.freeze("2020-05-13T10:00:00Z")
|
|
# prev_random_seed = Faker::Config.random
|
|
# Faker::Config.random = Random.new(42)
|
|
|
|
# example.run
|
|
|
|
# Faker::Config.random = prev_random_seed
|
|
# Timecop.return
|
|
# end
|
|
end
|