Sha256: f5d495dddff6e1319c284bdc101e43fc8b35a3eefc42a04d99b238d1da185a63

Contents?: true

Size: 983 Bytes

Versions: 1

Compression:

Stored size: 983 Bytes

Contents

RSpec.describe WorkerKiller::Killer::Puma do
  let(:config) do
    WorkerKiller::Configuration.new.tap do |c|
      c.quit_attempts = 2
      c.term_attempts = 2
    end
  end

  let(:ipc_path) { '/tmp/test_ipx.sock' }
  let(:killer){ described_class.new(ipc_path: ipc_path, worker_num: 99) }
  let(:buffer) { StringIO.new }

  describe '#kill' do
    around do |example|
      prev = WorkerKiller.configuration
      WorkerKiller.configuration = config
      example.run
    ensure
      WorkerKiller.configuration = prev
    end

    it 'expect right signal order' do
      expect(Socket).to receive(:unix).with(ipc_path).and_yield(buffer).exactly(4).times
      expect(Process).to receive(:kill).with(:KILL, anything).exactly(5).times

      killer.kill(Time.now)
      expect(buffer.string.strip).to eq(99.to_s)

      1.times { killer.kill(Time.now) } # 1 QUIT
      2.times { killer.kill(Time.now) } # 1 TERM
      5.times { killer.kill(Time.now) } # 5 KILL
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
worker_killer-1.1.0.214146 spec/killer/puma_spec.rb