trabajo-afectivo/spec/system/knowledge_base_public/editor_search_spec.rb

33 lines
898 B
Ruby

# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
require 'rails_helper'
RSpec.describe 'Public Knowledge Base for guest search', type: :system, searchindex: true do
include_context 'basic Knowledge Base'
before do
configure_elasticsearch(required: true, rebuild: true) do
published_answer && draft_answer && internal_answer
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 produce_search_result_for published_answer
end
it 'list draft article' do
expect(page).to produce_search_result_for draft_answer
end
it 'list internal article' do
expect(page).to produce_search_result_for internal_answer
end
end