mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
a much more robust qunit daemonizer
This commit is contained in:
parent
7e5c7f5987
commit
9749001b54
1 changed files with 17 additions and 1 deletions
|
@ -3,12 +3,27 @@ desc "Runs the qunit test suite"
|
|||
task "qunit:test" => :environment do
|
||||
|
||||
require "rack"
|
||||
require "socket"
|
||||
|
||||
unless %x{which phantomjs > /dev/null 2>&1}
|
||||
abort "PhantomJS is not installed. Download from http://phantomjs.org"
|
||||
end
|
||||
|
||||
# ensure we have this port available
|
||||
def port_available? port
|
||||
server = TCPServer.open port
|
||||
server.close
|
||||
true
|
||||
rescue Errno::EADDRINUSE
|
||||
false
|
||||
end
|
||||
|
||||
port = ENV['TEST_SERVER_PORT'] || 60099
|
||||
|
||||
while !port_available? port
|
||||
port += 1
|
||||
end
|
||||
|
||||
unless pid = fork
|
||||
Rack::Server.start(:config => "config.ru",
|
||||
:AccessLog => [],
|
||||
|
@ -42,7 +57,8 @@ task "qunit:test" => :environment do
|
|||
success &&= $?.success?
|
||||
|
||||
ensure
|
||||
Process.kill "HUP", pid
|
||||
# was having issues with HUP
|
||||
Process.kill "KILL", pid
|
||||
end
|
||||
|
||||
if success
|
||||
|
|
Loading…
Reference in a new issue