123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234 |
- # Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
- require 'rails_helper'
- RSpec.describe 'Search', type: :system, authenticated: true, searchindex: true do
- let(:users_group) { Group.find_by(name: 'Users') }
- let(:ticket_1) { create(:ticket, title: 'Testing Ticket 1', group: users_group) }
- let(:ticket_2) { create(:ticket, title: 'Testing Ticket 2', group: users_group) }
- let(:note) { 'Test note' }
- before do
- ticket_1 && ticket_2 && configure_elasticsearch(required: true, rebuild: true)
- end
- it 'shows default widgets' do
- fill_in id: 'global-search', with: '"Welcome"'
- click_on 'Show Search Details'
- within '#navigation .tasks a[data-key=Search]' do
- expect(page).to have_content '"Welcome"'
- end
- end
- context 'with ticket search result' do
- before do
- fill_in id: 'global-search', with: 'Testing'
- click_on 'Show Search Details'
- find('[data-tab-content=Ticket]').click
- end
- context 'checkbox' do
- it 'has checkbox for each ticket records' do
- within '.detail-search table.table' do
- expect(page).to have_xpath(".//td[contains(@class, 'js-checkbox-field')]//input[@type='checkbox']", visible: :all, minimum: 2)
- end
- end
- it 'has select all checkbox' do
- within '.detail-search table.table' do
- expect(page).to have_xpath(".//th//input[@type='checkbox' and @name='bulk_all']", visible: :all, count: 1)
- end
- end
- it 'shows bulkform when checkbox is checked' do
- within '.detail-search table.table' do
- find("tr[data-id='#{ticket_1.id}']").check('bulk', allow_label_click: true)
- end
- expect(page).to have_selector('.bulkAction.no-sidebar')
- expect(page).to have_no_selector('.bulkAction.no-sidebar.hide', visible: :all)
- end
- it 'shows bulkform when all checkbox is checked' do
- within '.detail-search table.table' do
- find('th.table-checkbox').check('bulk_all', allow_label_click: true)
- end
- expect(page).to have_selector('.bulkAction.no-sidebar')
- expect(page).to have_no_selector('.bulkAction.no-sidebar.hide', visible: :all)
- end
- it 'hides bulkform when checkbox is unchecked' do
- within '.detail-search table.table' do
- find('th.table-checkbox').check('bulk_all', allow_label_click: true)
- all('.js-tableBody tr.item').each { |row| row.uncheck('bulk', allow_label_click: true) }
- end
- expect(page).to have_selector('.bulkAction.no-sidebar.hide', visible: :hide)
- end
- end
- context 'with bulkform activated' do
- before do
- find('th.table-checkbox').check('bulk_all', allow_label_click: true)
- end
- it 'has group label' do
- within '.bulkAction .bulkAction-form' do
- expect(page).to have_content 'GROUP'
- end
- end
- it 'has owner label' do
- within '.bulkAction .bulkAction-form' do
- expect(page).to have_content 'OWNER'
- end
- end
- it 'has state label' do
- within '.bulkAction .bulkAction-form' do
- expect(page).to have_content 'STATE'
- end
- end
- it 'has priority label' do
- within '.bulkAction .bulkAction-form' do
- expect(page).to have_content 'PRIORITY'
- end
- end
- end
- context 'bulk note' do
- it 'adds note to selected ticket' do
- within :active_content do
- find("tr[data-id='#{ticket_1.id}']").check('bulk', allow_label_click: true)
- click '.js-confirm'
- find('.js-confirm-step textarea').fill_in with: note
- click '.js-submit'
- end
- expect do
- wait.until { ticket_1.articles.last&.body == note }
- end.not_to raise_error
- end
- end
- end
- context 'Organization members', authenticated_as: :authenticate do
- let(:organization) { create(:organization) }
- let(:members) { organization.members.order(id: :asc) }
- def authenticate
- create_list(:customer, 50, organization: organization)
- true
- end
- before do
- fill_in id: 'global-search', with: organization.name.to_s
- end
- it 'shows only first 10 members' do
- expect(page).to have_text(organization.name)
- popover_on_hover(first('a.nav-tab.organization'))
- expect(page).to have_text(members[9].fullname, wait: 30)
- expect(page).to have_no_text(members[10].fullname)
- end
- end
- context 'inactive user and organizations' do
- before do
- create(:organization, name: 'Example Inc.', active: true)
- create(:organization, name: 'Example Inactive Inc.', active: false)
- create(:customer, firstname: 'Firstname', lastname: 'Active', active: true)
- create(:customer, firstname: 'Firstname', lastname: 'Inactive', active: false)
- configure_elasticsearch(rebuild: true)
- end
- it 'check that inactive organizations are marked correctly' do
- fill_in id: 'global-search', with: '"Example"'
- expect(page).to have_css('.nav-tab--search.organization', minimum: 2)
- expect(page).to have_css('.nav-tab--search.organization.is-inactive', count: 1)
- end
- it 'check that inactive users are marked correctly' do
- fill_in id: 'global-search', with: '"Firstname"'
- expect(page).to have_css('.nav-tab--search.user', minimum: 2)
- expect(page).to have_css('.nav-tab--search.user.is-inactive', count: 1)
- end
- it 'check that inactive users are also marked in the popover for the quick search result' do
- fill_in id: 'global-search', with: '"Firstname"'
- popover_on_hover(find('.nav-tab--search.user.is-inactive'))
- expect(page).to have_css('.popover-title .is-inactive', count: 1)
- end
- end
- describe 'Search is not triggered/updated if url of search is updated new search item or new search is triggered via global search #3873' do
- context 'when search changed via input box' do
- before do
- visit '#search'
- end
- it 'does switch search results properly' do
- page.find('.js-search').fill_in(with: '"Testing Ticket 1"', fill_options: { clear: :backspace })
- expect(page.find('.js-tableBody')).to have_text('Testing Ticket 1')
- expect(page.find('.js-tableBody')).to have_no_text('Testing Ticket 2')
- expect(current_url).to include('Testing%20Ticket%201')
- # switch by global search
- page.find('.js-search').fill_in(with: '"Testing Ticket 2"', fill_options: { clear: :backspace })
- expect(page.find('.js-tableBody')).to have_text('Testing Ticket 2')
- expect(page.find('.js-tableBody')).to have_no_text('Testing Ticket 1')
- expect(current_url).to include('Testing%20Ticket%202')
- end
- end
- context 'when search changed via global search' do
- before do
- fill_in id: 'global-search', with: '"Testing Ticket 1"'
- click_on 'Show Search Details'
- end
- it 'does switch search results properly' do
- expect(page.find('.js-tableBody')).to have_text('Testing Ticket 1')
- expect(page.find('.js-tableBody')).to have_no_text('Testing Ticket 2')
- expect(current_url).to include('Testing%20Ticket%201')
- # switch by global search
- fill_in id: 'global-search', with: '"Testing Ticket 2"'
- click_on 'Show Search Details'
- expect(page.find('.js-tableBody')).to have_text('Testing Ticket 2')
- expect(page.find('.js-tableBody')).to have_no_text('Testing Ticket 1')
- expect(current_url).to include('Testing%20Ticket%202')
- end
- end
- context 'when search is changed via url' do
- before do
- visit '#search/"Testing Ticket 1"'
- end
- it 'does switch search results properly' do
- expect(page.find('.js-tableBody')).to have_text('Testing Ticket 1')
- expect(page.find('.js-tableBody')).to have_no_text('Testing Ticket 2')
- expect(current_url).to include('Testing%20Ticket%201')
- # switch by url
- visit '#search/"Testing Ticket 2"'
- expect(page.find('.js-tableBody')).to have_text('Testing Ticket 2')
- expect(page.find('.js-tableBody')).to have_no_text('Testing Ticket 1')
- expect(current_url).to include('Testing%20Ticket%202')
- end
- end
- end
- end
|