2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-06-19 01:44:20 +08:00
|
|
|
desc "Runs the qunit test suite"
|
2024-09-06 19:08:42 +08:00
|
|
|
task "qunit:test", %i[qunit_path filter] do |_, args|
|
2013-07-30 12:15:20 +08:00
|
|
|
require "socket"
|
2021-06-21 11:28:48 +08:00
|
|
|
require "chrome_installed_checker"
|
2018-01-10 21:51:08 +08:00
|
|
|
|
2021-06-21 11:28:48 +08:00
|
|
|
begin
|
|
|
|
ChromeInstalledChecker.run
|
2022-03-19 18:00:06 +08:00
|
|
|
rescue ChromeInstalledChecker::ChromeError => err
|
2021-06-21 11:28:48 +08:00
|
|
|
abort err.message
|
2017-12-19 15:59:41 +08:00
|
|
|
end
|
|
|
|
|
2024-09-03 17:51:07 +08:00
|
|
|
unless system("command -v pnpm >/dev/null;")
|
|
|
|
abort "pnpm is not installed. See https://pnpm.io/installation"
|
2017-12-22 09:11:49 +08:00
|
|
|
end
|
|
|
|
|
2020-04-02 13:01:38 +08:00
|
|
|
report_requests = ENV["REPORT_REQUESTS"] == "1"
|
|
|
|
|
2024-09-03 17:51:07 +08:00
|
|
|
system("pnpm install", exception: true)
|
2017-12-19 15:59:41 +08:00
|
|
|
|
2013-07-30 12:15:20 +08:00
|
|
|
# ensure we have this port available
|
|
|
|
def port_available?(port)
|
|
|
|
server = TCPServer.open port
|
|
|
|
server.close
|
|
|
|
true
|
|
|
|
rescue Errno::EADDRINUSE
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
2022-06-20 22:33:05 +08:00
|
|
|
if ENV["QUNIT_EMBER_CLI"] == "0"
|
2022-06-17 23:51:28 +08:00
|
|
|
puts "The 'legacy' ember environment is discontinued - running tests with ember-cli assets..."
|
|
|
|
end
|
|
|
|
|
2021-09-22 00:14:10 +08:00
|
|
|
port = ENV["TEST_SERVER_PORT"] || 60_099
|
2013-07-30 12:15:20 +08:00
|
|
|
port += 1 while !port_available? port
|
|
|
|
|
2022-06-20 22:33:05 +08:00
|
|
|
unicorn_port = 60_098
|
|
|
|
unicorn_port += 1 while unicorn_port == port || !port_available?(unicorn_port)
|
2021-09-22 00:14:10 +08:00
|
|
|
|
|
|
|
env = {
|
|
|
|
"RAILS_ENV" => ENV["QUNIT_RAILS_ENV"] || "test",
|
|
|
|
"SKIP_ENFORCE_HOSTNAME" => "1",
|
|
|
|
"UNICORN_PID_PATH" => "#{Rails.root}/tmp/pids/unicorn_test_#{unicorn_port}.pid", # So this can run alongside development
|
|
|
|
"UNICORN_PORT" => unicorn_port.to_s,
|
|
|
|
"UNICORN_SIDEKIQS" => "0",
|
|
|
|
"DISCOURSE_SKIP_CSS_WATCHER" => "1",
|
|
|
|
"UNICORN_LISTENER" => "127.0.0.1:#{unicorn_port}",
|
|
|
|
"LOGSTASH_UNICORN_URI" => nil,
|
2021-12-02 02:30:33 +08:00
|
|
|
"UNICORN_WORKERS" => "1",
|
|
|
|
"UNICORN_TIMEOUT" => "90",
|
2021-09-22 00:14:10 +08:00
|
|
|
}
|
|
|
|
|
2022-01-12 03:03:08 +08:00
|
|
|
pid = Process.spawn(env, "#{Rails.root}/bin/unicorn", pgroup: true)
|
2013-06-19 01:44:20 +08:00
|
|
|
|
|
|
|
begin
|
|
|
|
success = true
|
2021-09-22 00:14:10 +08:00
|
|
|
qunit_path = args[:qunit_path]
|
2022-09-22 02:00:50 +08:00
|
|
|
filter = args[:filter]
|
2022-01-12 03:03:08 +08:00
|
|
|
|
2019-05-16 20:37:01 +08:00
|
|
|
options = { seed: (ENV["QUNIT_SEED"] || Random.new.seed), hidepassed: 1 }
|
2016-06-14 10:06:11 +08:00
|
|
|
|
2021-04-29 04:12:08 +08:00
|
|
|
%w[
|
|
|
|
module
|
|
|
|
filter
|
|
|
|
qunit_skip_core
|
|
|
|
qunit_single_plugin
|
|
|
|
theme_name
|
|
|
|
theme_url
|
|
|
|
theme_id
|
2023-07-13 21:20:00 +08:00
|
|
|
target
|
2016-06-14 10:06:11 +08:00
|
|
|
].each { |arg| options[arg] = ENV[arg.upcase] if ENV[arg.upcase].present? }
|
|
|
|
|
2020-04-02 13:01:38 +08:00
|
|
|
options["report_requests"] = "1" if report_requests
|
2016-06-14 10:06:11 +08:00
|
|
|
|
2022-01-12 03:03:08 +08:00
|
|
|
query = options.to_query
|
2017-02-24 07:19:34 +08:00
|
|
|
|
2017-07-20 00:04:03 +08:00
|
|
|
@now = Time.now
|
|
|
|
def elapsed
|
|
|
|
Time.now - @now
|
|
|
|
end
|
|
|
|
|
|
|
|
# wait for server to accept connections
|
|
|
|
require "net/http"
|
2023-09-26 01:27:49 +08:00
|
|
|
uri = URI("http://localhost:#{unicorn_port}/srv/status")
|
2017-07-20 00:04:03 +08:00
|
|
|
puts "Warming up Rails server"
|
2022-06-20 22:33:05 +08:00
|
|
|
|
2017-07-20 00:04:03 +08:00
|
|
|
begin
|
|
|
|
Net::HTTP.get(uri)
|
2023-09-26 01:27:49 +08:00
|
|
|
rescue Errno::ECONNREFUSED,
|
|
|
|
Errno::EADDRNOTAVAIL,
|
|
|
|
Net::ReadTimeout,
|
|
|
|
Net::HTTPBadResponse,
|
|
|
|
EOFError
|
2017-07-20 00:04:03 +08:00
|
|
|
sleep 1
|
2023-02-16 17:40:11 +08:00
|
|
|
retry if elapsed() <= 60
|
2020-08-05 14:57:12 +08:00
|
|
|
puts "Timed out. Can not connect to forked server!"
|
2017-07-20 00:04:03 +08:00
|
|
|
exit 1
|
|
|
|
end
|
|
|
|
puts "Rails server is warmed up"
|
|
|
|
|
2023-11-17 07:17:32 +08:00
|
|
|
env = { "UNICORN_PORT" => unicorn_port.to_s }
|
|
|
|
cmd = []
|
|
|
|
|
|
|
|
parallel = ENV["QUNIT_PARALLEL"]
|
2022-06-20 22:33:05 +08:00
|
|
|
|
|
|
|
if qunit_path
|
|
|
|
# Bypass `ember test` - it only works properly for the `/tests` path.
|
|
|
|
# We have to trigger a `build` manually so that JS is available for rails to serve.
|
2024-02-27 18:33:28 +08:00
|
|
|
system(
|
2024-09-03 17:51:07 +08:00
|
|
|
"pnpm",
|
2024-02-27 18:33:28 +08:00
|
|
|
"ember",
|
|
|
|
"build",
|
|
|
|
chdir: "#{Rails.root}/app/assets/javascripts/discourse",
|
|
|
|
exception: true,
|
|
|
|
)
|
2023-11-17 07:17:32 +08:00
|
|
|
|
|
|
|
env["THEME_TEST_PAGES"] = if ENV["THEME_IDS"]
|
|
|
|
ENV["THEME_IDS"]
|
|
|
|
.split("|")
|
|
|
|
.map { |theme_id| "#{qunit_path}?#{query}&testem=1&id=#{theme_id}" }
|
2024-09-11 16:45:12 +08:00
|
|
|
.shuffle
|
2023-11-17 07:17:32 +08:00
|
|
|
.join(",")
|
|
|
|
else
|
|
|
|
"#{qunit_path}?#{query}&testem=1"
|
|
|
|
end
|
|
|
|
|
2024-09-03 17:51:07 +08:00
|
|
|
cmd += %w[pnpm testem ci -f testem.js]
|
2023-11-17 07:17:32 +08:00
|
|
|
cmd += ["--parallel", parallel] if parallel
|
2022-01-12 03:03:08 +08:00
|
|
|
else
|
2024-09-03 17:51:07 +08:00
|
|
|
cmd += ["pnpm", "ember", "exam", "--query", query]
|
2023-11-17 07:17:32 +08:00
|
|
|
cmd += ["--load-balance", "--parallel", parallel] if parallel
|
2022-09-22 17:28:02 +08:00
|
|
|
cmd += ["--filter", filter] if filter
|
2023-10-10 23:29:28 +08:00
|
|
|
cmd << "--write-execution-file" if ENV["QUNIT_WRITE_EXECUTION_FILE"]
|
2022-01-12 03:03:08 +08:00
|
|
|
end
|
2022-06-20 22:33:05 +08:00
|
|
|
|
2023-11-17 07:17:32 +08:00
|
|
|
# Print out all env for debugging purposes
|
|
|
|
p env
|
|
|
|
system(env, *cmd, chdir: "#{Rails.root}/app/assets/javascripts/discourse")
|
2022-06-20 22:33:05 +08:00
|
|
|
|
2013-06-19 01:44:20 +08:00
|
|
|
success &&= $?.success?
|
|
|
|
ensure
|
2013-07-30 12:15:20 +08:00
|
|
|
# was having issues with HUP
|
2021-04-29 04:12:08 +08:00
|
|
|
Process.kill "-KILL", pid
|
2021-09-22 00:14:10 +08:00
|
|
|
FileUtils.rm("#{Rails.root}/tmp/pids/unicorn_test_#{unicorn_port}.pid")
|
2013-06-19 01:44:20 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
if success
|
|
|
|
puts "\nTests Passed"
|
|
|
|
else
|
|
|
|
puts "\nTests Failed"
|
|
|
|
exit(1)
|
|
|
|
end
|
2013-07-30 10:32:12 +08:00
|
|
|
end
|