2016-11-22 10:05:49 -05:00
|
|
|
require "test_helper"
|
2011-09-27 13:53:45 -04:00
|
|
|
|
2011-11-22 14:43:54 -05:00
|
|
|
# UNIX sockets are not recommended on JRuby
|
2012-01-08 14:55:57 -05:00
|
|
|
# (or Windows)
|
|
|
|
unless defined?(JRUBY_VERSION) || RbConfig::CONFIG["host_os"] =~ /mingw|mswin/
|
2016-11-22 10:05:49 -05:00
|
|
|
class TestPumaUnixSocket < Minitest::Test
|
2015-02-19 08:43:17 -05:00
|
|
|
|
2011-11-22 14:43:54 -05:00
|
|
|
App = lambda { |env| [200, {}, ["Works"]] }
|
2015-02-19 08:43:17 -05:00
|
|
|
|
2011-11-22 14:43:54 -05:00
|
|
|
Path = "test/puma.sock"
|
2015-02-19 08:43:17 -05:00
|
|
|
|
2011-11-22 14:43:54 -05:00
|
|
|
def setup
|
|
|
|
@server = Puma::Server.new App
|
|
|
|
@server.add_unix_listener Path
|
|
|
|
@server.run
|
|
|
|
end
|
2015-02-19 08:43:17 -05:00
|
|
|
|
2011-11-22 14:43:54 -05:00
|
|
|
def teardown
|
|
|
|
@server.stop(true)
|
2014-01-25 17:50:40 -05:00
|
|
|
File.unlink Path if File.exist? Path
|
2011-11-22 14:43:54 -05:00
|
|
|
end
|
2015-02-19 08:43:17 -05:00
|
|
|
|
2011-11-22 14:43:54 -05:00
|
|
|
def test_server
|
|
|
|
sock = UNIXSocket.new Path
|
2015-02-19 08:43:17 -05:00
|
|
|
|
2011-11-22 14:43:54 -05:00
|
|
|
sock << "GET / HTTP/1.0\r\nHost: blah.com\r\n\r\n"
|
2015-02-19 08:43:17 -05:00
|
|
|
|
|
|
|
expected = "HTTP/1.0 200 OK\r\nContent-Length: 5\r\n\r\nWorks"
|
|
|
|
|
2011-11-22 14:43:54 -05:00
|
|
|
assert_equal expected, sock.read(expected.size)
|
2015-02-19 08:43:17 -05:00
|
|
|
|
2011-11-22 14:43:54 -05:00
|
|
|
sock.close
|
|
|
|
end
|
2011-09-27 13:53:45 -04:00
|
|
|
end
|
2012-01-08 14:55:57 -05:00
|
|
|
end
|