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-06-21 17:19:12 +05:30
|
|
|
it { is_expected.to validate_uniqueness_of(:email).case_insensitive.scoped_to(:group_id) }
|
2022-05-07 20:08:51 +05:30
|
|
|
|
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
|
2022-06-21 17:19:12 +05:30
|
|
|
|
|
|
|
it 'finds contacts regardless of email casing' do
|
|
|
|
new_contact = create(:contact, group: group, email: "UPPERCASE@example.com")
|
|
|
|
emails = [group_contacts[0].email.downcase, group_contacts[1].email.upcase, new_contact.email]
|
|
|
|
|
|
|
|
contact_ids = described_class.find_ids_by_emails(group, emails)
|
|
|
|
|
|
|
|
expect(contact_ids).to contain_exactly(group_contacts[0].id, group_contacts[1].id, new_contact.id)
|
|
|
|
end
|
2022-01-26 12:08:38 +05:30
|
|
|
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
|
2022-06-21 17:19:12 +05:30
|
|
|
|
|
|
|
describe '#self.move_to_root_group' do
|
|
|
|
let!(:old_root_group) { create(:group) }
|
|
|
|
let!(:contacts) { create_list(:contact, 4, group: old_root_group) }
|
|
|
|
let!(:project) { create(:project, group: old_root_group) }
|
|
|
|
let!(:issue) { create(:issue, project: project) }
|
|
|
|
let!(:issue_contact1) { create(:issue_customer_relations_contact, issue: issue, contact: contacts[0]) }
|
|
|
|
let!(:issue_contact2) { create(:issue_customer_relations_contact, issue: issue, contact: contacts[1]) }
|
|
|
|
let!(:new_root_group) { create(:group) }
|
|
|
|
let!(:dupe_contact1) { create(:contact, group: new_root_group, email: contacts[1].email) }
|
|
|
|
let!(:dupe_contact2) { create(:contact, group: new_root_group, email: contacts[3].email.upcase) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
old_root_group.update!(parent: new_root_group)
|
|
|
|
CustomerRelations::Contact.move_to_root_group(old_root_group)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'moves contacts with unique emails and deletes the rest' do
|
|
|
|
expect(contacts[0].reload.group_id).to eq(new_root_group.id)
|
|
|
|
expect(contacts[2].reload.group_id).to eq(new_root_group.id)
|
|
|
|
expect { contacts[1].reload }.to raise_error(ActiveRecord::RecordNotFound)
|
|
|
|
expect { contacts[3].reload }.to raise_error(ActiveRecord::RecordNotFound)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'updates issue_contact.contact_id for dupes and leaves the rest untouched' do
|
|
|
|
expect(issue_contact1.reload.contact_id).to eq(contacts[0].id)
|
|
|
|
expect(issue_contact2.reload.contact_id).to eq(dupe_contact1.id)
|
|
|
|
end
|
|
|
|
end
|
2021-11-11 11:23:49 +05:30
|
|
|
end
|