2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-12-07 17:54:35 -05:00
|
|
|
if ENV['DISCOURSE_DUMP_HEAP'] == "1"
|
|
|
|
require 'objspace'
|
2016-06-09 23:00:15 -04:00
|
|
|
ObjectSpace.trace_object_allocations_start
|
2014-12-07 17:54:35 -05:00
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
require 'rubygems'
|
|
|
|
|
|
|
|
# Set up gems listed in the Gemfile.
|
|
|
|
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
|
|
|
|
|
2022-01-05 12:45:08 -05:00
|
|
|
require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
|
2017-04-25 13:15:12 -04:00
|
|
|
|
2020-06-09 22:20:17 -04:00
|
|
|
if (ENV['DISABLE_BOOTSNAP'] != '1')
|
2018-02-25 18:29:25 -05:00
|
|
|
begin
|
|
|
|
require 'bootsnap'
|
|
|
|
rescue LoadError
|
|
|
|
# not a strong requirement
|
|
|
|
end
|
2017-05-11 13:51:38 -04:00
|
|
|
|
2018-02-25 18:29:25 -05:00
|
|
|
if defined? Bootsnap
|
|
|
|
Bootsnap.setup(
|
2018-12-04 04:48:16 -05:00
|
|
|
cache_dir: 'tmp/cache', # Path to your cache
|
|
|
|
load_path_cache: true, # Should we optimize the LOAD_PATH with a cache?
|
|
|
|
compile_cache_iseq: true, # Should compile Ruby code into ISeq cache?
|
|
|
|
compile_cache_yaml: false # Skip YAML cache for now, cause we were seeing issues with it
|
2018-02-25 18:29:25 -05:00
|
|
|
)
|
|
|
|
end
|
2017-04-25 13:15:12 -04:00
|
|
|
end
|
2019-04-01 04:27:49 -04:00
|
|
|
|
|
|
|
# Parallel spec system
|
|
|
|
if ENV['RAILS_ENV'] == "test" && ENV['TEST_ENV_NUMBER']
|
2019-06-20 20:59:01 -04:00
|
|
|
if ENV['TEST_ENV_NUMBER'] == ''
|
|
|
|
n = 1
|
|
|
|
else
|
|
|
|
n = ENV['TEST_ENV_NUMBER'].to_i
|
|
|
|
end
|
|
|
|
|
2019-04-01 04:27:49 -04:00
|
|
|
port = 10000 + n
|
|
|
|
|
2019-06-20 20:59:01 -04:00
|
|
|
STDERR.puts "Setting up parallel test mode - starting Redis #{n} on port #{port}"
|
2019-04-01 04:27:49 -04:00
|
|
|
|
|
|
|
`rm -rf tmp/test_data_#{n} && mkdir -p tmp/test_data_#{n}/redis`
|
|
|
|
pid = Process.spawn("redis-server --dir tmp/test_data_#{n}/redis --port #{port}", out: "/dev/null")
|
|
|
|
|
|
|
|
ENV["DISCOURSE_REDIS_PORT"] = port.to_s
|
2019-06-20 20:59:01 -04:00
|
|
|
ENV["RAILS_DB"] = "discourse_test_#{n}"
|
2019-04-01 04:27:49 -04:00
|
|
|
|
2019-06-21 05:30:51 -04:00
|
|
|
at_exit do
|
|
|
|
Process.kill("SIGTERM", pid)
|
|
|
|
Process.wait
|
|
|
|
end
|
2019-04-01 04:27:49 -04:00
|
|
|
end
|