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

Add integration test

This commit is contained in:
Evan Phoenix 2011-12-07 13:43:16 -08:00
parent e88fc14952
commit 2e71e19630

34
test/test_integration.rb Normal file
View file

@ -0,0 +1,34 @@
require 'test/unit'
require 'rubygems'
class TestIntegration < Test::Unit::TestCase
def setup
@state_path = "test/test_puma.state"
@bind_path = "test/test_server.sock"
@control_path = "test/test_control.sock"
end
def teardown
File.unlink @state_path rescue nil
File.unlink @bind_path rescue nil
File.unlink @control_path rescue nil
end
def test_stop_via_pumactl
status = nil
io = IO.popen "#{Gem.ruby} -Ilib bin/puma -S #{@state_path} -b unix://#{@bind_path} --control unix://#{@control_path} test/lobster.ru 2>&1", "r"
line = nil
until /Use Ctrl-C to stop/ =~ line.to_s
line = io.gets
end
`#{Gem.ruby} -Ilib bin/pumactl -S #{@state_path} stop 2>&1`
pid, status = Process.wait2(io.pid)
assert_equal 0, status.to_i
end
end