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
|
|
|
|
|
|
|
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
|
|
|
|
|
2016-02-19 08:22:36 +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")
|
|
|
|
end
|
|
|
|
|
2016-02-24 11:39:12 +01:00
|
|
|
scenario "With empty query displays all documents" do
|
2016-02-19 08:22:36 +01:00
|
|
|
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
|
|
|
|
|
2016-02-24 11:39:12 +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")
|
|
|
|
end
|
|
|
|
|
|
|
|
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")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-02-23 11:37:20 +01:00
|
|
|
scenario "Search results have basic information" do
|
|
|
|
visit search_path body: "leipzig"
|
|
|
|
paper = @papers.first
|
2017-01-01 13:41:28 +01:00
|
|
|
resultEntry = page.find("li.search-result", match: :first)
|
|
|
|
expect(resultEntry).to have_content(paper.name)
|
|
|
|
|
|
|
|
resultSubEntry = resultEntry.find("li.current", match: :first)
|
|
|
|
linkName = getLinkName(paper)
|
|
|
|
expect(resultSubEntry).to have_link(linkName, href: paper.url)
|
|
|
|
end
|
|
|
|
|
|
|
|
def getLinkName(paper)
|
|
|
|
dateStr = I18n.l(paper.published_at.to_date)
|
|
|
|
originatorStr = (paper.originator.kind_of?(Array) ?
|
|
|
|
paper.originator.join(", ") : paper.originator)
|
|
|
|
return "#{dateStr}: #{paper.paper_type} von #{originatorStr}"
|
2016-02-23 11:37:20 +01:00
|
|
|
end
|
|
|
|
|
2016-03-05 12:40:35 +01:00
|
|
|
scenario "Finds papers by name" do
|
2018-03-18 21:21:59 +01:00
|
|
|
paper = FactoryBot.create(:paper, name: "Opendata als default")
|
2016-03-05 12:40:35 +01:00
|
|
|
Paper.__elasticsearch__.refresh_index!
|
|
|
|
visit search_path body: "leipzig", paper_search: {query: "Opendata"}
|
|
|
|
expect(page).to have_content("1 Dokument in der Datenbank")
|
2017-01-01 13:41:28 +01:00
|
|
|
resultEntry = page.find("li.search-result", match: :first)
|
|
|
|
expect(resultEntry).to have_content(paper.name)
|
|
|
|
|
|
|
|
resultSubEntry = resultEntry.find("li.current", match: :first)
|
|
|
|
linkName = getLinkName(paper)
|
|
|
|
expect(resultSubEntry).to have_link(linkName, href: paper.url)
|
2016-03-05 12:40:35 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
scenario "Finds papers by content" do
|
2018-03-18 21:21:59 +01:00
|
|
|
paper = FactoryBot.create(:paper,
|
2016-03-05 12:40:35 +01:00
|
|
|
name: "Opendata als default",
|
|
|
|
content: "Alle Verwaltungsdokumente werden als Opendata veröffentlicht"
|
|
|
|
)
|
|
|
|
Paper.__elasticsearch__.refresh_index!
|
|
|
|
visit search_path body: "leipzig", paper_search: {query: "Verwaltungsdokumente"}
|
|
|
|
expect(page).to have_content("1 Dokument in der Datenbank")
|
2017-01-01 13:41:28 +01:00
|
|
|
resultEntry = page.find("li.search-result", match: :first)
|
|
|
|
expect(resultEntry).to have_content(paper.name)
|
|
|
|
|
|
|
|
resultSubEntry = resultEntry.find("li.current", match: :first)
|
|
|
|
linkName = getLinkName(paper)
|
|
|
|
expect(resultSubEntry).to have_link(linkName, href: paper.url)
|
2016-03-05 12:40:35 +01:00
|
|
|
end
|
|
|
|
|
2017-01-01 13:41:28 +01:00
|
|
|
scenario "Papers with common reference id in search result ordered by date" do
|
2018-03-18 21:21:59 +01:00
|
|
|
mainPaper = FactoryBot.create(:paper, published_at: '2016-12-19T19:00:00',
|
2017-01-01 13:41:28 +01:00
|
|
|
name: "Opendata als default", reference: "VI-0815")
|
2018-03-18 21:21:59 +01:00
|
|
|
newPaper = FactoryBot.create(:paper, published_at: '2016-12-23T12:00:00',
|
2017-01-01 13:41:28 +01:00
|
|
|
name: "Opendata als optional", reference: "VI-0815-ÄA-01")
|
|
|
|
Paper.__elasticsearch__.refresh_index!
|
|
|
|
visit search_path body: "leipzig", paper_search: {query: "default"}
|
|
|
|
expect(page).to have_content("1 Dokument in der Datenbank")
|
|
|
|
resultEntry = page.find("li.search-result", match: :first)
|
|
|
|
expect(resultEntry).to have_content(mainPaper.name)
|
|
|
|
|
|
|
|
resultSubEntry1 = resultEntry.find("li.current", match: :first)
|
|
|
|
linkName1 = getLinkName(mainPaper)
|
|
|
|
expect(resultSubEntry1).to have_link(linkName1, href: mainPaper.url)
|
|
|
|
|
|
|
|
resultSubEntries = resultEntry.find("ul").all("li")
|
|
|
|
linkName2 = getLinkName(newPaper)
|
|
|
|
expect(resultSubEntries[1]).to have_link(linkName2, href: newPaper.url)
|
|
|
|
end
|
|
|
|
|
|
|
|
scenario "Papers with common reference id in search result ordered by ref" do
|
2018-03-18 21:21:59 +01:00
|
|
|
mainPaper = FactoryBot.create(:paper, published_at: '2016-12-19T19:00:00',
|
2017-01-01 13:41:28 +01:00
|
|
|
name: "Opendata als default", reference: "VI-0815")
|
2018-03-18 21:21:59 +01:00
|
|
|
newPaper1 = FactoryBot.create(:paper, published_at: '2016-12-23T12:00:00',
|
2017-01-01 13:41:28 +01:00
|
|
|
name: "Opendata als optional", reference: "VI-0815-ÄA-02")
|
2018-03-18 21:21:59 +01:00
|
|
|
newPaper2 = FactoryBot.create(:paper, published_at: '2016-12-23T12:00:00',
|
2017-01-01 13:41:28 +01:00
|
|
|
name: "Opendata als optional", reference: "VI-0815-ÄA-01")
|
|
|
|
Paper.__elasticsearch__.refresh_index!
|
|
|
|
visit search_path body: "leipzig", paper_search: {query: "default"}
|
|
|
|
expect(page).to have_content("1 Dokument in der Datenbank")
|
|
|
|
resultEntry = page.find("li.search-result", match: :first)
|
|
|
|
|
|
|
|
resultSubEntries = resultEntry.find("ul").all("li")
|
|
|
|
linkName1 = getLinkName(newPaper1)
|
|
|
|
expect(resultSubEntries[2]).to have_link(linkName1, href: newPaper1.url)
|
|
|
|
linkName2 = getLinkName(newPaper2)
|
|
|
|
expect(resultSubEntries[1]).to have_link(linkName2, href: newPaper2.url)
|
|
|
|
end
|
2017-01-05 22:14:07 +01:00
|
|
|
|
|
|
|
scenario "Papers with common reference id handled also for missing prefix" do
|
2018-03-18 21:21:59 +01:00
|
|
|
mainPaper = FactoryBot.create(:paper, published_at: '2016-12-19T19:00:00',
|
2017-01-05 22:14:07 +01:00
|
|
|
name: "Opendata als default", reference: "VI-0815")
|
2018-03-18 21:21:59 +01:00
|
|
|
newPaper1 = FactoryBot.create(:paper, published_at: '2016-12-23T12:00:00',
|
2017-01-05 22:14:07 +01:00
|
|
|
name: "Opendata als optional", reference: "VI-0815-NF-01")
|
2018-03-18 21:21:59 +01:00
|
|
|
newPaper1Change = FactoryBot.create(:paper, published_at: '2016-12-23T12:00:00',
|
2017-01-05 22:14:07 +01:00
|
|
|
name: "Opendata als nicht optional", reference: "-0815-NF-01-ÄA-01")
|
|
|
|
Paper.__elasticsearch__.refresh_index!
|
|
|
|
visit search_path body: "leipzig", paper_search: {query: "default"}
|
|
|
|
expect(page).to have_content("1 Dokument in der Datenbank")
|
|
|
|
resultEntry = page.find("li.search-result", match: :first)
|
|
|
|
|
|
|
|
resultSubEntries = resultEntry.find("ul").all("li")
|
|
|
|
linkName1 = getLinkName(newPaper1)
|
|
|
|
expect(resultSubEntries[2]).to have_link(linkName1, href: newPaper1.url)
|
|
|
|
linkName2 = getLinkName(newPaper1Change)
|
|
|
|
expect(resultSubEntries[1]).to have_link(linkName2, href: newPaper1Change.url)
|
|
|
|
end
|
|
|
|
|
|
|
|
scenario "Finds 'Testen' with search 'Test'" do
|
2018-03-18 21:21:59 +01:00
|
|
|
paper = FactoryBot.create(:paper, name: "Testen")
|
2017-01-05 22:14:07 +01:00
|
|
|
Paper.__elasticsearch__.refresh_index!
|
|
|
|
visit search_path body: "leipzig", paper_search: {query: "Test"}
|
|
|
|
expect(page).to have_content("1 Dokument in der Datenbank")
|
|
|
|
resultEntry = page.find("li.search-result", match: :first)
|
|
|
|
expect(resultEntry).to have_content(paper.name)
|
|
|
|
end
|
|
|
|
|
|
|
|
scenario "Finds 'Test' with search 'Testen'" do
|
2018-03-18 21:21:59 +01:00
|
|
|
paper = FactoryBot.create(:paper, name: "Test")
|
2017-01-05 22:14:07 +01:00
|
|
|
Paper.__elasticsearch__.refresh_index!
|
|
|
|
visit search_path body: "leipzig", paper_search: {query: "Testen"}
|
|
|
|
expect(page).to have_content("1 Dokument in der Datenbank")
|
|
|
|
resultEntry = page.find("li.search-result", match: :first)
|
|
|
|
expect(resultEntry).to have_content(paper.name)
|
|
|
|
end
|
|
|
|
|
|
|
|
scenario "Finds 'Fahrräderverleih' with search 'Fahrrad'" do
|
2018-03-18 21:21:59 +01:00
|
|
|
paper = FactoryBot.create(:paper, name: "Fahrräderverleih")
|
2017-01-05 22:14:07 +01:00
|
|
|
Paper.__elasticsearch__.refresh_index!
|
|
|
|
visit search_path body: "leipzig", paper_search: {query: "Fahrrad"}
|
|
|
|
expect(page).to have_content("1 Dokument in der Datenbank")
|
|
|
|
resultEntry = page.find("li.search-result", match: :first)
|
|
|
|
expect(resultEntry).to have_content(paper.name)
|
|
|
|
end
|
|
|
|
|
|
|
|
scenario "Finds 'Fahrräderverleih' with search 'Fahrräder'" do
|
2018-03-18 21:21:59 +01:00
|
|
|
paper = FactoryBot.create(:paper, name: "Fahrräderverleih")
|
2017-01-05 22:14:07 +01:00
|
|
|
Paper.__elasticsearch__.refresh_index!
|
|
|
|
visit search_path body: "leipzig", paper_search: {query: "Fahrräder"}
|
|
|
|
expect(page).to have_content("1 Dokument in der Datenbank")
|
|
|
|
resultEntry = page.find("li.search-result", match: :first)
|
|
|
|
expect(resultEntry).to have_content(paper.name)
|
|
|
|
end
|
|
|
|
|
|
|
|
scenario "Finds 'Fahrräderverleih' with search 'Verleih'" do
|
2018-03-18 21:21:59 +01:00
|
|
|
paper = FactoryBot.create(:paper, name: "Fahrräderverleih")
|
2017-01-05 22:14:07 +01:00
|
|
|
Paper.__elasticsearch__.refresh_index!
|
|
|
|
visit search_path body: "leipzig", paper_search: {query: "Verleih"}
|
|
|
|
expect(page).to have_content("1 Dokument in der Datenbank")
|
|
|
|
resultEntry = page.find("li.search-result", match: :first)
|
|
|
|
expect(resultEntry).to have_content(paper.name)
|
|
|
|
end
|
|
|
|
|
|
|
|
scenario "Finds 'Fahrräderverleih' with search 'Autoverleih'" do
|
2018-03-18 21:21:59 +01:00
|
|
|
paper = FactoryBot.create(:paper, name: "Fahrräderverleih")
|
2017-01-05 22:14:07 +01:00
|
|
|
Paper.__elasticsearch__.refresh_index!
|
|
|
|
visit search_path body: "leipzig", paper_search: {query: "Autoverleih"}
|
|
|
|
expect(page).to have_content("1 Dokument in der Datenbank")
|
|
|
|
resultEntry = page.find("li.search-result", match: :first)
|
|
|
|
expect(resultEntry).to have_content(paper.name)
|
|
|
|
end
|
|
|
|
|
|
|
|
scenario "Finds no 'Fahrrad' with search 'Rad'" do
|
2018-03-18 21:21:59 +01:00
|
|
|
paper = FactoryBot.create(:paper, name: "Fahrrad")
|
2017-01-05 22:14:07 +01:00
|
|
|
Paper.__elasticsearch__.refresh_index!
|
|
|
|
visit search_path body: "leipzig", paper_search: {query: "Rad"}
|
|
|
|
expect(page).to have_content("0 Dokumente in der Datenbank")
|
|
|
|
end
|
|
|
|
|
2018-02-18 23:26:30 +01:00
|
|
|
scenario "Papers with reference id having slash is escaped" do
|
2018-03-18 21:21:59 +01:00
|
|
|
mainPaper = FactoryBot.create(:paper, published_at: '2016-12-19T19:00:00',
|
2018-02-18 23:26:30 +01:00
|
|
|
name: "Opendata als default", reference: "VI-00768/14")
|
2018-03-18 21:21:59 +01:00
|
|
|
newPaper = FactoryBot.create(:paper, published_at: '2016-12-23T12:00:00',
|
2018-02-18 23:26:30 +01:00
|
|
|
name: "Opendata als optional", reference: "VI-00768/14-ÄA-01")
|
|
|
|
Paper.__elasticsearch__.refresh_index!
|
|
|
|
visit search_path body: "leipzig", paper_search: {query: "default"}
|
|
|
|
expect(page).to have_content("1 Dokument in der Datenbank")
|
|
|
|
resultEntry = page.find("li.search-result", match: :first)
|
|
|
|
expect(resultEntry).to have_content(mainPaper.name)
|
|
|
|
|
|
|
|
resultSubEntry1 = resultEntry.find("li.current", match: :first)
|
|
|
|
linkName1 = getLinkName(mainPaper)
|
|
|
|
expect(resultSubEntry1).to have_link(linkName1, href: mainPaper.url)
|
|
|
|
|
|
|
|
resultSubEntries = resultEntry.find("ul").all("li")
|
|
|
|
linkName2 = getLinkName(newPaper)
|
|
|
|
expect(resultSubEntries[1]).to have_link(linkName2, href: newPaper.url)
|
|
|
|
end
|
|
|
|
|
2016-02-19 08:22:36 +01:00
|
|
|
end
|