123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344 |
- # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
- require 'rails_helper'
- require 'system/examples/pagination_examples'
- RSpec.describe 'Manage > Trigger', type: :system do
- def open_new_trigger_dialog
- visit '/#manage/trigger'
- click_on 'New Trigger'
- end
- context 'Selector' do
- context 'custom attribute', db_strategy: :reset do
- it 'enables selection of multiple values for select attribute' do
- attribute = create_attribute :object_manager_attribute_select,
- data_option: {
- options: {
- 'name 1': 'name 1',
- 'name 2': 'name 2',
- },
- default: '',
- null: false,
- relation: '',
- maxlength: 255,
- nulloption: true,
- }
- open_new_trigger_dialog
- in_modal do
- within '.ticket_selector' do
- find('.js-attributeSelector select').select(attribute.display)
- expect(find('.js-value select')).to be_multiple
- end
- end
- end
- it 'enables selection of multiple values for multiselect attribute' do
- attribute = create_attribute :object_manager_attribute_multiselect,
- data_option: {
- options: {
- 'name 1': 'name 1',
- 'name 2': 'name 2',
- },
- default: '',
- null: false,
- relation: '',
- maxlength: 255,
- nulloption: true,
- }
- open_new_trigger_dialog
- in_modal do
- within '.ticket_selector' do
- find('.js-attributeSelector select').select(attribute.display)
- expect(find('.js-value select')).to be_multiple
- end
- end
- end
- end
- it 'sets a customer email address with no @ character' do
- open_new_trigger_dialog
- in_modal do
- find(".js-attributeSelector select option[value='customer.email']").select_option
- set_tokens_field_value('{json}condition::customer.email::value', 'zammad.com')
- fill_in 'Name', with: 'trigger 1'
- click '.js-submit'
- end
- end
- end
- context 'Perform' do
- context 'Tags' do
- it 'shows tag selection list in foreground' do
- tag_item = create(:tag_item)
- open_new_trigger_dialog
- in_modal disappears: false do
- within '.ticket_perform_action' do
- find('.js-attributeSelector select').select('Tags')
- input = find('.js-value .token-input')
- input.fill_in with: tag_item.name.slice(0, 3)
- end
- end
- # widget is shown within modal, but placed outside of modal in DOM tree.
- expect(page).to have_css('.ui-autocomplete.ui-widget-content') { |elem| !elem.obscured? }
- end
- end
- end
- context 'ajax pagination' do
- include_examples 'pagination', model: :trigger, klass: Trigger, path: 'manage/trigger'
- end
- context "with elements which do not support 'has changed' operator" do
- it "check 'created_at' element" do
- open_new_trigger_dialog
- in_modal do
- within '.ticket_selector' do
- find(".js-attributeSelector select option[value='ticket.created_at']").select_option
- expect(page).to have_no_css('select[name="condition::ticket.created_at::operator"] option[value="has changed"]')
- end
- end
- end
- it "check 'updated_at' element" do
- open_new_trigger_dialog
- in_modal do
- within '.ticket_selector' do
- find(".js-attributeSelector select option[value='ticket.updated_at']").select_option
- expect(page).to have_no_css('select[name="condition::ticket.updated_at::operator"] option[value="has changed"]')
- end
- end
- end
- end
- context 'when ticket is updated with a multiselect trigger condition', authenticated_as: :owner, db_strategy: :reset do
- let(:options) do
- {
- a: 'a',
- b: 'b',
- c: 'c',
- d: 'd',
- e: 'e',
- }
- end
- let(:trigger_values) { %w[a b c] }
- let!(:attribute) do
- create_attribute :object_manager_attribute_multiselect, :required_screen,
- data_option: {
- options: options,
- default: '',
- null: false,
- relation: '',
- maxlength: 255,
- nulloption: true,
- },
- name: 'multiselect'
- end
- let(:group) { create(:group) }
- let(:owner) { create(:admin, group_ids: [group.id]) }
- let!(:ticket) { create(:ticket, group: group,) }
- before do
- open_new_trigger_dialog
- in_modal do
- fill_in 'Name', with: 'Test Trigger'
- within '.ticket_selector' do
- find('.js-attributeSelector select').select attribute.display
- find('.js-operator select').select operator
- trigger_values.each { |value| find('.js-value select').select value }
- end
- within '.ticket_perform_action' do
- find('.js-attributeSelector select').select 'Note'
- within '.js-setArticle' do
- fill_in 'Subject', with: 'Test subject note'
- find('[data-name="perform::article.note::body"]').set 'Test body note'
- end
- end
- click_on 'Submit'
- end
- visit "#ticket/zoom/#{ticket.id}"
- ticket_multiselect_values.each do |value|
- within '.sidebar-content .multiselect select' do
- select value
- end
- end
- click_on 'Update'
- end
- shared_examples 'updating the ticket with the trigger condition' do
- it 'updates the ticket with the trigger condition' do
- wait.until { ticket.multiselect_previously_changed? && ticket.articles.present? }
- expect(ticket.articles).not_to be_empty
- expect(page).to have_text 'Test body note'
- end
- end
- context "with 'contains all' used" do
- let(:operator) { 'contains all' }
- context 'when updated value is the same with trigger value' do
- let(:ticket_multiselect_values) { trigger_values }
- it_behaves_like 'updating the ticket with the trigger condition'
- end
- context 'when all value is selected' do
- let(:ticket_multiselect_values) { options.values }
- it_behaves_like 'updating the ticket with the trigger condition'
- end
- end
- context "with 'contains one' used" do
- let(:operator) { 'contains one' }
- context 'when updated value is the same with trigger value' do
- let(:ticket_multiselect_values) { trigger_values }
- it_behaves_like 'updating the ticket with the trigger condition'
- end
- context 'when all value is selected' do
- let(:ticket_multiselect_values) { options.values }
- it_behaves_like 'updating the ticket with the trigger condition'
- end
- context 'when updated value contains only one of the trigger value' do
- let(:ticket_multiselect_values) { [trigger_values.first] }
- it_behaves_like 'updating the ticket with the trigger condition'
- end
- context 'when updated value does not contain one of the trigger value' do
- let(:ticket_multiselect_values) { options.values - [trigger_values.first] }
- it_behaves_like 'updating the ticket with the trigger condition'
- end
- end
- context "with 'contains all not' used" do
- let(:operator) { 'contains all not' }
- context 'when updated value is different from the trigger value' do
- let(:ticket_multiselect_values) { options.values - trigger_values }
- it_behaves_like 'updating the ticket with the trigger condition'
- end
- context 'when updated value contains only one of the trigger value' do
- let(:ticket_multiselect_values) { [trigger_values.first] }
- it_behaves_like 'updating the ticket with the trigger condition'
- end
- context 'when updated value does not contain one of the trigger value' do
- let(:ticket_multiselect_values) { options.values - [trigger_values.first] }
- it_behaves_like 'updating the ticket with the trigger condition'
- end
- end
- context "with 'contains one not' used" do
- let(:operator) { 'contains one not' }
- context 'when updated value is different from the trigger value' do
- let(:ticket_multiselect_values) { options.values - trigger_values }
- it_behaves_like 'updating the ticket with the trigger condition'
- end
- end
- end
- context 'when switching a trigger to time events' do
- shared_examples 'adding reached operator to attribute' do |attribute, operator|
- let(:attribute) { attribute }
- let(:operator) { operator }
- it "adds '#{operator}' operator to '#{attribute}' attribute" do
- open_new_trigger_dialog
- in_modal do
- find_field('activator').select 'Time event'
- within '.ticket_selector' do
- find('.js-filterElement .js-attributeSelector select').select attribute
- find('.js-filterElement .js-operator select').select operator
- end
- find_field('activator').select 'Action'
- within '.ticket_selector' do
- expect(find('.js-filterElement .js-operator select')).to have_no_selector('option', text: operator)
- end
- end
- end
- end
- it_behaves_like 'adding reached operator to attribute', 'Pending till', 'has reached'
- it_behaves_like 'adding reached operator to attribute', 'Escalation at', 'has reached'
- it_behaves_like 'adding reached operator to attribute', 'Escalation at', 'has reached warning'
- it "removes 'action' attribute" do
- open_new_trigger_dialog
- in_modal do
- expect(page).to have_select('activator', selected: 'Action')
- within '.ticket_selector' do
- find('.js-filterElement .js-attributeSelector select option[value="ticket.action"]').select_option
- end
- find_field('activator').select 'Time event'
- within '.ticket_selector' do
- expect(find('.js-filterElement .js-attributeSelector select')).to have_no_selector('option', text: 'Action')
- end
- end
- end
- it 'hides execution condition mode control' do
- open_new_trigger_dialog
- in_modal do
- expect(page).to have_select('activator', selected: 'Action')
- expect(page).to have_field('execution_condition_mode', visible: :all)
- find_field('activator').select 'Time event'
- expect(page).to have_no_field('execution_condition_mode')
- end
- end
- end
- end
|