Sha256: a8976ee366d42340fc59ad058d8b726170b064d8da077a6a06d1e7fea10fa566

Contents?: true

Size: 958 Bytes

Versions: 6

Compression:

Stored size: 958 Bytes

Contents

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

  let(:killer){ described_class.new() }
  let(:dj){ double }

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

      it 'expect right signal order' do
        expect(dj).to receive(:stop).exactly(4)
        expect(Process).to receive(:kill).with(:TERM, anything).exactly(1).times
        expect(Process).to receive(:kill).with(:KILL, anything).exactly(5).times

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

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
worker_killer-1.0.1.83603 spec/killer/delayed_job_spec.rb
worker_killer-1.0.1.75538 spec/killer/delayed_job_spec.rb
worker_killer-1.0.1.39842 spec/killer/delayed_job_spec.rb
worker_killer-1.0.0.39841 spec/killer/delayed_job_spec.rb
worker_killer-1.0.0.39839 spec/killer/delayed_job_spec.rb
worker_killer-0.1.1.39838 spec/killer/delayed_job_spec.rb