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
MSP-Greg 3066498c16 fix test/test_unix_socket.rb (#1870)
Fix to work reliably on platforms without UNIXSockets
2019-07-29 18:16:09 -07:00

33 lines
671 B
Ruby

# frozen_string_literal: true
require_relative "helper"
class TestPumaUnixSocket < Minitest::Test
App = lambda { |env| [200, {}, ["Works"]] }
Path = "test/puma.sock"
def setup
return unless UNIX_SKT_EXIST
@server = Puma::Server.new App
@server.add_unix_listener Path
@server.run
end
def teardown
return unless UNIX_SKT_EXIST
@server.stop(true)
end
def test_server
skip UNIX_SKT_MSG unless UNIX_SKT_EXIST
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)
end
end