2016-11-22 10:05:49 -05:00
|
|
|
require "test_helper"
|
2011-10-04 17:23:51 -04:00
|
|
|
|
2016-11-22 10:05:49 -05:00
|
|
|
require "rack/handler/puma"
|
|
|
|
|
|
|
|
class TestPumaUnixSocket < Minitest::Test
|
2011-10-04 17:23:51 -04:00
|
|
|
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
|
|
|
|
2016-11-22 10:05:49 -05:00
|
|
|
class TestPathHandler < Minitest::Test
|
2016-02-03 15:06:10 -05:00
|
|
|
def app
|
|
|
|
Proc.new {|env| @input = env; [200, {}, ["hello world"]]}
|
|
|
|
end
|
|
|
|
|
|
|
|
def setup
|
|
|
|
@input = nil
|
|
|
|
end
|
|
|
|
|
|
|
|
def in_handler(app, options = {})
|
2016-02-04 17:36:24 -05:00
|
|
|
options[:Port] ||= 0
|
2016-02-06 22:00:29 -05:00
|
|
|
options[:Silent] = true
|
|
|
|
|
2016-02-04 17:36:24 -05:00
|
|
|
@launcher = nil
|
2016-02-03 15:06:10 -05:00
|
|
|
thread = Thread.new do
|
2016-02-04 17:36:24 -05:00
|
|
|
Rack::Handler::Puma.run(app, options) do |s, p|
|
|
|
|
@launcher = s
|
2016-02-03 15:06:10 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
thread.abort_on_exception = true
|
|
|
|
|
2016-02-04 17:36:24 -05:00
|
|
|
# Wait for launcher to boot
|
2016-02-03 15:06:10 -05:00
|
|
|
Timeout.timeout(10) do
|
2016-02-04 17:36:24 -05:00
|
|
|
until @launcher
|
2016-02-04 10:25:04 -05:00
|
|
|
sleep 1
|
2016-02-03 15:06:10 -05:00
|
|
|
end
|
|
|
|
end
|
2016-02-04 10:25:04 -05:00
|
|
|
sleep 1
|
|
|
|
|
2016-02-04 17:36:24 -05:00
|
|
|
yield @launcher
|
2016-02-03 15:06:10 -05:00
|
|
|
ensure
|
2016-02-04 17:36:24 -05:00
|
|
|
@launcher.stop if @launcher
|
2016-02-04 10:25:04 -05:00
|
|
|
thread.join if thread
|
2016-02-03 15:06:10 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
def test_handler_boots
|
2016-02-04 17:36:24 -05:00
|
|
|
in_handler(app) do |launcher|
|
|
|
|
hit(["http://0.0.0.0:#{ launcher.connected_port }/test"])
|
2016-02-03 15:06:10 -05:00
|
|
|
assert_equal("/test", @input["PATH_INFO"])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|