2013-02-06 03:16:51 +08: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-08 10:10:47 +08:00
|
|
|
config.cache_classes = true
|
2013-02-06 03:16:51 +08:00
|
|
|
|
|
|
|
# Configure static asset server for tests with Cache-Control for performance
|
2017-10-28 00:32:23 +08:00
|
|
|
config.public_file_server.enabled = true
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2018-01-12 11:15:10 +08:00
|
|
|
# don't consider reqs local so we can properly handle exceptions like we do in prd
|
|
|
|
config.consider_all_requests_local = false
|
|
|
|
|
|
|
|
# disable caching
|
2013-02-06 03:16:51 +08:00
|
|
|
config.action_controller.perform_caching = false
|
|
|
|
|
2018-01-12 11:15:10 +08:00
|
|
|
# production has "show exceptions" on so we better have it
|
|
|
|
# in test as well
|
|
|
|
config.action_dispatch.show_exceptions = true
|
2013-02-06 03:16:51 +08:00
|
|
|
|
|
|
|
# Disable request forgery protection in test environment
|
2017-07-28 09:20:09 +08:00
|
|
|
config.action_controller.allow_forgery_protection = false
|
2013-02-06 03:16:51 +08: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-26 00:42:20 +08:00
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
# lower iteration count for test
|
|
|
|
config.pbkdf2_iterations = 10
|
|
|
|
config.ember.variant = :development
|
2013-11-05 18:01:17 +08:00
|
|
|
|
2013-12-19 09:33:17 +08:00
|
|
|
config.assets.compile = true
|
|
|
|
config.assets.digest = false
|
|
|
|
|
2014-02-18 00:44:28 +08:00
|
|
|
config.eager_load = false
|
2017-07-13 23:34:59 +08:00
|
|
|
|
2017-07-13 23:38:17 +08:00
|
|
|
unless ENV['RAILS_ENABLE_TEST_LOG']
|
|
|
|
config.logger = Logger.new(nil)
|
|
|
|
config.log_level = :fatal
|
|
|
|
end
|
2017-08-07 09:43:09 +08:00
|
|
|
|
2018-05-21 15:01:30 +08:00
|
|
|
if defined? RspecErrorTracker
|
|
|
|
config.middleware.insert_after ActionDispatch::Flash, RspecErrorTracker
|
|
|
|
end
|
|
|
|
|
2017-08-07 09:43:09 +08:00
|
|
|
config.after_initialize do
|
|
|
|
SiteSetting.defaults.tap do |s|
|
|
|
|
s.set_regardless_of_locale(:s3_upload_bucket, 'bucket')
|
|
|
|
s.set_regardless_of_locale(:min_post_length, 5)
|
|
|
|
s.set_regardless_of_locale(:min_first_post_length, 5)
|
2018-01-31 13:56:00 +08:00
|
|
|
s.set_regardless_of_locale(:min_personal_message_post_length, 10)
|
2017-08-07 09:43:09 +08:00
|
|
|
s.set_regardless_of_locale(:crawl_images, false)
|
|
|
|
s.set_regardless_of_locale(:download_remote_images_to_local, false)
|
|
|
|
s.set_regardless_of_locale(:unique_posts_mins, 0)
|
2018-06-01 11:24:32 +08:00
|
|
|
# Running jobs are expensive and most of our tests are not concern with
|
|
|
|
# code that runs inside jobs
|
|
|
|
s.set_regardless_of_locale(:queue_jobs, true)
|
2017-08-07 09:43:09 +08:00
|
|
|
# disable plugins
|
|
|
|
if ENV['LOAD_PLUGINS'] == '1'
|
|
|
|
s.set_regardless_of_locale(:discourse_narrative_bot_enabled, false)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
SiteSetting.refresh!
|
|
|
|
end
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|