2018-06-05 07:15:48 +00:00
|
|
|
require 'rails_helper'
|
2019-02-26 11:00:46 +00:00
|
|
|
require 'models/application_model_examples'
|
2019-10-21 10:44:52 +00:00
|
|
|
require 'models/concerns/can_csv_import_examples'
|
2019-06-28 13:07:14 +00:00
|
|
|
require 'models/concerns/has_history_examples'
|
2019-01-15 12:32:14 +00:00
|
|
|
require 'models/concerns/has_search_index_backend_examples'
|
2019-02-12 07:38:59 +00:00
|
|
|
require 'models/concerns/has_xss_sanitized_note_examples'
|
2019-03-13 23:51:22 +00:00
|
|
|
require 'models/concerns/has_object_manager_attributes_validation_examples'
|
2018-06-05 07:15:48 +00:00
|
|
|
|
2019-01-22 09:20:14 +00:00
|
|
|
RSpec.describe Organization, type: :model do
|
2019-02-26 11:00:46 +00:00
|
|
|
it_behaves_like 'ApplicationModel', can_assets: { associations: :members }
|
2019-10-21 10:44:52 +00:00
|
|
|
it_behaves_like 'CanCsvImport', unique_attributes: 'name'
|
2019-06-28 13:07:14 +00:00
|
|
|
it_behaves_like 'HasHistory'
|
2019-01-24 10:13:04 +00:00
|
|
|
it_behaves_like 'HasSearchIndexBackend', indexed_factory: :organization
|
2019-02-12 07:38:59 +00:00
|
|
|
it_behaves_like 'HasXssSanitizedNote', model_factory: :organization
|
2019-03-13 23:51:22 +00:00
|
|
|
it_behaves_like 'HasObjectManagerAttributesValidation'
|
2018-06-05 07:15:48 +00:00
|
|
|
|
2019-04-02 14:43:11 +00:00
|
|
|
subject(:organization) { create(:organization) }
|
|
|
|
|
|
|
|
describe 'Class methods:' do
|
|
|
|
describe '.where_or_cis' do
|
|
|
|
it 'finds instance by querying multiple attributes case insensitive' do
|
|
|
|
# search for Zammad Foundation
|
|
|
|
organizations = described_class.where_or_cis(%i[name note], '%zammad%')
|
|
|
|
expect(organizations).not_to be_blank
|
|
|
|
end
|
2018-06-05 07:15:48 +00:00
|
|
|
end
|
|
|
|
end
|
2019-02-12 07:38:59 +00:00
|
|
|
|
2019-04-02 14:43:11 +00:00
|
|
|
describe 'Callbacks, Observers, & Async Transactions -' do
|
|
|
|
describe 'Touching associations on update:' do
|
2020-06-19 09:17:18 +00:00
|
|
|
let!(:member) { create(:customer, organization: organization) }
|
2019-04-02 14:43:11 +00:00
|
|
|
let!(:member_ticket) { create(:ticket, customer: member) }
|
|
|
|
|
|
|
|
context 'when member associations are added' do
|
2020-06-19 09:17:18 +00:00
|
|
|
let(:user) { create(:customer) }
|
2019-04-02 14:43:11 +00:00
|
|
|
|
|
|
|
it 'is touched, and touches its other members (but not their tickets)' do
|
|
|
|
expect { organization.members.push(user) }
|
|
|
|
.to change { organization.reload.updated_at }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2020-06-27 12:02:20 +00:00
|
|
|
|
|
|
|
describe '#domain_assignment' do
|
|
|
|
it 'fails if enabled and domain is missing' do
|
|
|
|
organization.domain_assignment = true
|
|
|
|
organization.domain = nil
|
|
|
|
organization.valid?
|
|
|
|
|
|
|
|
expect(organization.errors[:domain]).to be_present
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'succeeds if enabled and domain is present' do
|
|
|
|
organization.domain_assignment = true
|
|
|
|
organization.domain = 'example.org'
|
|
|
|
organization.valid?
|
|
|
|
|
|
|
|
expect(organization.errors[:domain]).to be_empty
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'succeeds if disabled and domain is missing' do
|
|
|
|
organization.domain_assignment = false
|
|
|
|
organization.domain = nil
|
|
|
|
organization.valid?
|
|
|
|
|
|
|
|
expect(organization.errors[:domain]).to be_empty
|
|
|
|
end
|
|
|
|
end
|
2018-06-05 07:15:48 +00:00
|
|
|
end
|