43 lines
1.6 KiB
Ruby
43 lines
1.6 KiB
Ruby
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
|
|
|
RSpec.shared_examples 'ChecksKbClientNotification' do
|
|
context 'sends client notifications', performs_jobs: true do
|
|
before { subject }
|
|
|
|
it 'on creation' do
|
|
expect(ChecksKbClientNotificationJob).to have_been_enqueued.with(subject.class.name, subject.id)
|
|
end
|
|
|
|
context 'after initial notifications are cleared' do
|
|
before { clear_jobs }
|
|
|
|
it 'on update' do
|
|
subject.update(updated_at: Time.zone.now)
|
|
expect(ChecksKbClientNotificationJob).to have_been_enqueued.with(subject.class.name, subject.id)
|
|
end
|
|
|
|
it 'on touch' do
|
|
subject.touch
|
|
expect(ChecksKbClientNotificationJob).to have_been_enqueued.with(subject.class.name, subject.id)
|
|
end
|
|
|
|
it 'on destroy' do
|
|
subject.destroy
|
|
expect(ChecksKbClientNotificationJob).not_to have_been_enqueued.with(subject.class.name, subject.id)
|
|
end
|
|
|
|
it 'notifications be disabled' do
|
|
ChecksKbClientNotification.disable_in_all_classes!
|
|
subject.update(updated_at: Time.zone.now)
|
|
expect(ChecksKbClientNotificationJob).not_to have_been_enqueued.at_least(:once) # some object have associations that triggers touch job after creation
|
|
end
|
|
|
|
it 'notifications be re-enabled' do
|
|
ChecksKbClientNotification.disable_in_all_classes!
|
|
ChecksKbClientNotification.enable_in_all_classes!
|
|
subject.update(updated_at: Time.zone.now)
|
|
expect(ChecksKbClientNotificationJob).to have_been_enqueued.at_least(:once) # some object have associations that triggers touch job after creation
|
|
end
|
|
end
|
|
end
|
|
end
|