1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00
puma--puma/test/test_rack_handler.rb
2016-02-06 19:00:29 -08:00

58 lines
1.2 KiB
Ruby

require 'test/unit'
require 'test/testhelp'
require 'puma'
require 'rack/handler/puma'
class TestPumaUnixSocket < Test::Unit::TestCase
def test_handler
handler = Rack::Handler.get(:puma)
assert_equal Rack::Handler::Puma, handler
handler = Rack::Handler.get('Puma')
assert_equal Rack::Handler::Puma, handler
end
end
class TestPathHandler < Test::Unit::TestCase
def app
Proc.new {|env| @input = env; [200, {}, ["hello world"]]}
end
def setup
@input = nil
end
def in_handler(app, options = {})
options[:Port] ||= 0
options[:Silent] = true
@launcher = nil
thread = Thread.new do
Rack::Handler::Puma.run(app, options) do |s, p|
@launcher = s
end
end
thread.abort_on_exception = true
# Wait for launcher to boot
Timeout.timeout(10) do
until @launcher
sleep 1
end
end
sleep 1
yield @launcher
ensure
@launcher.stop if @launcher
thread.join if thread
end
def test_handler_boots
in_handler(app) do |launcher|
hit(["http://0.0.0.0:#{ launcher.connected_port }/test"])
assert_equal("/test", @input["PATH_INFO"])
end
end
end