mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
8256228e69
MINOR Updated jQuery.concrete references to point to the new "entwine" name git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@102695 467b73ca-7a2a-4603-9d3b-597d59a354a9
88 lines
1.7 KiB
Ruby
88 lines
1.7 KiB
Ruby
|
|
$:.unshift File.dirname(__FILE__)
|
|
|
|
require 'sinatra'
|
|
require 'thread'
|
|
require 'browsers'
|
|
require 'helpers'
|
|
require 'routes'
|
|
|
|
module JSpec
|
|
class Server
|
|
|
|
##
|
|
# Suite HTML.
|
|
|
|
attr_accessor :suite
|
|
|
|
##
|
|
# Host string.
|
|
|
|
attr_reader :host
|
|
|
|
##
|
|
# Port number.
|
|
|
|
attr_reader :port
|
|
|
|
##
|
|
# Server instance.
|
|
|
|
attr_reader :server
|
|
|
|
##
|
|
# Initialize.
|
|
|
|
def initialize suite, port
|
|
@suite, @port, @host = suite, port, :localhost
|
|
end
|
|
|
|
##
|
|
# URI formed by the given host and port.
|
|
|
|
def uri
|
|
'http://%s:%d' % [host, port]
|
|
end
|
|
|
|
##
|
|
# Start the server with _browsers_ which defaults to all supported browsers.
|
|
|
|
def start browsers = nil
|
|
browsers ||= Browser.subclasses.map { |browser| browser.new }
|
|
browsers.map do |browser|
|
|
Thread.new {
|
|
sleep 1
|
|
if browser.supported?
|
|
browser.setup
|
|
browser.visit uri + '/' + suite
|
|
browser.teardown
|
|
end
|
|
}
|
|
end.push(Thread.new {
|
|
start!
|
|
}).reverse.each { |thread| thread.join }
|
|
end
|
|
|
|
private
|
|
|
|
#:nodoc:
|
|
|
|
def start!
|
|
Sinatra::Application.class_eval do
|
|
begin
|
|
$stderr.puts 'Started JSpec server at http://%s:%d' % [host, port.to_i]
|
|
detect_rack_handler.run self, :Host => host, :Port => port do |server|
|
|
trap 'INT' do
|
|
server.respond_to?(:stop!) ? server.stop! : server.stop
|
|
end
|
|
end
|
|
rescue Errno::EADDRINUSE
|
|
raise "Port #{port} already in use"
|
|
rescue Errno::EACCES
|
|
raise "Permission Denied on port #{port}"
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|
|
end |