2011-10-04 17:23:51 -04:00
|
|
|
require 'test/unit'
|
2016-02-03 15:06:10 -05:00
|
|
|
require 'test/testhelp'
|
|
|
|
require 'puma'
|
|
|
|
require 'rack/handler/puma'
|
2011-10-04 17:23:51 -04:00
|
|
|
|
|
|
|
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
|
2016-02-03 15:06:10 -05:00
|
|
|
|
|
|
|
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] ||= 9998
|
|
|
|
@server = nil
|
|
|
|
thread = Thread.new do
|
|
|
|
Rack::Handler::Puma.run(app, options) do |s|
|
|
|
|
@server = s
|
|
|
|
end
|
|
|
|
end
|
|
|
|
thread.abort_on_exception = true
|
|
|
|
|
|
|
|
# Wait for server to boot
|
|
|
|
Timeout.timeout(10) do
|
2016-02-04 10:25:04 -05:00
|
|
|
until @server
|
|
|
|
sleep 1
|
2016-02-03 15:06:10 -05:00
|
|
|
end
|
|
|
|
end
|
2016-02-04 10:25:04 -05:00
|
|
|
sleep 1
|
|
|
|
|
2016-02-03 15:06:10 -05:00
|
|
|
yield @server
|
|
|
|
ensure
|
2016-02-04 10:25:04 -05:00
|
|
|
@server.stop if @server
|
|
|
|
thread.join if thread
|
2016-02-03 15:06:10 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
def test_handler_boots
|
|
|
|
in_handler(app) do |server|
|
|
|
|
hit(["http://0.0.0.0:9998/test"])
|
|
|
|
assert_equal("/test", @input["PATH_INFO"])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|