summaryrefslogtreecommitdiff
path: root/spec/workers/personal_access_tokens/expired_notification_worker_spec.rb
blob: 7c3c48b3f80a5ba334c6f202bab867a5c5831f97 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe PersonalAccessTokens::ExpiredNotificationWorker, type: :worker do
  subject(:worker) { described_class.new }

  describe '#perform' do
    context 'when a token has expired' do
      let(:expired_today) { create(:personal_access_token, expires_at: Date.current) }

      it 'uses notification service to send email to the user' do
        expect_next_instance_of(NotificationService) do |notification_service|
          expect(notification_service).to receive(:access_token_expired).with(expired_today.user, [expired_today.name])
        end

        worker.perform
      end

      it 'updates notified column' do
        expect { worker.perform }.to change { expired_today.reload.after_expiry_notification_delivered }.from(false).to(true)
      end
    end

    shared_examples 'expiry notification is not required to be sent for the token' do
      it do
        expect_next_instance_of(NotificationService) do |notification_service|
          expect(notification_service).not_to receive(:access_token_expired).with(token.user, [token.name])
        end

        worker.perform
      end
    end

    context 'when token has expired in the past' do
      let(:token) { create(:personal_access_token, expires_at: Date.yesterday) }

      it_behaves_like 'expiry notification is not required to be sent for the token'
    end

    context 'when token is impersonated' do
      let(:token) { create(:personal_access_token, expires_at: Date.current, impersonation: true) }

      it_behaves_like 'expiry notification is not required to be sent for the token'
    end

    context 'when token is revoked' do
      let(:token) { create(:personal_access_token, expires_at: Date.current, revoked: true) }

      it_behaves_like 'expiry notification is not required to be sent for the token'
    end
  end
end