2019-09-02 12:10:33 -04:00
|
|
|
require_relative "helper"
|
|
|
|
|
|
|
|
require "puma/configuration"
|
2020-04-14 00:06:30 -04:00
|
|
|
require 'puma/events'
|
2019-09-02 12:10:33 -04:00
|
|
|
|
|
|
|
class TestLauncher < Minitest::Test
|
|
|
|
def test_dependencies_and_files_to_require_after_prune_is_correctly_built_for_no_extra_deps
|
2019-09-13 12:44:02 -04:00
|
|
|
skip_on :no_bundler
|
2019-09-02 12:10:33 -04:00
|
|
|
|
2019-09-13 12:44:02 -04:00
|
|
|
deps, dirs = launcher.send(:dependencies_and_files_to_require_after_prune)
|
2019-09-02 12:10:33 -04:00
|
|
|
|
|
|
|
assert_equal(1, deps.length)
|
|
|
|
assert_match(%r{^nio4r:[\d.]+$}, deps.first)
|
|
|
|
assert_equal(2, dirs.length)
|
|
|
|
assert_match(%r{puma/lib$}, dirs[0]) # lib dir
|
|
|
|
assert_match(%r{puma-#{Puma::Const::PUMA_VERSION}$}, dirs[1]) # native extension dir
|
2019-09-13 12:44:02 -04:00
|
|
|
refute_match(%r{gems/rdoc-[\d.]+/lib$}, dirs[2])
|
2019-09-02 12:10:33 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_dependencies_and_files_to_require_after_prune_is_correctly_built_with_extra_deps
|
2019-09-13 12:44:02 -04:00
|
|
|
skip_on :no_bundler
|
2019-09-02 12:10:33 -04:00
|
|
|
conf = Puma::Configuration.new do |c|
|
|
|
|
c.extra_runtime_dependencies ['rdoc']
|
|
|
|
end
|
2019-09-13 12:44:02 -04:00
|
|
|
|
|
|
|
deps, dirs = launcher(conf).send(:dependencies_and_files_to_require_after_prune)
|
2019-09-02 12:10:33 -04:00
|
|
|
|
|
|
|
assert_equal(1, deps.length)
|
|
|
|
assert_match(%r{^nio4r:[\d.]+$}, deps.first)
|
|
|
|
assert_equal(3, dirs.length)
|
|
|
|
assert_match(%r{puma/lib$}, dirs[0]) # lib dir
|
|
|
|
assert_match(%r{puma-#{Puma::Const::PUMA_VERSION}$}, dirs[1]) # native extension dir
|
|
|
|
assert_match(%r{gems/rdoc-[\d.]+/lib$}, dirs[2]) # rdoc dir
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_extra_runtime_deps_directories_is_empty_for_no_config
|
2019-09-13 12:44:02 -04:00
|
|
|
assert_equal([], launcher.send(:extra_runtime_deps_directories))
|
2019-09-02 12:10:33 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_extra_runtime_deps_directories_is_correctly_built
|
2019-09-13 12:44:02 -04:00
|
|
|
skip_on :no_bundler
|
2019-09-02 12:10:33 -04:00
|
|
|
conf = Puma::Configuration.new do |c|
|
|
|
|
c.extra_runtime_dependencies ['rdoc']
|
|
|
|
end
|
2019-09-13 12:44:02 -04:00
|
|
|
dep_dirs = launcher(conf).send(:extra_runtime_deps_directories)
|
2019-09-02 12:10:33 -04:00
|
|
|
|
|
|
|
assert_equal(1, dep_dirs.length)
|
|
|
|
assert_match(%r{gems/rdoc-[\d.]+/lib$}, dep_dirs.first)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_puma_wild_location_is_an_absolute_path
|
2019-09-13 12:44:02 -04:00
|
|
|
skip_on :no_bundler
|
|
|
|
puma_wild_location = launcher.send(:puma_wild_location)
|
|
|
|
|
2019-09-02 12:10:33 -04:00
|
|
|
assert_match(%r{bin/puma-wild$}, puma_wild_location)
|
|
|
|
# assert no "/../" in path
|
|
|
|
refute_match(%r{/\.\./}, puma_wild_location)
|
|
|
|
end
|
2019-09-12 05:59:54 -04:00
|
|
|
|
|
|
|
def test_prints_thread_traces
|
2019-11-11 00:08:41 -05:00
|
|
|
launcher.thread_status do |name, _backtrace|
|
|
|
|
assert_match "Thread: TID", name
|
|
|
|
end
|
2019-09-12 05:59:54 -04:00
|
|
|
end
|
2019-09-13 12:44:02 -04:00
|
|
|
|
2019-09-20 05:51:57 -04:00
|
|
|
def test_pid_file
|
|
|
|
tmp_file = Tempfile.new("puma-test")
|
|
|
|
tmp_path = tmp_file.path
|
|
|
|
tmp_file.close!
|
|
|
|
|
|
|
|
conf = Puma::Configuration.new do |c|
|
|
|
|
c.pidfile tmp_path
|
|
|
|
end
|
|
|
|
|
|
|
|
launcher(conf).write_state
|
|
|
|
|
|
|
|
assert_equal File.read(tmp_path).strip.to_i, Process.pid
|
|
|
|
|
|
|
|
File.unlink tmp_path
|
|
|
|
end
|
2020-05-06 23:13:35 -04:00
|
|
|
|
|
|
|
def test_state_permission_0640
|
|
|
|
tmp_file = Tempfile.new("puma-test")
|
|
|
|
tmp_path = tmp_file.path
|
|
|
|
tmp_file.close!
|
|
|
|
tmp_permission = 0640
|
|
|
|
|
|
|
|
conf = Puma::Configuration.new do |c|
|
|
|
|
c.state_path tmp_path
|
|
|
|
c.state_permission tmp_permission
|
|
|
|
end
|
|
|
|
|
|
|
|
launcher(conf).write_state
|
|
|
|
|
|
|
|
assert File.stat(tmp_path).mode.to_s(8)[-4..-1], tmp_permission
|
|
|
|
ensure
|
|
|
|
File.unlink tmp_path
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_state_permission_nil
|
|
|
|
tmp_file = Tempfile.new("puma-test")
|
|
|
|
tmp_path = tmp_file.path
|
|
|
|
tmp_file.close!
|
|
|
|
|
|
|
|
conf = Puma::Configuration.new do |c|
|
|
|
|
c.state_path tmp_path
|
|
|
|
c.state_permission nil
|
|
|
|
end
|
|
|
|
|
|
|
|
launcher(conf).write_state
|
|
|
|
|
|
|
|
assert File.exist?(tmp_path)
|
|
|
|
ensure
|
|
|
|
File.unlink tmp_path
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_no_state_permission
|
|
|
|
tmp_file = Tempfile.new("puma-test")
|
|
|
|
tmp_path = tmp_file.path
|
|
|
|
tmp_file.close!
|
|
|
|
|
|
|
|
conf = Puma::Configuration.new do |c|
|
|
|
|
c.state_path tmp_path
|
|
|
|
end
|
|
|
|
|
|
|
|
launcher(conf).write_state
|
|
|
|
|
|
|
|
assert File.exist?(tmp_path)
|
|
|
|
ensure
|
|
|
|
File.unlink tmp_path
|
|
|
|
end
|
2019-09-20 05:51:57 -04:00
|
|
|
|
2020-04-14 00:06:30 -04:00
|
|
|
def test_puma_stats
|
|
|
|
conf = Puma::Configuration.new do |c|
|
|
|
|
c.app -> {[200, {}, ['']]}
|
|
|
|
c.clear_binds!
|
|
|
|
end
|
|
|
|
launcher = launcher(conf)
|
|
|
|
launcher.events.on_booted {launcher.stop}
|
|
|
|
launcher.run
|
|
|
|
Puma::Server::STAT_METHODS.each do |stat|
|
2020-05-10 21:20:19 -04:00
|
|
|
assert_includes Puma.stats_hash, stat
|
2020-04-14 00:06:30 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_puma_stats_clustered
|
|
|
|
skip NO_FORK_MSG unless HAS_FORK
|
|
|
|
|
|
|
|
conf = Puma::Configuration.new do |c|
|
|
|
|
c.app -> {[200, {}, ['']]}
|
|
|
|
c.workers 1
|
|
|
|
c.clear_binds!
|
|
|
|
end
|
|
|
|
launcher = launcher(conf)
|
|
|
|
Thread.new do
|
|
|
|
sleep Puma::Const::WORKER_CHECK_INTERVAL + 1
|
2020-05-10 21:20:19 -04:00
|
|
|
status = Puma.stats_hash[:worker_status].first[:last_status]
|
2020-04-14 00:06:30 -04:00
|
|
|
Puma::Server::STAT_METHODS.each do |stat|
|
|
|
|
assert_includes status, stat
|
|
|
|
end
|
|
|
|
launcher.stop
|
|
|
|
end
|
|
|
|
launcher.run
|
|
|
|
end
|
|
|
|
|
2019-09-13 12:44:02 -04:00
|
|
|
private
|
|
|
|
|
|
|
|
def events
|
|
|
|
@events ||= Puma::Events.strings
|
|
|
|
end
|
|
|
|
|
|
|
|
def launcher(config = Puma::Configuration.new, evts = events)
|
|
|
|
@launcher ||= Puma::Launcher.new(config, events: evts)
|
|
|
|
end
|
2019-09-02 12:10:33 -04:00
|
|
|
end
|