mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
9d93a0f62f
running `rake` loads all files starting with `test_` which is not supposed to also load the helper, since the helper should be loaded by each test and is not a test itself.
36 lines
609 B
Ruby
36 lines
609 B
Ruby
require_relative "helper"
|
|
|
|
require "puma/events"
|
|
|
|
class TestTCPRack < Minitest::Test
|
|
|
|
def setup
|
|
@port = 3212
|
|
@host = "127.0.0.1"
|
|
|
|
@events = Puma::Events.new STDOUT, STDERR
|
|
@server = Puma::Server.new nil, @events
|
|
end
|
|
|
|
def teardown
|
|
@server.stop(true)
|
|
end
|
|
|
|
def test_passes_the_socket
|
|
@server.tcp_mode!
|
|
|
|
body = "We sell hats for a discount!\n"
|
|
|
|
@server.app = proc do |env, socket|
|
|
socket << body
|
|
socket.close
|
|
end
|
|
|
|
@server.add_tcp_listener @host, @port
|
|
@server.run
|
|
|
|
sock = TCPSocket.new @host, @port
|
|
|
|
assert_equal body, sock.read
|
|
end
|
|
end
|