123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- require 'rails_helper'
- require 'models/concerns/checks_kb_client_notification_examples'
- require 'models/contexts/factory_context'
- RSpec.describe KnowledgeBase, type: :model do
- subject(:knowledge_base) { create(:knowledge_base) }
- # make sure there's no KBs from seed data
- before { described_class.all.each(&:full_destroy!) }
- include_context 'factory'
- it_behaves_like 'ChecksKbClientNotification'
- it { is_expected.to validate_presence_of(:color_highlight) }
- it { is_expected.to validate_presence_of(:color_header) }
- it { is_expected.to validate_presence_of(:iconset).with_message(//) }
- it { is_expected.to validate_inclusion_of(:iconset).in_array(KnowledgeBase::ICONSETS) }
- it { is_expected.to validate_inclusion_of(:category_layout).in_array(KnowledgeBase::LAYOUTS) }
- it { is_expected.to validate_inclusion_of(:homepage_layout).in_array(KnowledgeBase::LAYOUTS) }
- context 'activation' do
- it 'on by default' do
- expect(knowledge_base).to be_active
- end
- it 'switcing off changes kb_active setting to false' do
- knowledge_base # trigger KB creation to set initial setting value
- expect { knowledge_base.update(active: false) }.to change { Setting.get('kb_active') }.from(true).to(false)
- end
- context 'with inactive' do
- let!(:knowledge_base_inactive) { create(:knowledge_base, active: false) }
- it 'switching on changes kb_active setting to true' do
- expect { knowledge_base_inactive.update(active: true) }.to change { Setting.get('kb_active') }.from(false).to(true)
- end
- context 'including active' do
- before { knowledge_base }
- it 'ensure 2 knowledge bases are created' do
- expect(described_class.count).to eq(2)
- end
- it 'filter by activity' do
- expect(described_class.active).to contain_exactly(knowledge_base)
- end
- it 'skip activity check for editors when filtering by activity' do
- user = create(:admin_user)
- expect(described_class.check_active_unless_editor(user).count).to eq(2)
- end
- it 'check activity if user is not editor when filtering by activity' do
- user = create(:agent_user)
- expect(described_class.check_active_unless_editor(user)).to contain_exactly(knowledge_base)
- end
- it 'skip activity check for guests when filtering by activity' do
- expect(described_class.check_active_unless_editor(nil)).to contain_exactly(knowledge_base)
- end
- end
- end
- end
- end
|