2020-03-09 11:27:52 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-19 08:22:36 +01:00
|
|
|
require 'rails_helper'
|
2017-01-01 13:41:28 +01:00
|
|
|
require 'pp'
|
2016-02-19 08:22:36 +01:00
|
|
|
|
2020-03-09 11:27:52 +01:00
|
|
|
RSpec.feature 'Basic search', type: :feature, elasticsearch: true do
|
2016-02-20 07:48:01 +01:00
|
|
|
before(:each) do
|
2018-03-18 21:21:59 +01:00
|
|
|
@papers = FactoryBot.create_list(:paper, 11)
|
2016-02-20 07:48:01 +01:00
|
|
|
Paper.__elasticsearch__.refresh_index!
|
|
|
|
end
|
|
|
|
|
2020-03-09 11:27:52 +01:00
|
|
|
scenario 'It displays the search form' do
|
|
|
|
visit search_path body: 'leipzig'
|
|
|
|
expect(page).to have_content('Stadtratmonitor')
|
|
|
|
expect(page).to have_field('paper_search_query')
|
|
|
|
expect(page).to have_select('Typ')
|
|
|
|
expect(page).to have_select('Einreicher')
|
|
|
|
expect(page).to have_selector('label', text: 'Sortierung')
|
|
|
|
expect(page).to have_field('paper_search_sort_by_date', type: 'radio')
|
|
|
|
expect(page).to have_field('paper_search_sort_by_score', type: 'radio')
|
2016-02-19 08:22:36 +01:00
|
|
|
end
|
|
|
|
|
2020-03-09 11:27:52 +01:00
|
|
|
scenario 'With empty query displays all documents' do
|
|
|
|
visit search_path body: 'leipzig'
|
|
|
|
expect(page).to have_selector('ul#search_results')
|
2016-02-20 07:48:01 +01:00
|
|
|
expect(page).to have_content("#{@papers.size} Dokumente in der Datenbank")
|
2016-02-19 08:22:36 +01:00
|
|
|
end
|
|
|
|
|
2020-03-09 11:27:52 +01:00
|
|
|
scenario 'Search results are paginated' do
|
|
|
|
visit search_path body: 'leipzig'
|
|
|
|
expect(page).to have_css('li.search-result', count: 10)
|
|
|
|
expect(page).to have_css('div#pagination')
|
|
|
|
within('div#pagination') do
|
|
|
|
expect(page).to have_css('li', count: 4) # two pages + next + last
|
|
|
|
expect(page).to have_css('li.current', text: '1')
|
|
|
|
expect(page).to have_link('2')
|
|
|
|
expect(page).to have_link('Weiter')
|
|
|
|
expect(page).to have_link('Ende')
|
2016-02-24 11:39:12 +01:00
|
|
|
end
|
|
|
|
|
2020-03-09 11:27:52 +01:00
|
|
|
page.find('div#pagination').click_link('2')
|
|
|
|
expect(page).to have_css('li.search-result', count: 1)
|
|
|
|
within('div#pagination') do
|
|
|
|
expect(page).to have_css('li.current', text: '2')
|
2016-02-24 11:39:12 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-03-09 11:27:52 +01:00
|
|
|
scenario 'Search results have basic information' do
|
|
|
|
visit search_path body: 'leipzig'
|
2016-02-23 11:37:20 +01:00
|
|
|
paper = @papers.first
|
2020-03-09 13:02:36 +01:00
|
|
|
result_entry = page.find('li.search-result', match: :first)
|
|
|
|
expect(result_entry).to have_content(paper.name)
|
2017-01-01 13:41:28 +01:00
|
|
|
|
2020-03-09 13:02:36 +01:00
|
|
|
result_subentry = result_entry.find('li.current', match: :first)
|
|
|
|
linkname = get_linkname(paper)
|
|
|
|
expect(result_subentry).to have_link(linkname, href: paper.url)
|
2017-01-01 13:41:28 +01:00
|
|
|
end
|
|
|
|
|
2020-03-09 13:02:36 +01:00
|
|
|
def get_linkname(paper)
|
|
|
|
date = I18n.l(paper.published_at.to_date)
|
|
|
|
originator = (paper.originator.is_a?(Array) ?
|
2020-03-09 11:27:52 +01:00
|
|
|
paper.originator.join(', ') : paper.originator)
|
2020-03-09 13:02:36 +01:00
|
|
|
"#{date}: #{paper.paper_type} von #{originator}"
|
2016-02-23 11:37:20 +01:00
|
|
|
end
|
|
|
|
|
2020-03-09 11:27:52 +01:00
|
|
|
scenario 'Finds papers by name' do
|
|
|
|
paper = FactoryBot.create(:paper, name: 'Opendata als default')
|
2016-03-05 12:40:35 +01:00
|
|
|
Paper.__elasticsearch__.refresh_index!
|
2020-03-09 11:27:52 +01:00
|
|
|
visit search_path body: 'leipzig', paper_search: { query: 'Opendata' }
|
|
|
|
expect(page).to have_content('1 Dokument in der Datenbank')
|
2020-03-09 13:02:36 +01:00
|
|
|
result_entry = page.find('li.search-result', match: :first)
|
|
|
|
expect(result_entry).to have_content(paper.name)
|
2017-01-01 13:41:28 +01:00
|
|
|
|
2020-03-09 13:02:36 +01:00
|
|
|
result_subentry = result_entry.find('li.current', match: :first)
|
|
|
|
linkname = get_linkname(paper)
|
|
|
|
expect(result_subentry).to have_link(linkname, href: paper.url)
|
2016-03-05 12:40:35 +01:00
|
|
|
end
|
|
|
|
|
2020-03-09 11:27:52 +01:00
|
|
|
scenario 'Finds papers by content' do
|
2018-03-18 21:21:59 +01:00
|
|
|
paper = FactoryBot.create(:paper,
|
2020-03-09 11:27:52 +01:00
|
|
|
name: 'Opendata als default',
|
|
|
|
content: 'Alle Verwaltungsdokumente werden als Opendata veröffentlicht')
|
2016-03-05 12:40:35 +01:00
|
|
|
Paper.__elasticsearch__.refresh_index!
|
2020-03-09 11:27:52 +01:00
|
|
|
visit search_path body: 'leipzig', paper_search: { query: 'Verwaltungsdokumente' }
|
|
|
|
expect(page).to have_content('1 Dokument in der Datenbank')
|
2020-03-09 13:02:36 +01:00
|
|
|
result_entry = page.find('li.search-result', match: :first)
|
|
|
|
expect(result_entry).to have_content(paper.name)
|
2017-01-01 13:41:28 +01:00
|
|
|
|
2020-03-09 13:02:36 +01:00
|
|
|
result_subentry = result_entry.find('li.current', match: :first)
|
|
|
|
linkname = get_linkname(paper)
|
|
|
|
expect(result_subentry).to have_link(linkname, href: paper.url)
|
2016-03-05 12:40:35 +01:00
|
|
|
end
|
|
|
|
|
2020-03-09 11:27:52 +01:00
|
|
|
scenario 'Papers with common reference id in search result ordered by date' do
|
2020-03-09 13:02:36 +01:00
|
|
|
main_paper = FactoryBot.create(:paper, published_at: '2016-12-19T19:00:00',
|
|
|
|
name: 'Opendata als default', reference: 'VI-0815')
|
|
|
|
new_paper = FactoryBot.create(:paper, published_at: '2016-12-23T12:00:00',
|
|
|
|
name: 'Opendata als optional', reference: 'VI-0815-ÄA-01')
|
2017-01-01 13:41:28 +01:00
|
|
|
Paper.__elasticsearch__.refresh_index!
|
2020-03-09 11:27:52 +01:00
|
|
|
visit search_path body: 'leipzig', paper_search: { query: 'default' }
|
|
|
|
expect(page).to have_content('1 Dokument in der Datenbank')
|
2020-03-09 13:02:36 +01:00
|
|
|
result_entry = page.find('li.search-result', match: :first)
|
|
|
|
expect(result_entry).to have_content(main_paper.name)
|
2017-01-01 13:41:28 +01:00
|
|
|
|
2020-03-09 13:02:36 +01:00
|
|
|
result_subentry1 = result_entry.find('li.current', match: :first)
|
|
|
|
linkname1 = get_linkname(main_paper)
|
|
|
|
expect(result_subentry1).to have_link(linkname1, href: main_paper.url)
|
2017-01-01 13:41:28 +01:00
|
|
|
|
2020-03-09 13:02:36 +01:00
|
|
|
result_subentries = result_entry.find('ul').all('li')
|
|
|
|
linkname2 = get_linkname(new_paper)
|
|
|
|
expect(result_subentries[0]).to have_link(linkname2, href: new_paper.url)
|
|
|
|
expect(result_subentries[1]).to have_link(linkname1, href: main_paper.url)
|
2017-01-01 13:41:28 +01:00
|
|
|
end
|
|
|
|
|
2020-03-09 11:27:52 +01:00
|
|
|
scenario 'Papers with common reference id in search result ordered by ref' do
|
2020-03-09 13:02:36 +01:00
|
|
|
main_paper = FactoryBot.create(:paper, published_at: '2016-12-19T19:00:00',
|
|
|
|
name: 'Opendata als default', reference: 'VI-0815')
|
|
|
|
new_paper1 = FactoryBot.create(:paper, published_at: '2016-12-23T12:00:00',
|
|
|
|
name: 'Opendata als optional', reference: 'VI-0815-ÄA-02')
|
|
|
|
new_paper2 = FactoryBot.create(:paper, published_at: '2016-12-23T12:00:00',
|
|
|
|
name: 'Opendata als optional', reference: 'VI-0815-ÄA-01')
|
2017-01-01 13:41:28 +01:00
|
|
|
Paper.__elasticsearch__.refresh_index!
|
2020-03-09 11:27:52 +01:00
|
|
|
visit search_path body: 'leipzig', paper_search: { query: 'default' }
|
|
|
|
expect(page).to have_content('1 Dokument in der Datenbank')
|
2020-03-09 13:02:36 +01:00
|
|
|
result_entry = page.find('li.search-result', match: :first)
|
2017-01-01 13:41:28 +01:00
|
|
|
|
2020-03-09 13:02:36 +01:00
|
|
|
result_subentries = result_entry.find('ul').all('li')
|
|
|
|
linkname1 = get_linkname(new_paper1)
|
|
|
|
expect(result_subentries[0]).to have_link(linkname1, href: new_paper1.url)
|
|
|
|
linkname2 = get_linkname(new_paper2)
|
|
|
|
expect(result_subentries[1]).to have_link(linkname2, href: new_paper2.url)
|
|
|
|
linkname3 = get_linkname(main_paper)
|
|
|
|
expect(result_subentries[2]).to have_link(linkname3, href: main_paper.url)
|
2017-01-01 13:41:28 +01:00
|
|
|
end
|
2017-01-05 22:14:07 +01:00
|
|
|
|
2020-03-09 11:27:52 +01:00
|
|
|
scenario 'Papers with common reference id handled also for missing prefix' do
|
2020-03-09 13:02:36 +01:00
|
|
|
main_paper = FactoryBot.create(:paper, published_at: '2016-12-19T19:00:00',
|
|
|
|
name: 'Opendata als default', reference: 'VI-0815')
|
|
|
|
new_paper1 = FactoryBot.create(:paper, published_at: '2016-12-23T12:00:00',
|
|
|
|
name: 'Opendata als optional', reference: 'VI-0815-NF-01')
|
|
|
|
new_paper2 = FactoryBot.create(:paper, published_at: '2016-12-23T12:00:00',
|
|
|
|
name: 'Opendata als nicht optional', reference: '-0815-NF-01-ÄA-01')
|
2017-01-05 22:14:07 +01:00
|
|
|
Paper.__elasticsearch__.refresh_index!
|
2020-03-09 11:27:52 +01:00
|
|
|
visit search_path body: 'leipzig', paper_search: { query: 'default' }
|
|
|
|
expect(page).to have_content('1 Dokument in der Datenbank')
|
2020-03-09 13:02:36 +01:00
|
|
|
result_entry = page.find('li.search-result', match: :first)
|
2017-01-05 22:14:07 +01:00
|
|
|
|
2020-03-09 13:02:36 +01:00
|
|
|
result_subentries = result_entry.find('ul').all('li')
|
|
|
|
linkname1 = get_linkname(new_paper1)
|
|
|
|
expect(result_subentries[0]).to have_link(linkname1, href: new_paper1.url)
|
|
|
|
linkname2 = get_linkname(new_paper2)
|
|
|
|
expect(result_subentries[1]).to have_link(linkname2, href: new_paper2.url)
|
|
|
|
linkname3 = get_linkname(main_paper)
|
|
|
|
expect(result_subentries[2]).to have_link(linkname3, href: main_paper.url)
|
2017-01-05 22:14:07 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
scenario "Finds 'Testen' with search 'Test'" do
|
2020-03-09 11:27:52 +01:00
|
|
|
paper = FactoryBot.create(:paper, name: 'Testen')
|
2017-01-05 22:14:07 +01:00
|
|
|
Paper.__elasticsearch__.refresh_index!
|
2020-03-09 11:27:52 +01:00
|
|
|
visit search_path body: 'leipzig', paper_search: { query: 'Test' }
|
|
|
|
expect(page).to have_content('1 Dokument in der Datenbank')
|
2020-03-09 13:02:36 +01:00
|
|
|
result_entry = page.find('li.search-result', match: :first)
|
|
|
|
expect(result_entry).to have_content(paper.name)
|
2017-01-05 22:14:07 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
scenario "Finds 'Test' with search 'Testen'" do
|
2020-03-09 11:27:52 +01:00
|
|
|
paper = FactoryBot.create(:paper, name: 'Test')
|
2017-01-05 22:14:07 +01:00
|
|
|
Paper.__elasticsearch__.refresh_index!
|
2020-03-09 11:27:52 +01:00
|
|
|
visit search_path body: 'leipzig', paper_search: { query: 'Testen' }
|
|
|
|
expect(page).to have_content('1 Dokument in der Datenbank')
|
2020-03-09 13:02:36 +01:00
|
|
|
result_entry = page.find('li.search-result', match: :first)
|
|
|
|
expect(result_entry).to have_content(paper.name)
|
2017-01-05 22:14:07 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
scenario "Finds 'Fahrräderverleih' with search 'Fahrrad'" do
|
2020-03-09 11:27:52 +01:00
|
|
|
paper = FactoryBot.create(:paper, name: 'Fahrräderverleih')
|
2017-01-05 22:14:07 +01:00
|
|
|
Paper.__elasticsearch__.refresh_index!
|
2020-03-09 11:27:52 +01:00
|
|
|
visit search_path body: 'leipzig', paper_search: { query: 'Fahrrad' }
|
|
|
|
expect(page).to have_content('1 Dokument in der Datenbank')
|
2020-03-09 13:02:36 +01:00
|
|
|
result_entry = page.find('li.search-result', match: :first)
|
|
|
|
expect(result_entry).to have_content(paper.name)
|
2017-01-05 22:14:07 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
scenario "Finds 'Fahrräderverleih' with search 'Fahrräder'" do
|
2020-03-09 11:27:52 +01:00
|
|
|
paper = FactoryBot.create(:paper, name: 'Fahrräderverleih')
|
2017-01-05 22:14:07 +01:00
|
|
|
Paper.__elasticsearch__.refresh_index!
|
2020-03-09 11:27:52 +01:00
|
|
|
visit search_path body: 'leipzig', paper_search: { query: 'Fahrräder' }
|
|
|
|
expect(page).to have_content('1 Dokument in der Datenbank')
|
2020-03-09 13:02:36 +01:00
|
|
|
result_entry = page.find('li.search-result', match: :first)
|
|
|
|
expect(result_entry).to have_content(paper.name)
|
2017-01-05 22:14:07 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
scenario "Finds 'Fahrräderverleih' with search 'Verleih'" do
|
2020-03-09 11:27:52 +01:00
|
|
|
paper = FactoryBot.create(:paper, name: 'Fahrräderverleih')
|
2017-01-05 22:14:07 +01:00
|
|
|
Paper.__elasticsearch__.refresh_index!
|
2020-03-09 11:27:52 +01:00
|
|
|
visit search_path body: 'leipzig', paper_search: { query: 'Verleih' }
|
|
|
|
expect(page).to have_content('1 Dokument in der Datenbank')
|
2020-03-09 13:02:36 +01:00
|
|
|
result_entry = page.find('li.search-result', match: :first)
|
|
|
|
expect(result_entry).to have_content(paper.name)
|
2017-01-05 22:14:07 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
scenario "Finds 'Fahrräderverleih' with search 'Autoverleih'" do
|
2020-03-09 11:27:52 +01:00
|
|
|
paper = FactoryBot.create(:paper, name: 'Fahrräderverleih')
|
2017-01-05 22:14:07 +01:00
|
|
|
Paper.__elasticsearch__.refresh_index!
|
2020-03-09 11:27:52 +01:00
|
|
|
visit search_path body: 'leipzig', paper_search: { query: 'Autoverleih' }
|
|
|
|
expect(page).to have_content('1 Dokument in der Datenbank')
|
2020-03-09 13:02:36 +01:00
|
|
|
result_entry = page.find('li.search-result', match: :first)
|
|
|
|
expect(result_entry).to have_content(paper.name)
|
2017-01-05 22:14:07 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
scenario "Finds no 'Fahrrad' with search 'Rad'" do
|
2020-03-09 14:55:53 +01:00
|
|
|
FactoryBot.create(:paper, name: 'Fahrrad')
|
2017-01-05 22:14:07 +01:00
|
|
|
Paper.__elasticsearch__.refresh_index!
|
2020-03-09 11:27:52 +01:00
|
|
|
visit search_path body: 'leipzig', paper_search: { query: 'Rad' }
|
|
|
|
expect(page).to have_content('0 Dokumente in der Datenbank')
|
2017-01-05 22:14:07 +01:00
|
|
|
end
|
|
|
|
|
2020-03-09 11:27:52 +01:00
|
|
|
scenario 'Papers with reference id having slash is escaped' do
|
2020-03-09 13:02:36 +01:00
|
|
|
main_paper = FactoryBot.create(:paper, published_at: '2016-12-19T19:00:00',
|
|
|
|
name: 'Opendata als default', reference: 'VI-00768/14')
|
|
|
|
new_paper = FactoryBot.create(:paper, published_at: '2016-12-23T12:00:00',
|
|
|
|
name: 'Opendata als optional', reference: 'VI-00768/14-ÄA-01')
|
2018-02-18 23:26:30 +01:00
|
|
|
Paper.__elasticsearch__.refresh_index!
|
2020-03-09 11:27:52 +01:00
|
|
|
visit search_path body: 'leipzig', paper_search: { query: 'default' }
|
|
|
|
expect(page).to have_content('1 Dokument in der Datenbank')
|
2020-03-09 13:02:36 +01:00
|
|
|
result_entry = page.find('li.search-result', match: :first)
|
|
|
|
expect(result_entry).to have_content(main_paper.name)
|
2018-02-18 23:26:30 +01:00
|
|
|
|
2020-03-09 13:02:36 +01:00
|
|
|
result_subentry1 = result_entry.find('li.current', match: :first)
|
|
|
|
linkname1 = get_linkname(main_paper)
|
|
|
|
expect(result_subentry1).to have_link(linkname1, href: main_paper.url)
|
2018-02-18 23:26:30 +01:00
|
|
|
|
2020-03-09 13:02:36 +01:00
|
|
|
result_subentries = result_entry.find('ul').all('li')
|
|
|
|
linkname2 = get_linkname(new_paper)
|
|
|
|
expect(result_subentries[0]).to have_link(linkname2, href: new_paper.url)
|
|
|
|
expect(result_subentries[1]).to have_link(linkname1, href: main_paper.url)
|
2018-02-18 23:26:30 +01:00
|
|
|
end
|
2016-02-19 08:22:36 +01:00
|
|
|
end
|