1234567891011121314151617181920212223242526272829303132333435363738394041 |
- require 'rails_helper'
- RSpec.describe Ticket::Article::EnqueueCommunicateEmailJob, performs_jobs: true do
- before { allow(Delayed::Job).to receive(:enqueue).and_call_original }
- let(:article) { create(:ticket_article, **(try(:factory_options) || {})) }
- shared_examples 'for no-op' do
- it 'is a no-op' do
- expect { article }.not_to have_enqueued_job(TicketArticleCommunicateEmailJob)
- end
- end
- shared_examples 'for success' do
- it 'enqueues the Email background job' do
- expect { article }.to have_enqueued_job(TicketArticleCommunicateEmailJob)
- end
- end
- context 'when in Import Mode' do
- before { Setting.set('import_mode', true) }
- include_examples 'for no-op'
- end
- context 'when article is created during Channel::EmailParser#process', application_handle: 'scheduler.postmaster' do
- include_examples 'for no-op'
- end
- context 'when article is from a customer' do
- let(:factory_options) { { sender_name: 'Customer' } }
- include_examples 'for no-op'
- end
- context 'when article is an email' do
- let(:factory_options) { { sender_name: 'Agent', type_name: 'email' } }
- include_examples 'for success'
- end
- end
|