2021-11-11 11:23:49 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
RSpec.describe CustomerRelations::Contact, type: :model do
|
2022-05-07 20:08:51 +05:30
|
|
|
let_it_be(:group) { create(:group) }
|
|
|
|
|
2021-11-11 11:23:49 +05:30
|
|
|
describe 'associations' do
|
|
|
|
it { is_expected.to belong_to(:group) }
|
|
|
|
it { is_expected.to belong_to(:organization).optional }
|
2021-12-11 22:18:48 +05:30
|
|
|
it { is_expected.to have_many(:issue_contacts) }
|
|
|
|
it { is_expected.to have_many(:issues) }
|
2021-11-11 11:23:49 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
describe 'validations' do
|
|
|
|
subject { build(:contact) }
|
|
|
|
|
|
|
|
it { is_expected.to validate_presence_of(:group) }
|
|
|
|
it { is_expected.to validate_presence_of(:first_name) }
|
|
|
|
it { is_expected.to validate_presence_of(:last_name) }
|
|
|
|
|
|
|
|
it { is_expected.to validate_length_of(:phone).is_at_most(32) }
|
|
|
|
it { is_expected.to validate_length_of(:first_name).is_at_most(255) }
|
|
|
|
it { is_expected.to validate_length_of(:last_name).is_at_most(255) }
|
|
|
|
it { is_expected.to validate_length_of(:email).is_at_most(255) }
|
|
|
|
it { is_expected.to validate_length_of(:description).is_at_most(1024) }
|
|
|
|
|
2022-05-07 20:08:51 +05:30
|
|
|
it { is_expected.to validate_uniqueness_of(:email).scoped_to(:group_id) }
|
|
|
|
|
2021-11-11 11:23:49 +05:30
|
|
|
it_behaves_like 'an object with RFC3696 compliant email-formatted attributes', :email
|
|
|
|
end
|
|
|
|
|
2022-04-04 11:22:00 +05:30
|
|
|
describe '.reference_prefix' do
|
|
|
|
it { expect(described_class.reference_prefix).to eq('[contact:') }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '.reference_prefix_quoted' do
|
|
|
|
it { expect(described_class.reference_prefix_quoted).to eq('["contact:') }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '.reference_postfix' do
|
|
|
|
it { expect(described_class.reference_postfix).to eq(']') }
|
|
|
|
end
|
|
|
|
|
2022-05-07 20:08:51 +05:30
|
|
|
describe '#root_group' do
|
|
|
|
context 'when root group' do
|
2022-03-02 08:16:31 +05:30
|
|
|
subject { build(:contact, group: group) }
|
|
|
|
|
|
|
|
it { is_expected.to be_valid }
|
|
|
|
end
|
|
|
|
|
2022-05-07 20:08:51 +05:30
|
|
|
context 'when subgroup' do
|
|
|
|
subject { build(:contact, group: create(:group, parent: group)) }
|
2022-03-02 08:16:31 +05:30
|
|
|
|
|
|
|
it { is_expected.to be_invalid }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-11-11 11:23:49 +05:30
|
|
|
describe '#before_validation' do
|
|
|
|
it 'strips leading and trailing whitespace' do
|
|
|
|
contact = described_class.new(first_name: ' First ', last_name: ' Last ', phone: ' 123456 ')
|
|
|
|
contact.valid?
|
|
|
|
|
|
|
|
expect(contact.first_name).to eq('First')
|
|
|
|
expect(contact.last_name).to eq('Last')
|
|
|
|
expect(contact.phone).to eq('123456')
|
|
|
|
end
|
|
|
|
end
|
2022-01-26 12:08:38 +05:30
|
|
|
|
|
|
|
describe '#self.find_ids_by_emails' do
|
|
|
|
let_it_be(:group_contacts) { create_list(:contact, 2, group: group) }
|
|
|
|
let_it_be(:other_contacts) { create_list(:contact, 2) }
|
|
|
|
|
|
|
|
it 'returns ids of contacts from group' do
|
2022-03-02 08:16:31 +05:30
|
|
|
contact_ids = described_class.find_ids_by_emails(group, group_contacts.pluck(:email))
|
|
|
|
|
|
|
|
expect(contact_ids).to match_array(group_contacts.pluck(:id))
|
|
|
|
end
|
|
|
|
|
2022-01-26 12:08:38 +05:30
|
|
|
it 'does not return ids of contacts from other groups' do
|
2022-03-02 08:16:31 +05:30
|
|
|
contact_ids = described_class.find_ids_by_emails(group, other_contacts.pluck(:email))
|
2022-01-26 12:08:38 +05:30
|
|
|
|
|
|
|
expect(contact_ids).to be_empty
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'raises ArgumentError when called with too many emails' do
|
|
|
|
too_many_emails = described_class::MAX_PLUCK + 1
|
2022-03-02 08:16:31 +05:30
|
|
|
expect { described_class.find_ids_by_emails(group, Array(0..too_many_emails)) }.to raise_error(ArgumentError)
|
2022-01-26 12:08:38 +05:30
|
|
|
end
|
|
|
|
end
|
2022-04-04 11:22:00 +05:30
|
|
|
|
|
|
|
describe '#self.exists_for_group?' do
|
2022-05-07 20:08:51 +05:30
|
|
|
context 'with no contacts in group' do
|
2022-04-04 11:22:00 +05:30
|
|
|
it 'returns false' do
|
2022-05-07 20:08:51 +05:30
|
|
|
expect(described_class.exists_for_group?(group)).to be_falsey
|
2022-04-04 11:22:00 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with contacts in group' do
|
|
|
|
it 'returns true' do
|
|
|
|
create(:contact, group: group)
|
|
|
|
|
2022-05-07 20:08:51 +05:30
|
|
|
expect(described_class.exists_for_group?(group)).to be_truthy
|
2022-04-04 11:22:00 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2021-11-11 11:23:49 +05:30
|
|
|
end
|