2013-06-19 01:44:20 +08:00
|
|
|
desc "Runs the qunit test suite"
|
|
|
|
|
2017-08-19 02:08:58 +08:00
|
|
|
task "qunit:test", [:timeout, :qunit_path] => :environment do |_, args|
|
2013-06-19 01:44:20 +08:00
|
|
|
|
|
|
|
require "rack"
|
2013-07-30 12:15:20 +08:00
|
|
|
require "socket"
|
2013-06-19 01:44:20 +08:00
|
|
|
|
2017-12-19 15:59:41 +08:00
|
|
|
unless system("command -v google-chrome >/dev/null;")
|
|
|
|
abort "Chrome is not installed. Download from https://www.google.com/chrome/browser/desktop/index.html"
|
2013-06-19 01:44:20 +08:00
|
|
|
end
|
|
|
|
|
2017-12-19 15:59:41 +08:00
|
|
|
if Gem::Version.new(`$(command -v google-chrome) --version`.match(/[\d\.]+/)[0]) < Gem::Version.new("59")
|
|
|
|
abort "Chrome 59 or higher is required to run tests in headless mode."
|
|
|
|
end
|
|
|
|
|
2017-12-22 09:11:49 +08:00
|
|
|
unless system("command -v yarn >/dev/null;")
|
|
|
|
abort "Yarn is not installed. Download from https://yarnpkg.com/lang/en/docs/install/"
|
|
|
|
end
|
|
|
|
|
|
|
|
system("yarn install --dev")
|
2017-12-19 15:59:41 +08:00
|
|
|
|
2013-07-30 12:15:20 +08:00
|
|
|
# ensure we have this port available
|
2017-07-28 09:20:09 +08:00
|
|
|
def port_available?(port)
|
2013-07-30 12:15:20 +08:00
|
|
|
server = TCPServer.open port
|
|
|
|
server.close
|
|
|
|
true
|
|
|
|
rescue Errno::EADDRINUSE
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
2013-06-19 01:44:20 +08:00
|
|
|
port = ENV['TEST_SERVER_PORT'] || 60099
|
2013-07-30 12:15:20 +08:00
|
|
|
|
|
|
|
while !port_available? port
|
|
|
|
port += 1
|
|
|
|
end
|
|
|
|
|
2013-07-30 11:04:29 +08:00
|
|
|
unless pid = fork
|
2014-05-30 12:17:35 +08:00
|
|
|
Discourse.after_fork
|
2017-07-28 09:20:09 +08:00
|
|
|
Rack::Server.start(config: "config.ru",
|
|
|
|
AccessLog: [],
|
|
|
|
Port: port)
|
2013-07-30 11:04:29 +08:00
|
|
|
exit
|
2013-06-19 01:44:20 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
begin
|
|
|
|
success = true
|
|
|
|
test_path = "#{Rails.root}/vendor/assets/javascripts"
|
2017-07-27 23:29:18 +08:00
|
|
|
qunit_path = args[:qunit_path] || "/qunit"
|
2017-12-19 15:59:41 +08:00
|
|
|
cmd = "node #{test_path}/run-qunit.js http://localhost:#{port}#{qunit_path}"
|
2017-12-21 09:47:32 +08:00
|
|
|
options = { seed: (ENV["QUNIT_SEED"] || Random.new.seed) }
|
2016-06-14 10:06:11 +08:00
|
|
|
|
2017-07-26 21:07:46 +08:00
|
|
|
%w{module filter qunit_skip_core qunit_single_plugin}.each do |arg|
|
2016-06-14 10:06:11 +08:00
|
|
|
options[arg] = ENV[arg.upcase] if ENV[arg.upcase].present?
|
|
|
|
end
|
|
|
|
|
|
|
|
if options.present?
|
2017-07-26 21:07:46 +08:00
|
|
|
cmd += "?#{options.to_query.gsub('+', '%20').gsub("&", '\\\&')}"
|
2016-06-14 10:06:11 +08:00
|
|
|
end
|
|
|
|
|
2017-02-24 07:19:34 +08:00
|
|
|
if args[:timeout].present?
|
|
|
|
cmd += " #{args[:timeout]}"
|
|
|
|
end
|
|
|
|
|
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'
|
|
|
|
uri = URI("http://localhost:#{port}/assets/test_helper.js")
|
|
|
|
puts "Warming up Rails server"
|
|
|
|
begin
|
|
|
|
Net::HTTP.get(uri)
|
2017-07-25 23:31:30 +08:00
|
|
|
rescue Errno::ECONNREFUSED, Errno::EADDRNOTAVAIL
|
2017-07-20 00:04:03 +08:00
|
|
|
sleep 1
|
|
|
|
retry unless elapsed() > 60
|
|
|
|
puts "Timed out. Can no connect to forked server!"
|
|
|
|
exit 1
|
|
|
|
end
|
|
|
|
puts "Rails server is warmed up"
|
|
|
|
|
2013-07-30 10:32:12 +08:00
|
|
|
# wait for server to respond, will exception out on failure
|
|
|
|
tries = 0
|
|
|
|
begin
|
2013-07-30 11:04:29 +08:00
|
|
|
sh(cmd)
|
2013-07-30 10:32:12 +08:00
|
|
|
rescue
|
2016-06-14 12:17:39 +08:00
|
|
|
exit if ENV['RETRY'].present? && ENV['RETRY'] == 'false'
|
2013-07-30 10:35:41 +08:00
|
|
|
sleep 2
|
2013-07-30 10:32:12 +08:00
|
|
|
tries += 1
|
2016-11-15 15:23:53 +08:00
|
|
|
retry unless tries == 3
|
2013-07-30 10:32:12 +08:00
|
|
|
end
|
2013-06-19 01:44:20 +08:00
|
|
|
|
|
|
|
# A bit of a hack until we can figure this out on Travis
|
|
|
|
tries = 0
|
2016-11-03 04:46:37 +08:00
|
|
|
while tries < 3 && $?.exitstatus == 124
|
2013-06-19 01:44:20 +08:00
|
|
|
tries += 1
|
|
|
|
puts "\nTimed Out. Trying again...\n"
|
2016-11-15 15:24:19 +08:00
|
|
|
sh(cmd)
|
2013-06-19 01:44:20 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
success &&= $?.success?
|
|
|
|
|
|
|
|
ensure
|
2013-07-30 12:15:20 +08:00
|
|
|
# was having issues with HUP
|
|
|
|
Process.kill "KILL", 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
|