2019-05-02 17:17:27 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
Discourse::Application.configure do
|
|
|
|
# Settings specified here will take precedence over those in config/application.rb
|
|
|
|
|
|
|
|
# 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!
|
2013-07-07 21:10:47 -05:00
|
|
|
config.cache_classes = true
|
2013-02-05 13:16:51 -06:00
|
|
|
|
2023-12-25 23:05:55 -06:00
|
|
|
# Eager loading loads your entire application. When running a single test locally,
|
|
|
|
# this is usually not necessary, and can slow down your test suite. However, it's
|
|
|
|
# recommended that you enable it in continuous integration systems to ensure eager
|
|
|
|
# loading is working properly before deploying your code.
|
|
|
|
config.eager_load = ENV["CI"].present?
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
# Configure static asset server for tests with Cache-Control for performance
|
2019-10-15 18:39:31 -05:00
|
|
|
config.public_file_server.enabled = true
|
2013-02-05 13:16:51 -06:00
|
|
|
|
2021-05-20 20:43:47 -05:00
|
|
|
# don't consider reqs local so we can properly handle exceptions like we do in prod
|
2020-10-01 12:25:58 -05:00
|
|
|
config.consider_all_requests_local = false
|
2018-01-11 21:15:10 -06:00
|
|
|
|
|
|
|
# disable caching
|
2013-02-05 13:16:51 -06:00
|
|
|
config.action_controller.perform_caching = false
|
|
|
|
|
2018-01-11 21:15:10 -06:00
|
|
|
# production has "show exceptions" on so we better have it
|
|
|
|
# in test as well
|
|
|
|
config.action_dispatch.show_exceptions = true
|
2013-02-05 13:16:51 -06:00
|
|
|
|
|
|
|
# Disable request forgery protection in test environment
|
2017-07-27 20:20:09 -05:00
|
|
|
config.action_controller.allow_forgery_protection = false
|
2013-02-05 13:16:51 -06: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
|
|
|
|
|
|
|
|
# Use SQL instead of Active Record's schema dumper when creating the test database.
|
|
|
|
# This is necessary if your schema can't be completely dumped by the schema dumper,
|
|
|
|
# like if you have constraints or database-specific column types
|
|
|
|
# config.active_record.schema_format = :sql
|
|
|
|
|
|
|
|
# Print deprecation notices to the stderr
|
|
|
|
config.active_support.deprecation = :stderr
|
2013-02-25 10:42:20 -06:00
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
# lower iteration count for test
|
|
|
|
config.pbkdf2_iterations = 10
|
2013-11-05 04:01:17 -06:00
|
|
|
|
2013-12-18 19:33:17 -06:00
|
|
|
config.assets.compile = true
|
|
|
|
config.assets.digest = false
|
|
|
|
|
2023-12-27 00:40:00 -06:00
|
|
|
config.active_record.verbose_query_logs = true
|
2024-01-02 23:11:16 -06:00
|
|
|
config.active_record.query_log_tags_enabled = true
|
2023-12-27 00:40:00 -06:00
|
|
|
|
2024-01-11 23:06:29 -06:00
|
|
|
config.active_record.query_log_tags = [
|
|
|
|
:application,
|
|
|
|
:controller,
|
|
|
|
:action,
|
|
|
|
{
|
|
|
|
request_path: ->(context) { context[:controller]&.request&.path },
|
|
|
|
thread_id: ->(context) { Thread.current.object_id },
|
|
|
|
},
|
|
|
|
]
|
|
|
|
|
2023-12-27 00:40:00 -06:00
|
|
|
config.after_initialize do
|
|
|
|
ActiveRecord::LogSubscriber.backtrace_cleaner.add_silencer do |line|
|
|
|
|
line =~ %r{lib/freedom_patches}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-01-07 05:59:28 -06:00
|
|
|
if ENV["RAILS_ENABLE_TEST_LOG"]
|
2020-01-02 17:58:01 -06:00
|
|
|
config.logger = Logger.new(STDOUT)
|
2023-01-07 05:59:28 -06:00
|
|
|
config.log_level =
|
|
|
|
ENV["RAILS_TEST_LOG_LEVEL"].present? ? ENV["RAILS_TEST_LOG_LEVEL"].to_sym : :info
|
2020-01-02 17:58:01 -06:00
|
|
|
else
|
2017-07-13 10:38:17 -05:00
|
|
|
config.logger = Logger.new(nil)
|
|
|
|
config.log_level = :fatal
|
|
|
|
end
|
2017-08-06 20:43:09 -05:00
|
|
|
|
2023-01-07 05:59:28 -06:00
|
|
|
if defined?(RspecErrorTracker)
|
2018-05-21 02:01:30 -05:00
|
|
|
config.middleware.insert_after ActionDispatch::Flash, RspecErrorTracker
|
|
|
|
end
|
|
|
|
|
2017-08-06 20:43:09 -05:00
|
|
|
config.after_initialize do
|
|
|
|
SiteSetting.defaults.tap do |s|
|
2023-01-07 05:59:28 -06:00
|
|
|
s.set_regardless_of_locale(:s3_upload_bucket, "bucket")
|
2017-08-06 20:43:09 -05:00
|
|
|
s.set_regardless_of_locale(:min_post_length, 5)
|
|
|
|
s.set_regardless_of_locale(:min_first_post_length, 5)
|
2018-01-30 23:56:00 -06:00
|
|
|
s.set_regardless_of_locale(:min_personal_message_post_length, 10)
|
2017-08-06 20:43:09 -05:00
|
|
|
s.set_regardless_of_locale(:download_remote_images_to_local, false)
|
|
|
|
s.set_regardless_of_locale(:unique_posts_mins, 0)
|
2019-05-08 22:28:28 -05:00
|
|
|
s.set_regardless_of_locale(:max_consecutive_replies, 0)
|
2022-09-30 13:20:21 -05:00
|
|
|
|
|
|
|
# Most existing tests were written assuming allow_uncategorized_topics
|
|
|
|
# was enabled, so we should set it to true.
|
|
|
|
s.set_regardless_of_locale(:allow_uncategorized_topics, true)
|
2017-08-06 20:43:09 -05:00
|
|
|
end
|
2019-03-14 09:47:38 -05:00
|
|
|
|
2017-08-06 20:43:09 -05:00
|
|
|
SiteSetting.refresh!
|
|
|
|
end
|
2024-01-28 19:57:58 -06:00
|
|
|
|
|
|
|
if ENV["CI"].present?
|
|
|
|
config.to_prepare do
|
|
|
|
ActiveSupport.on_load(:active_record_postgresqladapter) { self.create_unlogged_tables = true }
|
|
|
|
end
|
|
|
|
end
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|