2019-10-02 14:37:47 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-03-28 12:44:00 +02:00
|
|
|
require 'active_support/core_ext/integer/time'
|
|
|
|
|
|
|
|
# The test environment is used exclusively to run your application's
|
|
|
|
# test suite. You never need to work with it otherwise. Remember that
|
|
|
|
# your test database is "scratch space" for the test suite and is wiped
|
|
|
|
# and recreated between test runs. Don't rely on the data there!
|
|
|
|
|
2015-05-05 03:10:25 +02:00
|
|
|
Rails.application.configure do
|
|
|
|
# Settings specified here will take precedence over those in config/application.rb.
|
|
|
|
|
2023-03-28 12:44:00 +02:00
|
|
|
# Turn false under Spring and add config.action_view.cache_template_loading = true.
|
|
|
|
config.cache_classes = false
|
2015-05-05 03:10:25 +02:00
|
|
|
|
2023-03-28 12:44:00 +02:00
|
|
|
# Eager loading loads your whole application. When running a single test locally,
|
|
|
|
# this probably isn't necessary. It's a good idea to do in a continuous integration
|
|
|
|
# system, or in some way before deploying your code.
|
|
|
|
config.eager_load = ENV['CI'].present?
|
2015-05-05 03:10:25 +02:00
|
|
|
|
2020-03-11 16:18:17 +01:00
|
|
|
# Configure public file server for tests with Cache-Control for performance.
|
|
|
|
config.public_file_server.enabled = true
|
|
|
|
config.public_file_server.headers = {
|
2020-03-31 11:28:00 +02:00
|
|
|
'Cache-Control' => "public, max-age=#{1.hour.to_i}"
|
2020-03-11 16:18:17 +01:00
|
|
|
}
|
2015-05-05 03:10:25 +02:00
|
|
|
|
|
|
|
# Show full error reports and disable caching.
|
|
|
|
config.consider_all_requests_local = true
|
|
|
|
config.action_controller.perform_caching = false
|
2023-03-28 12:44:00 +02:00
|
|
|
config.cache_store = :null_store
|
2019-10-02 14:37:47 +02:00
|
|
|
|
2015-05-05 03:10:25 +02:00
|
|
|
# Raise exceptions instead of rendering exception templates.
|
|
|
|
config.action_dispatch.show_exceptions = false
|
|
|
|
|
|
|
|
# Disable request forgery protection in test environment.
|
|
|
|
config.action_controller.allow_forgery_protection = false
|
2020-03-31 11:28:00 +02:00
|
|
|
|
2023-03-28 12:44:00 +02:00
|
|
|
# Store uploaded files on the local file system in a temporary directory.
|
2020-03-31 11:28:00 +02:00
|
|
|
config.active_storage.service = :test
|
|
|
|
|
2020-03-11 16:18:17 +01:00
|
|
|
config.action_mailer.perform_caching = false
|
2015-05-05 03:10:25 +02:00
|
|
|
|
|
|
|
# Tell Action Mailer not to deliver emails to the real world.
|
|
|
|
# The :test delivery method accumulates sent emails in the
|
|
|
|
# ActionMailer::Base.deliveries array.
|
|
|
|
config.action_mailer.delivery_method = :test
|
|
|
|
|
|
|
|
# Print deprecation notices to the stderr.
|
|
|
|
config.active_support.deprecation = :stderr
|
|
|
|
|
2023-03-28 12:44:00 +02:00
|
|
|
# Raise exceptions for disallowed deprecations.
|
|
|
|
config.active_support.disallowed_deprecation = :raise
|
|
|
|
|
|
|
|
# Tell Active Support which deprecation messages to disallow.
|
|
|
|
config.active_support.disallowed_deprecation_warnings = []
|
2015-05-05 03:10:25 +02:00
|
|
|
|
2020-03-11 16:18:17 +01:00
|
|
|
config.active_job.queue_adapter = :test
|
2016-04-04 17:42:45 +02:00
|
|
|
config.active_support.test_order = :random
|
2023-03-28 12:44:00 +02:00
|
|
|
config.log_level = ENV.fetch('LOG_LEVEL', :debug).to_sym
|
2020-06-29 16:53:38 +02:00
|
|
|
|
2023-03-28 12:44:00 +02:00
|
|
|
config.action_controller.default_url_options = {
|
|
|
|
host: Rails.application.secrets.default_host,
|
|
|
|
protocol: Rails.application.secrets.default_protocol
|
|
|
|
}
|
|
|
|
end
|