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_unix_socket.rb

33 lines
642 B
Ruby
Raw Normal View History

require_relative "helper"
2011-09-27 13:53:45 -04:00
class TestPumaUnixSocket < Minitest::Test
App = lambda { |env| [200, {}, ["Works"]] }
Path = "test/puma.sock"
def setup
2019-02-20 15:15:55 -05:00
skip UNIX_SKT_MSG unless UNIX_SKT_EXIST
@server = Puma::Server.new App
@server.add_unix_listener Path
@server.run
end
def teardown
@server.stop(true) if @server
File.unlink Path if File.exist? Path
end
def test_server
sock = UNIXSocket.new Path
sock << "GET / HTTP/1.0\r\nHost: blah.com\r\n\r\n"
expected = "HTTP/1.0 200 OK\r\nContent-Length: 5\r\n\r\nWorks"
assert_equal expected, sock.read(expected.size)
sock.close
2011-09-27 13:53:45 -04:00
end
2012-01-08 14:55:57 -05:00
end