2021-06-01 12:20:20 +00:00
|
|
|
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
2020-02-19 09:25:00 +00:00
|
|
|
require 'rails_helper'
|
2020-10-30 07:59:32 +00:00
|
|
|
require 'system/examples/pagination_examples'
|
2020-02-19 09:25:00 +00:00
|
|
|
|
|
|
|
RSpec.describe 'Manage > Trigger', type: :system do
|
|
|
|
|
2021-08-17 12:06:31 +00:00
|
|
|
def open_new_trigger_dialog
|
|
|
|
visit '/#manage/trigger'
|
|
|
|
click_on 'New Trigger'
|
|
|
|
|
|
|
|
modal_ready
|
|
|
|
end
|
|
|
|
|
2020-02-20 12:15:03 +00:00
|
|
|
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,
|
|
|
|
}
|
|
|
|
|
2021-08-17 12:06:31 +00:00
|
|
|
open_new_trigger_dialog
|
2020-02-20 12:15:03 +00:00
|
|
|
|
|
|
|
within '.modal .ticket_selector' do
|
|
|
|
find('.js-attributeSelector select').select(attribute.display)
|
|
|
|
|
|
|
|
expect(find('.js-value select')).to be_multiple
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2020-12-14 10:24:53 +00:00
|
|
|
|
|
|
|
it 'sets a customer email address with no @ character' do
|
|
|
|
visit '/#manage/trigger'
|
|
|
|
|
|
|
|
click '.page-header-meta .btn--success'
|
|
|
|
modal_ready
|
|
|
|
|
|
|
|
find(".js-attributeSelector select option[value='customer.email']").select_option
|
|
|
|
fill_in 'condition::customer.email::value', with: 'zammad.com'
|
|
|
|
fill_in 'Name', with: 'trigger 1'
|
|
|
|
click '.js-submit'
|
|
|
|
modal_disappear
|
|
|
|
end
|
2020-02-20 12:15:03 +00:00
|
|
|
end
|
|
|
|
|
2020-02-19 09:25:00 +00:00
|
|
|
context 'Perform' do
|
|
|
|
|
|
|
|
context 'Tags' do
|
|
|
|
|
|
|
|
it 'shows tag selection list in foreground' do
|
|
|
|
tag_item = create :tag_item
|
|
|
|
|
2021-08-17 12:06:31 +00:00
|
|
|
open_new_trigger_dialog
|
2020-02-19 09:25:00 +00:00
|
|
|
|
|
|
|
within '.modal .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
|
|
|
|
|
|
|
|
expect(page).to have_css('.ui-autocomplete.ui-widget-content') { |elem| !elem.obscured? }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2020-10-30 07:59:32 +00:00
|
|
|
|
|
|
|
context 'ajax pagination' do
|
|
|
|
include_examples 'pagination', model: :trigger, klass: Trigger, path: 'manage/trigger'
|
|
|
|
end
|
2021-08-17 12:06:31 +00:00
|
|
|
|
|
|
|
context "with elements which do not support 'has changed' operator" do
|
|
|
|
it "check 'created_at' element" do
|
|
|
|
open_new_trigger_dialog
|
|
|
|
|
|
|
|
within '.modal .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
|
|
|
|
|
|
|
|
it "check 'updated_at' element" do
|
|
|
|
open_new_trigger_dialog
|
|
|
|
|
|
|
|
within '.modal .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
|
2020-02-19 09:25:00 +00:00
|
|
|
end
|