mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 03:27:52 +00:00
- Add support for using labels as an action event for automation - Fix duplicated conversation_updated event dispatch for labels Fixes https://github.com/chatwoot/chatwoot/issues/8539 and multiple issues around duplication related to label change events. --------- Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
122 lines
3.6 KiB
Ruby
122 lines
3.6 KiB
Ruby
require 'rails_helper'
|
|
require Rails.root.join 'spec/models/concerns/reauthorizable_shared.rb'
|
|
|
|
RSpec.describe AutomationRule do
|
|
describe 'concerns' do
|
|
it_behaves_like 'reauthorizable'
|
|
end
|
|
|
|
describe 'associations' do
|
|
let(:account) { create(:account) }
|
|
let(:params) do
|
|
{
|
|
name: 'Notify Conversation Created and mark priority query',
|
|
description: 'Notify all administrator about conversation created and mark priority query',
|
|
event_name: 'conversation_created',
|
|
account_id: account.id,
|
|
conditions: [
|
|
{
|
|
attribute_key: 'browser_language',
|
|
filter_operator: 'equal_to',
|
|
values: ['en'],
|
|
query_operator: 'AND'
|
|
},
|
|
{
|
|
attribute_key: 'country_code',
|
|
filter_operator: 'equal_to',
|
|
values: %w[USA UK],
|
|
query_operator: nil
|
|
}
|
|
],
|
|
actions: [
|
|
{
|
|
action_name: :send_message,
|
|
action_params: ['Welcome to the chatwoot platform.']
|
|
},
|
|
{
|
|
action_name: :assign_team,
|
|
action_params: [1]
|
|
},
|
|
{
|
|
action_name: :add_label,
|
|
action_params: %w[support priority_customer]
|
|
},
|
|
{
|
|
action_name: :assign_agent,
|
|
action_params: [1]
|
|
}
|
|
]
|
|
}.with_indifferent_access
|
|
end
|
|
|
|
it 'returns valid record' do
|
|
rule = FactoryBot.build(:automation_rule, params)
|
|
expect(rule.valid?).to be true
|
|
end
|
|
|
|
it 'returns invalid record' do
|
|
params[:conditions][0].delete('query_operator')
|
|
rule = FactoryBot.build(:automation_rule, params)
|
|
expect(rule.valid?).to be false
|
|
expect(rule.errors.messages[:conditions]).to eq(['Automation conditions should have query operator.'])
|
|
end
|
|
|
|
it 'allows labels as a valid condition attribute' do
|
|
params[:conditions] = [
|
|
{
|
|
attribute_key: 'labels',
|
|
filter_operator: 'equal_to',
|
|
values: ['bug'],
|
|
query_operator: nil
|
|
}
|
|
]
|
|
rule = FactoryBot.build(:automation_rule, params)
|
|
expect(rule.valid?).to be true
|
|
end
|
|
|
|
it 'validates label condition operators' do
|
|
params[:conditions] = [
|
|
{
|
|
attribute_key: 'labels',
|
|
filter_operator: 'is_present',
|
|
values: [],
|
|
query_operator: nil
|
|
}
|
|
]
|
|
rule = FactoryBot.build(:automation_rule, params)
|
|
expect(rule.valid?).to be true
|
|
end
|
|
end
|
|
|
|
describe 'reauthorizable' do
|
|
context 'when prompt_reauthorization!' do
|
|
it 'marks the rule inactive' do
|
|
rule = create(:automation_rule)
|
|
expect(rule.active).to be true
|
|
rule.prompt_reauthorization!
|
|
expect(rule.active).to be false
|
|
end
|
|
end
|
|
|
|
context 'when reauthorization_required?' do
|
|
it 'unsets the error count if conditions are updated' do
|
|
rule = create(:automation_rule)
|
|
rule.prompt_reauthorization!
|
|
expect(rule.reauthorization_required?).to be true
|
|
|
|
rule.update!(conditions: [{ attribute_key: 'browser_language', filter_operator: 'equal_to', values: ['en'], query_operator: 'AND' }])
|
|
expect(rule.reauthorization_required?).to be false
|
|
end
|
|
|
|
it 'will not unset the error count if conditions are not updated' do
|
|
rule = create(:automation_rule)
|
|
rule.prompt_reauthorization!
|
|
expect(rule.reauthorization_required?).to be true
|
|
|
|
rule.update!(name: 'Updated name')
|
|
expect(rule.reauthorization_required?).to be true
|
|
end
|
|
end
|
|
end
|
|
end
|