31cdc63e18
* Remove IMAP and SMTP email validation * Rename imap_email & smtp_email columns to imap_login & smtp_login respectively. * Use channel email domain if inbound email domain not present
27 lines
984 B
Ruby
27 lines
984 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe Inboxes::FetchImapEmailInboxesJob, type: :job do
|
|
let(:account) { create(:account) }
|
|
let(:imap_email_channel) do
|
|
create(:channel_email, imap_enabled: true, imap_address: 'imap.gmail.com', imap_port: 993, imap_login: 'imap@gmail.com',
|
|
imap_password: 'password', account: account)
|
|
end
|
|
let(:email_inbox) { create(:inbox, channel: imap_email_channel, account: account) }
|
|
|
|
it 'enqueues the job' do
|
|
expect { described_class.perform_later }.to have_enqueued_job(described_class)
|
|
.on_queue('low')
|
|
end
|
|
|
|
context 'when called' do
|
|
it 'fetch all the email channels' do
|
|
imap_email_inboxes = double
|
|
allow(imap_email_inboxes).to receive(:all).and_return([email_inbox])
|
|
allow(Inbox).to receive(:where).and_return(imap_email_inboxes)
|
|
|
|
expect(Inboxes::FetchImapEmailsJob).to receive(:perform_later).with(imap_email_channel).once
|
|
|
|
described_class.perform_now
|
|
end
|
|
end
|
|
end
|