2019-05-02 17:17:27 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-06-18 12:44:20 -05:00
|
|
|
desc "Runs the qunit test suite"
|
|
|
|
|
2020-01-07 06:22:58 -06:00
|
|
|
task "qunit:test", [:timeout, :qunit_path] do |_, args|
|
2013-07-29 23:15:20 -05:00
|
|
|
require "socket"
|
2021-06-20 22:28:48 -05:00
|
|
|
require "chrome_installed_checker"
|
2018-01-10 07:51:08 -06:00
|
|
|
|
2021-06-20 22:28:48 -05:00
|
|
|
begin
|
|
|
|
ChromeInstalledChecker.run
|
|
|
|
rescue ChromeNotInstalled, ChromeVersionTooLow => err
|
|
|
|
abort err.message
|
2017-12-19 01:59:41 -06:00
|
|
|
end
|
|
|
|
|
2017-12-21 19:11:49 -06:00
|
|
|
unless system("command -v yarn >/dev/null;")
|
|
|
|
abort "Yarn is not installed. Download from https://yarnpkg.com/lang/en/docs/install/"
|
|
|
|
end
|
|
|
|
|
2020-04-02 00:01:38 -05:00
|
|
|
report_requests = ENV['REPORT_REQUESTS'] == "1"
|
|
|
|
|
2021-02-10 18:19:47 -06:00
|
|
|
system("yarn install")
|
2017-12-19 01:59:41 -06:00
|
|
|
|
2013-07-29 23:15:20 -05:00
|
|
|
# ensure we have this port available
|
2017-07-27 20:20:09 -05:00
|
|
|
def port_available?(port)
|
2013-07-29 23:15:20 -05:00
|
|
|
server = TCPServer.open port
|
|
|
|
server.close
|
|
|
|
true
|
|
|
|
rescue Errno::EADDRINUSE
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
2013-06-18 12:44:20 -05:00
|
|
|
port = ENV['TEST_SERVER_PORT'] || 60099
|
2013-07-29 23:15:20 -05:00
|
|
|
|
|
|
|
while !port_available? port
|
|
|
|
port += 1
|
|
|
|
end
|
|
|
|
|
2020-01-07 06:22:58 -06:00
|
|
|
pid = Process.spawn(
|
|
|
|
{
|
2021-04-28 15:12:08 -05:00
|
|
|
"RAILS_ENV" => ENV["QUNIT_RAILS_ENV"] || "test",
|
2020-01-07 06:22:58 -06:00
|
|
|
"SKIP_ENFORCE_HOSTNAME" => "1",
|
2020-08-05 01:57:12 -05:00
|
|
|
"UNICORN_PID_PATH" => "#{Rails.root}/tmp/pids/unicorn_test_#{port}.pid", # So this can run alongside development
|
2020-01-07 06:22:58 -06:00
|
|
|
"UNICORN_PORT" => port.to_s,
|
2021-06-15 10:27:15 -05:00
|
|
|
"UNICORN_SIDEKIQS" => "0",
|
2021-06-22 23:38:43 -05:00
|
|
|
"DISCOURSE_SKIP_CSS_WATCHER" => "1",
|
|
|
|
"UNICORN_LISTENER" => "127.0.0.1:#{port}",
|
|
|
|
"LOGSTASH_UNICORN_URI" => nil,
|
|
|
|
"UNICORN_WORKERS" => "3"
|
2020-01-07 06:22:58 -06:00
|
|
|
},
|
2021-04-28 15:12:08 -05:00
|
|
|
"#{Rails.root}/bin/unicorn -c config/unicorn.conf.rb",
|
|
|
|
pgroup: true
|
2020-01-07 06:22:58 -06:00
|
|
|
)
|
2013-06-18 12:44:20 -05:00
|
|
|
|
|
|
|
begin
|
|
|
|
success = true
|
2018-12-03 10:16:37 -06:00
|
|
|
test_path = "#{Rails.root}/test"
|
2017-07-27 10:29:18 -05:00
|
|
|
qunit_path = args[:qunit_path] || "/qunit"
|
2017-12-19 01:59:41 -06:00
|
|
|
cmd = "node #{test_path}/run-qunit.js http://localhost:#{port}#{qunit_path}"
|
2019-05-16 07:37:01 -05:00
|
|
|
options = { seed: (ENV["QUNIT_SEED"] || Random.new.seed), hidepassed: 1 }
|
2016-06-13 21:06:11 -05:00
|
|
|
|
2021-04-28 15:12:08 -05:00
|
|
|
%w{module filter qunit_skip_core qunit_single_plugin theme_name theme_url theme_id}.each do |arg|
|
2016-06-13 21:06:11 -05:00
|
|
|
options[arg] = ENV[arg.upcase] if ENV[arg.upcase].present?
|
|
|
|
end
|
|
|
|
|
2020-04-02 00:01:38 -05:00
|
|
|
if report_requests
|
|
|
|
options['report_requests'] = '1'
|
2016-06-13 21:06:11 -05:00
|
|
|
end
|
|
|
|
|
2020-04-02 00:01:38 -05:00
|
|
|
cmd += "?#{options.to_query.gsub('+', '%20').gsub("&", '\\\&')}"
|
|
|
|
|
2017-02-23 17:19:34 -06:00
|
|
|
if args[:timeout].present?
|
|
|
|
cmd += " #{args[:timeout]}"
|
|
|
|
end
|
|
|
|
|
2017-07-19 11:04:03 -05:00
|
|
|
@now = Time.now
|
|
|
|
def elapsed
|
|
|
|
Time.now - @now
|
|
|
|
end
|
|
|
|
|
|
|
|
# wait for server to accept connections
|
|
|
|
require 'net/http'
|
|
|
|
uri = URI("http://localhost:#{port}/assets/test_helper.js")
|
|
|
|
puts "Warming up Rails server"
|
|
|
|
begin
|
|
|
|
Net::HTTP.get(uri)
|
2020-10-14 10:55:26 -05:00
|
|
|
rescue Errno::ECONNREFUSED, Errno::EADDRNOTAVAIL, Net::ReadTimeout, EOFError
|
2017-07-19 11:04:03 -05:00
|
|
|
sleep 1
|
|
|
|
retry unless elapsed() > 60
|
2020-08-05 01:57:12 -05:00
|
|
|
puts "Timed out. Can not connect to forked server!"
|
2017-07-19 11:04:03 -05:00
|
|
|
exit 1
|
|
|
|
end
|
|
|
|
puts "Rails server is warmed up"
|
|
|
|
|
2018-03-12 06:39:24 -05:00
|
|
|
sh(cmd)
|
2013-06-18 12:44:20 -05:00
|
|
|
success &&= $?.success?
|
|
|
|
ensure
|
2013-07-29 23:15:20 -05:00
|
|
|
# was having issues with HUP
|
2021-04-28 15:12:08 -05:00
|
|
|
Process.kill "-KILL", pid
|
2021-02-10 06:53:51 -06:00
|
|
|
FileUtils.rm("#{Rails.root}/tmp/pids/unicorn_test_#{port}.pid")
|
2013-06-18 12:44:20 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
if success
|
|
|
|
puts "\nTests Passed"
|
|
|
|
else
|
|
|
|
puts "\nTests Failed"
|
|
|
|
exit(1)
|
|
|
|
end
|
|
|
|
|
2013-07-29 21:32:12 -05:00
|
|
|
end
|