Fixes #3083 - KB answer search in ticket is broken

This commit is contained in:
Mantas Masalskis 2020-07-14 08:20:25 +02:00 committed by Thorsten Eckel
parent 236ef88d93
commit b5c067b05a
7 changed files with 111 additions and 56 deletions

View file

@ -620,6 +620,7 @@ RSpec/NestedGroups:
- 'spec/lib/notification_factory/template_spec.rb'
- 'spec/lib/notification_factory_spec.rb'
- 'spec/lib/search_index_backend_spec.rb'
- 'spec/lib/search_knowledge_base_backend_spec.rb'
- 'spec/lib/secure_mailing/smime_spec.rb'
- 'spec/lib/sessions/backend/base_spec.rb'
- 'spec/lib/sessions/backend/ticket_overview_list_spec.rb'

View file

@ -85,7 +85,7 @@ class KnowledgeBase::SearchController < ApplicationController
end
{
id: object.id.to_s,
id: object.id,
type: object.class.name,
icon: 'knowledge-base-answer',
date: object.updated_at,
@ -108,7 +108,7 @@ class KnowledgeBase::SearchController < ApplicationController
end
{
id: object.id.to_s,
id: object.id,
type: object.class.name,
fontName: object.category.knowledge_base.iconset,
date: object.updated_at,
@ -130,7 +130,7 @@ class KnowledgeBase::SearchController < ApplicationController
end
{
id: object.id.to_s,
id: object.id,
type: object.class.name,
icon: 'knowledge-base',
date: object.updated_at,

View file

@ -17,7 +17,12 @@ class SearchKnowledgeBaseBackend
def search(query, user: nil)
raw_results = if SearchIndexBackend.enabled?
SearchIndexBackend.search(query, indexes, options)
SearchIndexBackend
.search(query, indexes, options)
.map do |hash|
hash[:id] = hash[:id].to_i
hash
end
else
search_fallback(query, indexes, user)
end
@ -26,7 +31,6 @@ class SearchKnowledgeBaseBackend
raw_results = raw_results[0, limit]
end
#raw_results
filter_results raw_results, user
end

View file

@ -1,8 +1,20 @@
require 'rails_helper'
RSpec.describe SearchKnowledgeBaseBackend, searchindex: true do
RSpec.describe SearchKnowledgeBaseBackend do
include_context 'basic Knowledge Base'
let(:instance) { described_class.new options }
let(:user) { create(:admin) }
let(:options) do
{
knowledge_base: knowledge_base,
locale: primary_locale,
scope: nil
}
end
context 'with ES', searchindex: true do
before do
configure_elasticsearch(required: true, rebuild: true) do
published_answer
@ -10,9 +22,6 @@ RSpec.describe SearchKnowledgeBaseBackend, searchindex: true do
end
describe '#search' do
let(:instance) { described_class.new options }
let(:user) { create(:admin) }
context 'when highlight enabled' do
let(:options) do
{
@ -29,4 +38,27 @@ RSpec.describe SearchKnowledgeBaseBackend, searchindex: true do
end
end
end
end
context 'with (out) ES is identical' do
[true, false].each do |val|
context "when ES=#{val}", searchindex: val do
before do
if val
configure_elasticsearch(required: true, rebuild: true) do
published_answer
end
else
published_answer
end
end
let(:first_result) { instance.search(published_answer.translations.first.title, user: user).first }
it 'ID is an Integer' do
expect(first_result.dig(:id)).to be_a(Integer)
end
end
end
end
end

View file

@ -15,19 +15,19 @@ RSpec.describe 'Knowledge Base search with details', type: :request, searchindex
it 'for answers' do
post endpoint, params: { query: published_answer.translations.first.title }
expect(json_response['details'][0]['id']).to be_a_kind_of String
expect(json_response['details'][0]['id']).to be_a_kind_of Integer
end
it 'for categories' do
post endpoint, params: { query: category.translations.first.title }
expect(json_response['details'][0]['id']).to be_a_kind_of String
expect(json_response['details'][0]['id']).to be_a_kind_of Integer
end
it 'for knowledge base' do
post endpoint, params: { query: knowledge_base.translations.first.title }
expect(json_response['details'][0]['id']).to be_a_kind_of String
expect(json_response['details'][0]['id']).to be_a_kind_of Integer
end
end
end

View file

@ -1,29 +0,0 @@
require 'rails_helper'
RSpec.describe 'linking Knowledge Base answer', type: :system, authenticated_as: true, searchindex: true do
include_context 'basic Knowledge Base'
before do
configure_elasticsearch(required: true, rebuild: true) do
published_answer
end
# refresh page to make sure it reflects updated settings
refresh
end
it do
ticket = create :ticket, group: Group.find_by(name: 'Users')
visit "#ticket/zoom/#{ticket.id}"
find(:css, '.active .link_kb_answers .js-add').click
target_translation = published_answer.translations.first
find(:css, '.active .link_kb_answers .js-input').send_keys target_translation.title
find(:css, %(.active .link_kb_answers li[data-value="#{target_translation.id}"])).click
expect(find(:css, '.active .link_kb_answers ol')).to have_text target_translation.title
end
end

View file

@ -764,4 +764,51 @@ RSpec.describe 'Ticket zoom', type: :system do
end
end
end
describe 'linking Knowledge Base answer' do
include_context 'basic Knowledge Base'
let(:ticket) { create :ticket, group: Group.find_by(name: 'Users') }
let(:answer) { published_answer }
let(:translation) { answer.translations.first }
shared_examples 'verify linking' do
it 'allows to look up an answer' do
visit "#ticket/zoom/#{ticket.id}"
within :active_content do
within '.link_kb_answers' do
find('.js-add').click
find('.js-input').send_keys translation.title
find(%(li[data-value="#{translation.id}"])).click
expect(find('.link_kb_answers ol')).to have_text translation.title
end
end
end
end
context 'with ES', searchindex: true, authenticated_as: :authenticate do
def authenticate
configure_elasticsearch(required: true, rebuild: true) do
answer
end
true
end
include_examples 'verify linking'
end
context 'without ES', authenticated_as: :authenticate do
def authenticate
answer
true
end
include_examples 'verify linking'
end
end
end