mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00

Moves the require for puma/events from the individual test files and into the main test helper. The reason for this was while I was debugging the `test_puma_server.rb` tests I was getting an error for an uninitialized constant for `Puma::Event`. Moving the require from the individual files to the test help means the `puma/events` will always be included instead of having to remember to do that. It makes debugging individual tests locally easier.
34 lines
586 B
Ruby
34 lines
586 B
Ruby
require_relative "helper"
|
|
|
|
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
|