2019-05-03 08:17:27 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-12-07 22:54:35 +00:00
|
|
|
if ENV["DISCOURSE_DUMP_HEAP"] == "1"
|
|
|
|
require "objspace"
|
2016-06-10 11:00:15 +08:00
|
|
|
ObjectSpace.trace_object_allocations_start
|
2014-12-07 22:54:35 +00: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 10:15:12 -07:00
|
|
|
|
2020-06-10 12:20:17 +10:00
|
|
|
if (ENV["DISABLE_BOOTSNAP"] != "1")
|
2018-02-26 10:29:25 +11:00
|
|
|
begin
|
2024-02-19 11:33:52 +08:00
|
|
|
require "bootsnap/setup"
|
2018-02-26 10:29:25 +11:00
|
|
|
rescue LoadError
|
|
|
|
# not a strong requirement
|
|
|
|
end
|
2017-04-25 10:15:12 -07:00
|
|
|
end
|
2019-04-01 09:27:49 +01:00
|
|
|
|
|
|
|
# Parallel spec system
|
|
|
|
if ENV["RAILS_ENV"] == "test" && ENV["TEST_ENV_NUMBER"]
|
2019-06-21 01:59:01 +01:00
|
|
|
if ENV["TEST_ENV_NUMBER"] == ""
|
|
|
|
n = 1
|
|
|
|
else
|
|
|
|
n = ENV["TEST_ENV_NUMBER"].to_i
|
|
|
|
end
|
|
|
|
|
2019-04-01 09:27:49 +01:00
|
|
|
port = 10_000 + n
|
|
|
|
|
2019-06-21 01:59:01 +01:00
|
|
|
STDERR.puts "Setting up parallel test mode - starting Redis #{n} on port #{port}"
|
2019-04-01 09:27:49 +01: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
|
2022-08-04 16:15:06 -05:00
|
|
|
ENV["RAILS_DB"] = "discourse_test_#{n}"
|
2019-04-01 09:27:49 +01:00
|
|
|
|
2019-06-21 10:30:51 +01:00
|
|
|
at_exit do
|
|
|
|
Process.kill("SIGTERM", pid)
|
|
|
|
Process.wait
|
|
|
|
end
|
2019-04-01 09:27:49 +01:00
|
|
|
end
|