2019-09-24 13:04:42 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe 'Public Knowledge Base for guest search', type: :system, authenticated: true, searchindex: true do
|
|
|
|
include_context 'basic Knowledge Base'
|
|
|
|
|
|
|
|
before do
|
|
|
|
configure_elasticsearch(required: true, rebuild: true) do
|
2019-09-24 15:44:32 +00:00
|
|
|
published_answer && draft_answer && internal_answer
|
2019-09-24 13:04:42 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
visit help_no_locale_path
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'shows no results notification for gibberish search' do
|
|
|
|
find('.js-search-input').fill_in with: 'Asdasdasdasdasd'
|
|
|
|
expect(page).to have_text 'No results were found'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'list published article' do
|
|
|
|
expect(page).to allow_to_search_for published_answer
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'list draft article' do
|
2019-09-24 15:44:32 +00:00
|
|
|
expect(page).to allow_to_search_for draft_answer
|
2019-09-24 13:04:42 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'list internal article' do
|
|
|
|
expect(page).to allow_to_search_for internal_answer
|
|
|
|
end
|
|
|
|
end
|