Chatwoot/spec/jobs/agents/destroy_job_spec.rb

35 lines
1.1 KiB
Ruby
Raw Normal View History

require 'rails_helper'
2022-11-25 17:16:50 +00:00
RSpec.describe Agents::DestroyJob, type: :job do
subject(:job) { described_class.perform_later(account, user) }
let!(:account) { create(:account) }
let(:user) { create(:user, account: account) }
let(:team1) { create(:team, account: account) }
let!(:inbox) { create(:inbox, account: account) }
before do
create(:team_member, team: team1, user: user)
create(:inbox_member, inbox: inbox, user: user)
create(:conversation, account: account, assignee: user, inbox: inbox)
end
2022-11-25 17:16:50 +00:00
it 'enqueues the job' do
expect { job }.to have_enqueued_job(described_class)
.with(account, user)
.on_queue('default')
end
describe '#perform' do
it 'remove inboxes, teams, and conversations when removed from account' do
2022-11-25 17:16:50 +00:00
described_class.perform_now(account, user)
user.reload
expect(user.teams.length).to eq 0
expect(user.inboxes.length).to eq 0
expect(user.notification_settings.length).to eq 0
expect(user.assigned_conversations.where(account: account).length).to eq 0
end
end
end