4260441f8c
Tech debt clean up Fixes #4057 Co-authored-by: Aswin Dev P S <aswin@chatwoot.com>
138 lines
3.4 KiB
Ruby
138 lines
3.4 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
require Rails.root.join 'spec/models/concerns/out_of_offisable_shared.rb'
|
|
|
|
RSpec.describe Inbox do
|
|
describe 'validations' do
|
|
it { is_expected.to validate_presence_of(:account_id) }
|
|
end
|
|
|
|
describe 'associations' do
|
|
it { is_expected.to belong_to(:account) }
|
|
|
|
it { is_expected.to belong_to(:channel) }
|
|
|
|
it { is_expected.to have_many(:contact_inboxes).dependent(:destroy_async) }
|
|
|
|
it { is_expected.to have_many(:contacts).through(:contact_inboxes) }
|
|
|
|
it { is_expected.to have_many(:inbox_members).dependent(:destroy_async) }
|
|
|
|
it { is_expected.to have_many(:members).through(:inbox_members).source(:user) }
|
|
|
|
it { is_expected.to have_many(:conversations).dependent(:destroy_async) }
|
|
|
|
it { is_expected.to have_many(:messages).through(:conversations) }
|
|
|
|
it { is_expected.to have_one(:agent_bot_inbox) }
|
|
|
|
it { is_expected.to have_many(:webhooks).dependent(:destroy_async) }
|
|
|
|
it { is_expected.to have_many(:reporting_events) }
|
|
|
|
it { is_expected.to have_many(:hooks) }
|
|
end
|
|
|
|
describe 'concerns' do
|
|
it_behaves_like 'out_of_offisable'
|
|
end
|
|
|
|
describe '#add_member' do
|
|
let(:inbox) { FactoryBot.create(:inbox) }
|
|
let(:user) { FactoryBot.create(:user) }
|
|
|
|
it do
|
|
expect(inbox.inbox_members.size).to eq(0)
|
|
|
|
inbox.add_member(user.id)
|
|
expect(inbox.reload.inbox_members.size).to eq(1)
|
|
end
|
|
end
|
|
|
|
describe '#remove_member' do
|
|
let(:inbox) { FactoryBot.create(:inbox) }
|
|
let(:user) { FactoryBot.create(:user) }
|
|
|
|
before { inbox.add_member(user.id) }
|
|
|
|
it do
|
|
expect(inbox.inbox_members.size).to eq(1)
|
|
|
|
inbox.remove_member(user.id)
|
|
expect(inbox.reload.inbox_members.size).to eq(0)
|
|
end
|
|
end
|
|
|
|
describe '#facebook?' do
|
|
let(:inbox) do
|
|
FactoryBot.build(:inbox, channel: channel_val)
|
|
end
|
|
|
|
context 'when the channel type is Channel::FacebookPage' do
|
|
let(:channel_val) { Channel::FacebookPage.new }
|
|
|
|
it do
|
|
expect(inbox.facebook?).to eq(true)
|
|
expect(inbox.inbox_type).to eq('Facebook')
|
|
end
|
|
end
|
|
|
|
context 'when the channel type is not Channel::FacebookPage' do
|
|
let(:channel_val) { Channel::WebWidget.new }
|
|
|
|
it do
|
|
expect(inbox.facebook?).to eq(false)
|
|
expect(inbox.inbox_type).to eq('Website')
|
|
end
|
|
end
|
|
end
|
|
|
|
describe '#web_widget?' do
|
|
let(:inbox) do
|
|
FactoryBot.build(:inbox, channel: channel_val)
|
|
end
|
|
|
|
context 'when the channel type is Channel::WebWidget' do
|
|
let(:channel_val) { Channel::WebWidget.new }
|
|
|
|
it do
|
|
expect(inbox.web_widget?).to eq(true)
|
|
expect(inbox.inbox_type).to eq('Website')
|
|
end
|
|
end
|
|
|
|
context 'when the channel is not Channel::WebWidget' do
|
|
let(:channel_val) { Channel::Api.new }
|
|
|
|
it do
|
|
expect(inbox.web_widget?).to eq(false)
|
|
expect(inbox.inbox_type).to eq('API')
|
|
end
|
|
end
|
|
end
|
|
|
|
describe '#api?' do
|
|
let(:inbox) do
|
|
FactoryBot.build(:inbox, channel: channel_val)
|
|
end
|
|
|
|
context 'when the channel type is Channel::Api' do
|
|
let(:channel_val) { Channel::Api.new }
|
|
|
|
it do
|
|
expect(inbox.api?).to eq(true)
|
|
expect(inbox.inbox_type).to eq('API')
|
|
end
|
|
end
|
|
|
|
context 'when the channel is not Channel::Api' do
|
|
let(:channel_val) { Channel::FacebookPage.new }
|
|
|
|
it do
|
|
expect(inbox.api?).to eq(false)
|
|
expect(inbox.inbox_type).to eq('Facebook')
|
|
end
|
|
end
|
|
end
|
|
end
|