mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-09 08:36:23 +00:00
Migration Guide: https://chwt.app/v4/migration This PR imports all the work related to Captain into the EE codebase. Captain represents the AI-based features in Chatwoot and includes the following key components: - Assistant: An assistant has a persona, the product it would be trained on. At the moment, the data at which it is trained is from websites. Future integrations on Notion documents, PDF etc. This PR enables connecting an assistant to an inbox. The assistant would run the conversation every time before transferring it to an agent. - Copilot for Agents: When an agent is supporting a customer, we will be able to offer additional help to lookup some data or fetch information from integrations etc via copilot. - Conversation FAQ generator: When a conversation is resolved, the Captain integration would identify questions which were not in the knowledge base. - CRM memory: Learns from the conversations and identifies important information about the contact. --------- Co-authored-by: Vishnu Narayanan <vishnu@chatwoot.com> Co-authored-by: Sojan <sojan@pepalo.com> Co-authored-by: iamsivin <iamsivin@gmail.com> Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com>
80 lines
3.7 KiB
Ruby
80 lines
3.7 KiB
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe Internal::ReconcilePlanConfigService do
|
|
describe '#perform' do
|
|
let(:service) { described_class.new }
|
|
|
|
context 'when pricing plan is community' do
|
|
before do
|
|
allow(ChatwootHub).to receive(:pricing_plan).and_return('community')
|
|
end
|
|
|
|
it 'disables the premium features for accounts' do
|
|
account = create(:account)
|
|
account.enable_features!('disable_branding', 'audit_logs', 'captain_integration')
|
|
account_with_captain = create(:account)
|
|
account_with_captain.enable_features!('captain_integration')
|
|
disable_branding_account = create(:account)
|
|
disable_branding_account.enable_features!('disable_branding')
|
|
service.perform
|
|
expect(account.reload.enabled_features.keys).not_to include('captain_integration', 'disable_branding', 'audit_logs')
|
|
expect(account_with_captain.reload.enabled_features.keys).not_to include('captain_integration')
|
|
expect(disable_branding_account.reload.enabled_features.keys).not_to include('disable_branding')
|
|
end
|
|
|
|
it 'creates a premium config reset warning if config was modified' do
|
|
create(:installation_config, name: 'INSTALLATION_NAME', value: 'custom-name')
|
|
service.perform
|
|
expect(Redis::Alfred.get(Redis::Alfred::CHATWOOT_INSTALLATION_CONFIG_RESET_WARNING)).to eq('true')
|
|
end
|
|
|
|
it 'will not create a premium config reset warning if config is not modified' do
|
|
create(:installation_config, name: 'INSTALLATION_NAME', value: 'Chatwoot')
|
|
service.perform
|
|
expect(Redis::Alfred.get(Redis::Alfred::CHATWOOT_INSTALLATION_CONFIG_RESET_WARNING)).to be_nil
|
|
end
|
|
|
|
it 'updates the premium configs to default' do
|
|
create(:installation_config, name: 'INSTALLATION_NAME', value: 'custom-name')
|
|
create(:installation_config, name: 'LOGO', value: '/custom-path/logo.svg')
|
|
service.perform
|
|
expect(InstallationConfig.find_by(name: 'INSTALLATION_NAME').value).to eq('Chatwoot')
|
|
expect(InstallationConfig.find_by(name: 'LOGO').value).to eq('/brand-assets/logo.svg')
|
|
end
|
|
end
|
|
|
|
context 'when pricing plan is not community' do
|
|
before do
|
|
allow(ChatwootHub).to receive(:pricing_plan).and_return('enterprise')
|
|
end
|
|
|
|
it 'unset premium config warning on upgrade' do
|
|
Redis::Alfred.set(Redis::Alfred::CHATWOOT_INSTALLATION_CONFIG_RESET_WARNING, true)
|
|
service.perform
|
|
expect(Redis::Alfred.get(Redis::Alfred::CHATWOOT_INSTALLATION_CONFIG_RESET_WARNING)).to be_nil
|
|
end
|
|
|
|
it 'does not disable the premium features for accounts' do
|
|
account = create(:account)
|
|
account.enable_features!('disable_branding', 'audit_logs', 'captain_integration')
|
|
account_with_captain = create(:account)
|
|
account_with_captain.enable_features!('captain_integration')
|
|
disable_branding_account = create(:account)
|
|
disable_branding_account.enable_features!('disable_branding')
|
|
service.perform
|
|
expect(account.reload.enabled_features.keys).to include('captain_integration', 'disable_branding', 'audit_logs')
|
|
expect(account_with_captain.reload.enabled_features.keys).to include('captain_integration')
|
|
expect(disable_branding_account.reload.enabled_features.keys).to include('disable_branding')
|
|
end
|
|
|
|
it 'does not update the LOGO config' do
|
|
create(:installation_config, name: 'INSTALLATION_NAME', value: 'custom-name')
|
|
create(:installation_config, name: 'LOGO', value: '/custom-path/logo.svg')
|
|
service.perform
|
|
expect(InstallationConfig.find_by(name: 'INSTALLATION_NAME').value).to eq('custom-name')
|
|
expect(InstallationConfig.find_by(name: 'LOGO').value).to eq('/custom-path/logo.svg')
|
|
end
|
|
end
|
|
end
|
|
end
|