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

207 lines
5 KiB
Ruby
Raw Normal View History

require_relative "helper"
2020-07-12 13:00:29 -04:00
require_relative "helpers/tmp_path"
require "puma/configuration"
require 'puma/events'
class TestLauncher < Minitest::Test
2020-07-12 13:00:29 -04:00
include TmpPath
def test_files_to_require_after_prune_is_correctly_built_for_no_extra_deps
skip_on :no_bundler
dirs = launcher.send(:files_to_require_after_prune)
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
refute_match(%r{gems/rdoc-[\d.]+/lib$}, dirs[2])
end
def test_files_to_require_after_prune_is_correctly_built_with_extra_deps
skip_on :no_bundler
conf = Puma::Configuration.new do |c|
c.extra_runtime_dependencies ['rdoc']
end
dirs = launcher(conf).send(:files_to_require_after_prune)
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
assert_equal([], launcher.send(:extra_runtime_deps_directories))
end
def test_extra_runtime_deps_directories_is_correctly_built
skip_on :no_bundler
conf = Puma::Configuration.new do |c|
c.extra_runtime_dependencies ['rdoc']
end
dep_dirs = launcher(conf).send(:extra_runtime_deps_directories)
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
skip_on :no_bundler
puma_wild_location = launcher.send(:puma_wild_location)
assert_match(%r{bin/puma-wild$}, puma_wild_location)
# assert no "/../" in path
refute_match(%r{/\.\./}, puma_wild_location)
end
def test_prints_thread_traces
launcher.thread_status do |name, _backtrace|
assert_match "Thread: TID", name
end
end
2019-09-20 05:51:57 -04:00
def test_pid_file
2020-07-06 08:10:55 -04:00
pid_path = tmp_path('.pid')
2019-09-20 05:51:57 -04:00
conf = Puma::Configuration.new do |c|
2020-07-06 08:10:55 -04:00
c.pidfile pid_path
2019-09-20 05:51:57 -04:00
end
launcher(conf).write_state
2020-07-06 08:10:55 -04:00
assert_equal File.read(pid_path).strip.to_i, Process.pid
2019-09-20 05:51:57 -04:00
2020-07-06 08:10:55 -04:00
File.unlink pid_path
2019-09-20 05:51:57 -04:00
end
def test_state_permission_0640
2020-07-06 08:10:55 -04:00
state_path = tmp_path('.state')
state_permission = 0640
conf = Puma::Configuration.new do |c|
2020-07-06 08:10:55 -04:00
c.state_path state_path
c.state_permission state_permission
end
launcher(conf).write_state
2020-07-06 08:10:55 -04:00
assert File.stat(state_path).mode.to_s(8)[-4..-1], state_permission
ensure
2020-07-06 08:10:55 -04:00
File.unlink state_path
end
def test_state_permission_nil
2020-07-06 08:10:55 -04:00
state_path = tmp_path('.state')
conf = Puma::Configuration.new do |c|
2020-07-06 08:10:55 -04:00
c.state_path state_path
c.state_permission nil
end
launcher(conf).write_state
2020-07-06 08:10:55 -04:00
assert File.exist?(state_path)
ensure
2020-07-06 08:10:55 -04:00
File.unlink state_path
end
def test_no_state_permission
2020-07-06 08:10:55 -04:00
state_path = tmp_path('.state')
conf = Puma::Configuration.new do |c|
2020-07-06 08:10:55 -04:00
c.state_path state_path
end
launcher(conf).write_state
2020-07-06 08:10:55 -04:00
assert File.exist?(state_path)
ensure
2020-07-06 08:10:55 -04:00
File.unlink state_path
end
2019-09-20 05:51:57 -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 {
sleep 1.1 unless Puma.mri?
launcher.stop
}
launcher.run
sleep 1 unless Puma.mri?
Puma::Server::STAT_METHODS.each do |stat|
assert_includes Puma.stats_hash, stat
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
status = Puma.stats_hash[:worker_status].first[:last_status]
Puma::Server::STAT_METHODS.each do |stat|
assert_includes status, stat
end
launcher.stop
end
launcher.run
end
def test_log_config_enabled
ENV['PUMA_LOG_CONFIG'] = "1"
assert_match(/Configuration:/, launcher.events.stdout.string)
launcher.config.final_options.each do |config_key, _value|
assert_match(/#{config_key}/, launcher.events.stdout.string)
end
ENV.delete('PUMA_LOG_CONFIG')
end
def test_log_config_disabled
refute_match(/Configuration:/, launcher.events.stdout.string)
end
def test_fire_on_stopped
conf = Puma::Configuration.new do |c|
c.app -> {[200, {}, ['']]}
c.port UniquePort.call
end
launcher = launcher(conf)
launcher.events.on_booted {
sleep 1.1 unless Puma.mri?
launcher.stop
}
launcher.events.on_stopped { puts 'on_stopped called' }
out, = capture_io do
launcher.run
end
sleep 0.2 unless Puma.mri?
assert_equal 'on_stopped called', out.strip
end
private
def events
@events ||= Puma::Events.strings
end
def launcher(config = Puma::Configuration.new, evts = events)
@launcher ||= Puma::Launcher.new(config, events: evts)
end
end