123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359 |
- # Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
- require 'rails_helper'
- RSpec.describe 'Overview', type: :system do
- context 'when logged in as customer', authenticated_as: :customer do
- let!(:customer) { create(:customer) }
- let!(:main_overview) { create(:overview) }
- let!(:other_overview) do
- create(:overview, condition: {
- 'ticket.state_id' => {
- operator: 'is',
- value: Ticket::State.where(name: %w[merged]).pluck(:id),
- },
- })
- end
- it 'shows create button when customer has no tickets' do
- visit "ticket/view/#{main_overview.link}"
- within :active_content do
- expect(page).to have_text 'Create your first ticket'
- end
- end
- def authenticate
- Setting.set('customer_ticket_create', false)
- customer
- end
- it 'does not show create button when ticket creation via web is disabled', authenticated_as: :authenticate do
- visit "ticket/view/#{main_overview.link}"
- within :active_content do
- expect(page).to have_text 'You currently don\'t have any tickets.'
- end
- end
- it 'shows overview-specific message if customer has tickets in other overview', performs_jobs: true do
- perform_enqueued_jobs only: TicketUserTicketCounterJob do
- create(:ticket, customer: customer)
- end
- visit "ticket/view/#{other_overview.link}"
- within :active_content do
- expect(page).to have_text 'You have no tickets'
- end
- end
- it 'replaces button with overview-specific message when customer creates a ticket', performs_jobs: true do
- visit "ticket/view/#{other_overview.link}"
- visit 'customer_ticket_new'
- find('[name=title]').fill_in with: 'Title'
- find(:richtext).send_keys 'content'
- find('[name=group_id]').select Group.first.name
- click '.js-submit'
- perform_enqueued_jobs only: TicketUserTicketCounterJob
- visit "ticket/view/#{other_overview.link}"
- within :active_content do
- expect(page).to have_text 'You have no tickets'
- end
- end
- end
- context 'sorting when group by is set', authenticated_as: :user do
- let(:user) { create(:agent, groups: [group_c, group_a, group_b]) }
- let(:group_a) { create(:group, name: 'aaa') }
- let(:group_b) { create(:group, name: 'bbb') }
- let(:group_c) { create(:group, name: 'ccc') }
- let(:ticket1) { create(:ticket, group: group_a, priority_id: 1, customer: user) }
- let(:ticket2) { create(:ticket, group: group_c, priority_id: 2, customer: user) }
- let(:ticket3) { create(:ticket, group: group_b, priority_id: 3, customer: user) }
- let(:overview) do
- create(:overview, group_by: group_key, group_direction: group_direction, condition: {
- 'ticket.customer_id' => {
- operator: 'is',
- value: user.id
- }
- })
- end
- before do
- ticket1 && ticket2 && ticket3
- visit "ticket/view/#{overview.link}"
- end
- context 'when grouping by priority' do
- let(:group_key) { 'priority' }
- context 'when group direction is default' do
- let(:group_direction) { nil }
- it 'sorts groups 1 > 3' do
- within :active_content do
- expect(all('.table-overview table b').map(&:text)).to eq ['1 low', '2 normal', '3 high']
- end
- end
- it 'does not show duplicates when any ticket attribute is updated using bulk update' do
- find("tr[data-id='#{ticket3.id}']").check('bulk', allow_label_click: true)
- select '2 normal', from: 'priority_id'
- click '.js-confirm'
- find('.js-confirm-step textarea').fill_in with: 'test tickets ordering'
- click '.js-submit'
- within :active_content do
- expect(page).to have_css("tr[data-id='#{ticket3.id}']", count: 1)
- end
- end
- end
- context 'when group direction is ASC' do
- let(:group_direction) { 'ASC' }
- it 'sorts groups 1 > 3' do
- within :active_content do
- expect(all('.table-overview table b').map(&:text)).to eq ['1 low', '2 normal', '3 high']
- end
- end
- end
- context 'when group direction is DESC' do
- let(:group_direction) { 'DESC' }
- it 'sorts groups 3 > 1' do
- within :active_content do
- expect(all('.table-overview table b').map(&:text)).to eq ['3 high', '2 normal', '1 low']
- end
- end
- end
- end
- context 'when grouping by groups' do
- let(:group_key) { 'group' }
- let(:group_direction) { 'ASC' }
- it 'sorts groups a > b > c' do
- within :active_content do
- expect(all('.table-overview table b').map(&:text)).to eq %w[aaa bbb ccc]
- end
- end
- end
- context 'when grouping by tree_selects', authenticated_as: :authenticate, db_strategy: :reset do
- def authenticate
- create(:object_manager_attribute_tree_select, name: 'tree_select_field', display: 'Tree Select Field', data_option: data_option)
- ObjectManager::Attribute.migration_execute
- user
- end
- let(:data_option) do
- {
- 'options' => [
- {
- 'name' => 'a',
- 'value' => 'a',
- 'children' => [
- {
- 'name' => '1',
- 'value' => 'a::1',
- }
- ]
- },
- {
- 'name' => 'b',
- 'value' => 'b',
- 'children' => [
- {
- 'name' => '1',
- 'value' => 'b::1',
- },
- {
- 'name' => '2',
- 'value' => 'b::2',
- }
- ]
- },
- {
- 'name' => 'c',
- 'value' => 'c',
- 'children' => [
- {
- 'name' => '1',
- 'value' => 'c::1',
- },
- {
- 'name' => '2',
- 'value' => 'c::2',
- },
- {
- 'name' => '3',
- 'value' => 'c::3',
- },
- ]
- },
- ],
- 'default' => '',
- 'null' => true,
- 'relation' => '',
- 'maxlength' => 255,
- 'nulloption' => true,
- }
- end
- let(:ticket1) { create(:ticket, group: group_a, priority_id: 1, customer: user, tree_select_field: 'a::1') }
- let(:ticket2) { create(:ticket, group: group_c, priority_id: 2, customer: user, tree_select_field: 'b::2') }
- let(:ticket3) { create(:ticket, group: group_b, priority_id: 3, customer: user, tree_select_field: 'c::3') }
- let(:group_key) { 'tree_select_field' }
- context 'when group direction is default' do
- let(:group_direction) { nil }
- it 'sorts groups a::1 > b::2 > c::3' do
- within :active_content do
- expect(all('.table-overview table b').map(&:text)).to eq %w[a::1 b::2 c::3]
- end
- end
- end
- context 'when group direction is ASC' do
- let(:group_direction) { 'ASC' }
- it 'sorts groups a::1 > b::2 > c::3' do
- within :active_content do
- expect(all('.table-overview table b').map(&:text)).to eq %w[a::1 b::2 c::3]
- end
- end
- end
- context 'when group direction is DESC' do
- let(:group_direction) { 'DESC' }
- it 'sorts groups c::3 > b::2 > a::1' do
- within :active_content do
- expect(all('.table-overview table b').map(&:text)).to eq %w[c::3 b::2 a::1]
- end
- end
- end
- end
- end
- context 'when multiselect is choosen as column', authenticated_as: :authenticate, db_strategy: :reset, mariadb: true do
- def authenticate
- create :object_manager_attribute_multiselect, data_option: data_option, name: attribute_name
- ObjectManager::Attribute.migration_execute
- user
- end
- let(:user) { create(:agent, groups: [group]) }
- let(:attribute_name) { 'multiselect' }
- let(:options_hash) do
- {
- 'key_1' => 'display_value_1',
- 'key_2' => 'display_value_2',
- 'key_3' => 'display_value_3',
- 'key_4' => 'display_value_4',
- 'key_5' => 'display_value_5'
- }
- end
- let(:data_option) { { options: options_hash, default: '' } }
- let(:group) { create(:group, name: 'aaa') }
- let(:ticket) { create(:ticket, group: group, customer: user, multiselect: multiselect_value) }
- let(:view) { { 's'=>%w[number title multiselect] } }
- let(:condition) do
- {
- 'ticket.customer_id' => {
- operator: 'is',
- value: user.id
- }
- }
- end
- let(:overview) { create(:overview, condition: condition, view: view) }
- let(:overview_table_selector) { '.table-overview .js-tableBody' }
- before do
- ticket
- visit "ticket/view/#{overview.link}"
- end
- context 'with nil multiselect value' do
- let(:multiselect_value) { nil }
- let(:expected_text) { '-' }
- it "shows dash '-' for tickets" do
- within :active_content, overview_table_selector do
- expect(page).to have_selector 'tr.item td', text: expected_text
- end
- end
- end
- context 'with a single multiselect value' do
- let(:multiselect_value) { ['key_4'] }
- let(:expected_text) { 'display_value_4' }
- it 'shows the display value for tickets' do
- within :active_content, overview_table_selector do
- expect(page).to have_selector 'tr.item td', text: expected_text
- end
- end
- end
- context 'with multiple multiselect values' do
- let(:multiselect_value) { %w[key_2 key_3 key_5] }
- let(:expected_text) { 'display_value_2, display_value_3, display_value_5' }
- it 'shows comma seperated diaplay value for tickets' do
- within :active_content, overview_table_selector do
- expect(page).to have_selector 'tr.item td', text: expected_text
- end
- end
- end
- end
- context 'when only one attribute is visible', authenticated_as: :user do
- let(:user) { create(:agent, groups: [group]) }
- let(:group) { create(:group, name: 'aaa') }
- let(:ticket) { create(:ticket, group: group, customer: user) }
- let(:view) { { 's' => %w[title] } }
- let(:condition) do
- {
- 'ticket.customer_id' => {
- operator: 'is',
- value: user.id
- }
- }
- end
- let(:overview) { create(:overview, condition: condition, view: view) }
- let(:overview_table_head_selector) { 'div.table-overview table.table thead' }
- let(:expected_header_text) { 'TITLE' }
- before do
- ticket
- visit "ticket/view/#{overview.link}"
- end
- it 'shows only the title column' do
- within :active_content, overview_table_head_selector do
- expect(page).to have_css('th.js-tableHead[data-column-key="title"]', text: expected_header_text)
- end
- end
- end
- end
|