1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
# frozen_string_literal: true
require_relative "helper"
require_relative "helpers/integration"
require "puma/plugin"
class TestPluginSystemdJruby < TestIntegration
def setup
skip_unless :linux
skip_unless :unix
skip_unless_signal_exist? :TERM
skip_unless :jruby
super
end
def teardown
super unless skipped?
end
def test_systemd_plugin_not_loaded
cli_server "test/rackup/hello.ru",
env: {'NOTIFY_SOCKET' => '/tmp/doesntmatter' }, config: <<~CONFIG
app do |_|
[200, {}, [Puma::Plugins.instance_variable_get(:@plugins)['systemd'].to_s]]
end
CONFIG
assert_empty read_body(connect)
stop_server
end
end
|