Welcome to mirror list, hosted at ThFree Co, Russian Federation.

client_middleware_spec.rb « sidekiq_status « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2f2499753b96bd3a3e10617125152e1aa2b5ec79 (plain)
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
# frozen_string_literal: true

require 'fast_spec_helper'

RSpec.describe Gitlab::SidekiqStatus::ClientMiddleware do
  describe '#call' do
    context 'when the job has status_expiration set' do
      it 'tracks the job in Redis with a value of 2' do
        expect(Gitlab::SidekiqStatus).to receive(:set).with('123', 1.hour.to_i, value: 2)

        described_class.new
          .call('Foo', { 'jid' => '123', 'status_expiration' => 1.hour.to_i }, double(:queue), double(:pool)) { nil }
      end
    end

    context 'when the job does not have status_expiration set' do
      it 'tracks the job in Redis with a value of 1' do
        expect(Gitlab::SidekiqStatus).to receive(:set).with('123', Gitlab::SidekiqStatus::DEFAULT_EXPIRATION, value: 1)

        described_class.new
          .call('Foo', { 'jid' => '123' }, double(:queue), double(:pool)) { nil }
      end
    end
  end
end