discourse/lib/tasks/qunit.rake

113 lines
2.5 KiB
Ruby
Raw Normal View History

desc "Runs the qunit test suite"
task "qunit:test", [:timeout, :qunit_path, :use_chrome] => :environment do |_, args|
require "rack"
2013-07-30 00:15:20 -04:00
require "socket"
unless %x{which phantomjs > /dev/null 2>&1} || args[:use_chrome]
abort "PhantomJS is not installed. Download from http://phantomjs.org"
end
2013-07-30 00:15:20 -04:00
# ensure we have this port available
2017-07-27 21:20:09 -04:00
def port_available?(port)
2013-07-30 00:15:20 -04:00
server = TCPServer.open port
server.close
true
rescue Errno::EADDRINUSE
false
end
port = ENV['TEST_SERVER_PORT'] || 60099
2013-07-30 00:15:20 -04:00
while !port_available? port
port += 1
end
2013-07-29 23:04:29 -04:00
unless pid = fork
Discourse.after_fork
2017-07-27 21:20:09 -04:00
Rack::Server.start(config: "config.ru",
AccessLog: [],
Port: port)
2013-07-29 23:04:29 -04:00
exit
end
begin
success = true
test_path = "#{Rails.root}/vendor/assets/javascripts"
2017-07-27 11:29:18 -04:00
qunit_path = args[:qunit_path] || "/qunit"
if args[:use_chrome]
cmd = "node #{test_path}/run-qunit-chrome.js http://localhost:#{port}#{qunit_path}"
else
cmd = "phantomjs #{test_path}/run-qunit.js http://localhost:#{port}#{qunit_path}"
end
options = {}
%w{module filter qunit_skip_core qunit_single_plugin}.each do |arg|
options[arg] = ENV[arg.upcase] if ENV[arg.upcase].present?
end
if options.present?
cmd += "?#{options.to_query.gsub('+', '%20').gsub("&", '\\\&')}"
end
if args[:timeout].present?
cmd += " #{args[:timeout]}"
end
2017-07-19 12:04:03 -04: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)
rescue Errno::ECONNREFUSED, Errno::EADDRNOTAVAIL
2017-07-19 12:04:03 -04: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"
# wait for server to respond, will exception out on failure
tries = 0
begin
2013-07-29 23:04:29 -04:00
sh(cmd)
rescue
2016-06-14 00:17:39 -04:00
exit if ENV['RETRY'].present? && ENV['RETRY'] == 'false'
2013-07-29 22:35:41 -04:00
sleep 2
tries += 1
retry unless tries == 3
end
# A bit of a hack until we can figure this out on Travis
tries = 0
2016-11-02 16:46:37 -04:00
while tries < 3 && $?.exitstatus == 124
tries += 1
puts "\nTimed Out. Trying again...\n"
2016-11-15 02:24:19 -05:00
sh(cmd)
end
success &&= $?.success?
ensure
2013-07-30 00:15:20 -04:00
# was having issues with HUP
Process.kill "KILL", pid
end
if success
puts "\nTests Passed"
else
puts "\nTests Failed"
exit(1)
end
end