2017-05-12 15:16:55 -04:00
|
|
|
require_relative "helper"
|
2019-10-18 01:49:05 -04:00
|
|
|
require_relative "helpers/config_file"
|
2019-11-02 14:51:46 -04:00
|
|
|
require_relative "helpers/ssl"
|
2017-03-10 11:02:34 -05:00
|
|
|
|
2019-10-29 17:42:35 -04:00
|
|
|
require 'pathname'
|
2017-03-10 11:02:34 -05:00
|
|
|
require 'puma/control_cli'
|
|
|
|
|
2019-10-18 01:49:05 -04:00
|
|
|
class TestPumaControlCli < TestConfigFileBase
|
2019-11-02 14:51:46 -04:00
|
|
|
include SSLHelper
|
|
|
|
|
2018-05-09 14:38:12 -04:00
|
|
|
def setup
|
|
|
|
# use a pipe to get info across thread boundary
|
|
|
|
@wait, @ready = IO.pipe
|
|
|
|
end
|
|
|
|
|
|
|
|
def wait_booted
|
2019-11-02 14:51:46 -04:00
|
|
|
line = @wait.gets until line =~ /Use Ctrl-C to stop/
|
2018-05-09 14:38:12 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def teardown
|
|
|
|
@wait.close
|
|
|
|
@ready.close
|
|
|
|
end
|
|
|
|
|
|
|
|
def find_open_port
|
2018-07-14 21:11:00 -04:00
|
|
|
server = TCPServer.new("127.0.0.1", 0)
|
|
|
|
server.addr[1]
|
|
|
|
ensure
|
|
|
|
server.close
|
2018-05-09 14:38:12 -04:00
|
|
|
end
|
|
|
|
|
2019-10-18 01:49:05 -04:00
|
|
|
def with_config_file(path_to_config, port)
|
|
|
|
path = Pathname.new(path_to_config)
|
|
|
|
Dir.mktmpdir do |tmp_dir|
|
|
|
|
Dir.chdir(tmp_dir) do
|
|
|
|
FileUtils.mkdir_p(path.dirname)
|
|
|
|
File.open(path, "w") { |f| f << "port #{port}" }
|
|
|
|
yield
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-03-10 11:02:34 -05:00
|
|
|
def test_config_file
|
2017-03-10 11:30:27 -05:00
|
|
|
control_cli = Puma::ControlCLI.new ["--config-file", "test/config/state_file_testing_config.rb", "halt"]
|
|
|
|
assert_equal "t3-pid", control_cli.instance_variable_get("@pidfile")
|
2017-03-10 11:02:34 -05:00
|
|
|
end
|
2018-05-09 14:38:12 -04:00
|
|
|
|
2019-10-18 01:49:05 -04:00
|
|
|
def test_rack_env_without_environment
|
|
|
|
with_env("RACK_ENV" => "test") do
|
|
|
|
control_cli = Puma::ControlCLI.new ["halt"]
|
|
|
|
assert_equal "test", control_cli.instance_variable_get("@environment")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_environment_without_rack_env
|
2019-11-11 00:10:02 -05:00
|
|
|
with_env("RACK_ENV" => nil, 'RAILS_ENV' => nil) do
|
2019-10-18 01:49:05 -04:00
|
|
|
control_cli = Puma::ControlCLI.new ["halt"]
|
|
|
|
assert_nil control_cli.instance_variable_get("@environment")
|
|
|
|
|
|
|
|
control_cli = Puma::ControlCLI.new ["-e", "test", "halt"]
|
|
|
|
assert_equal "test", control_cli.instance_variable_get("@environment")
|
|
|
|
end
|
2019-08-10 14:34:35 -04:00
|
|
|
end
|
|
|
|
|
2019-10-18 01:49:05 -04:00
|
|
|
def test_environment_with_rack_env
|
|
|
|
with_env("RACK_ENV" => "production") do
|
|
|
|
control_cli = Puma::ControlCLI.new ["halt"]
|
|
|
|
assert_equal "production", control_cli.instance_variable_get("@environment")
|
|
|
|
|
|
|
|
control_cli = Puma::ControlCLI.new ["-e", "test", "halt"]
|
|
|
|
assert_equal "test", control_cli.instance_variable_get("@environment")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_environment_specific_config_file_exist
|
|
|
|
port = 6002
|
|
|
|
puma_config_file = "config/puma.rb"
|
|
|
|
production_config_file = "config/puma/production.rb"
|
|
|
|
|
|
|
|
with_env("RACK_ENV" => nil) do
|
|
|
|
with_config_file(puma_config_file, port) do
|
|
|
|
control_cli = Puma::ControlCLI.new ["-e", "production", "halt"]
|
|
|
|
assert_equal puma_config_file, control_cli.instance_variable_get("@config_file")
|
|
|
|
end
|
|
|
|
|
|
|
|
with_config_file(production_config_file, port) do
|
|
|
|
control_cli = Puma::ControlCLI.new ["-e", "production", "halt"]
|
|
|
|
assert_equal production_config_file, control_cli.instance_variable_get("@config_file")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_default_config_file_exist
|
2019-08-10 14:34:35 -04:00
|
|
|
port = 6001
|
2019-10-18 01:49:05 -04:00
|
|
|
puma_config_file = "config/puma.rb"
|
|
|
|
development_config_file = "config/puma/development.rb"
|
|
|
|
|
2019-11-11 00:10:02 -05:00
|
|
|
with_env("RACK_ENV" => nil, 'RAILS_ENV' => nil) do
|
2019-10-18 01:49:05 -04:00
|
|
|
with_config_file(puma_config_file, port) do
|
2019-08-10 14:34:35 -04:00
|
|
|
control_cli = Puma::ControlCLI.new ["halt"]
|
2019-10-18 01:49:05 -04:00
|
|
|
assert_equal puma_config_file, control_cli.instance_variable_get("@config_file")
|
2019-08-10 14:34:35 -04:00
|
|
|
end
|
2019-10-18 01:49:05 -04:00
|
|
|
|
|
|
|
with_config_file(development_config_file, port) do
|
2019-08-10 14:34:35 -04:00
|
|
|
control_cli = Puma::ControlCLI.new ["halt"]
|
2019-10-18 01:49:05 -04:00
|
|
|
assert_equal development_config_file, control_cli.instance_variable_get("@config_file")
|
2019-08-10 14:34:35 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-05-28 09:37:34 -04:00
|
|
|
def test_control_no_token
|
|
|
|
opts = [
|
|
|
|
"--config-file", "test/config/control_no_token.rb",
|
|
|
|
"start"
|
|
|
|
]
|
|
|
|
|
|
|
|
control_cli = Puma::ControlCLI.new opts, @ready, @ready
|
|
|
|
assert_equal 'none', control_cli.instance_variable_get("@control_auth_token")
|
|
|
|
end
|
|
|
|
|
2019-06-23 20:36:06 -04:00
|
|
|
def test_control_url_and_status
|
2018-05-09 14:38:12 -04:00
|
|
|
host = "127.0.0.1"
|
|
|
|
port = find_open_port
|
|
|
|
url = "tcp://#{host}:#{port}/"
|
|
|
|
|
|
|
|
opts = [
|
|
|
|
"--control-url", url,
|
|
|
|
"--control-token", "ctrl",
|
|
|
|
"--config-file", "test/config/app.rb",
|
|
|
|
]
|
|
|
|
|
|
|
|
control_cli = Puma::ControlCLI.new (opts + ["start"]), @ready, @ready
|
|
|
|
t = Thread.new do
|
|
|
|
control_cli.run
|
|
|
|
end
|
|
|
|
|
|
|
|
wait_booted
|
|
|
|
|
|
|
|
s = TCPSocket.new host, 9292
|
|
|
|
s << "GET / HTTP/1.0\r\n\r\n"
|
|
|
|
body = s.read
|
|
|
|
assert_match "200 OK", body
|
|
|
|
assert_match "embedded app", body
|
|
|
|
|
2019-11-02 14:51:46 -04:00
|
|
|
assert_command_cli_output opts + ["status"], "Puma is started"
|
|
|
|
assert_command_cli_output opts + ["stop"], "Command stop sent success"
|
2018-05-09 14:38:12 -04:00
|
|
|
|
2019-11-02 14:51:46 -04:00
|
|
|
assert_kind_of Thread, t.join, "server didn't stop"
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_control_ssl
|
|
|
|
host = "127.0.0.1"
|
|
|
|
port = find_open_port
|
|
|
|
url = "ssl://#{host}:#{port}?#{ssl_query}"
|
|
|
|
|
|
|
|
opts = [
|
|
|
|
"--control-url", url,
|
|
|
|
"--control-token", "ctrl",
|
|
|
|
"--config-file", "test/config/app.rb",
|
|
|
|
]
|
|
|
|
|
|
|
|
control_cli = Puma::ControlCLI.new (opts + ["start"]), @ready, @ready
|
|
|
|
t = Thread.new do
|
|
|
|
control_cli.run
|
2019-06-23 20:36:06 -04:00
|
|
|
end
|
2019-11-02 14:51:46 -04:00
|
|
|
|
|
|
|
wait_booted
|
|
|
|
|
|
|
|
assert_command_cli_output opts + ["status"], "Puma is started"
|
|
|
|
assert_command_cli_output opts + ["stop"], "Command stop sent success"
|
2018-05-09 14:38:12 -04:00
|
|
|
|
2019-06-23 20:36:06 -04:00
|
|
|
assert_kind_of Thread, t.join, "server didn't stop"
|
2018-05-09 14:38:12 -04:00
|
|
|
end
|
2019-11-02 14:51:46 -04:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def assert_command_cli_output(options, expected_out)
|
|
|
|
cmd = Puma::ControlCLI.new(options)
|
|
|
|
out, _ = capture_subprocess_io do
|
|
|
|
cmd.run
|
|
|
|
end
|
|
|
|
assert_match expected_out, out
|
|
|
|
end
|
2017-03-10 11:02:34 -05:00
|
|
|
end
|