Sha256: f0d063ded735fe496958eabf2c794bf39d10e2c2444243365ee5ff4f83a528fc

Contents?: true

Size: 1.33 KB

Versions: 5

Compression:

Stored size: 1.33 KB

Contents

RSpec.describe WorkerKiller::Killer::Base 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() }

  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
        if RUBY_VERSION >= "2.7.0"
          expect(killer).to receive(:do_kill).with(:QUIT, anything, anything).exactly(2).times
          expect(killer).to receive(:do_kill).with(:TERM, anything, anything).exactly(2).times
          expect(killer).to receive(:do_kill).with(:KILL, anything, anything).exactly(5).times
        else
          expect(killer).to receive(:do_kill).with(:QUIT, anything, anything, anything).exactly(2).times
          expect(killer).to receive(:do_kill).with(:TERM, anything, anything, anything).exactly(2).times
          expect(killer).to receive(:do_kill).with(:KILL, anything, anything, anything).exactly(5).times
        end

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

  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
worker_killer-1.1.0.223443 spec/killer_spec.rb
worker_killer-1.1.0.214159 spec/killer_spec.rb
worker_killer-1.1.0.214146 spec/killer_spec.rb
worker_killer-1.0.5.213977 spec/killer_spec.rb
worker_killer-1.0.5.213889 spec/killer_spec.rb