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

use_key_worker_spec.rb « workers « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f8752c42a497e223a5ed3702a04c95d317b3c797 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require 'spec_helper'

describe UseKeyWorker do
  describe "#perform" do
    it "updates the key's last_used_at attribute to the current time when it exists" do
      worker = described_class.new
      key = create(:key)
      current_time = Time.zone.now

      Timecop.freeze(current_time) do
        expect { worker.perform(key.id) }.
          to change { key.reload.last_used_at }.from(nil).to be_like_time(current_time)
      end
    end

    it "returns false and skips the job when the key doesn't exist" do
      worker = described_class.new
      key = create(:key)

      expect(worker.perform(key.id + 1)).to eq false
    end
  end
end