2015-02-25 23:44:29 +00:00
|
|
|
# encoding: utf-8
|
|
|
|
require 'integration_test_helper'
|
2017-06-14 15:25:45 +00:00
|
|
|
require 'rake'
|
2015-02-25 23:44:29 +00:00
|
|
|
|
2015-02-26 00:12:12 +00:00
|
|
|
class ElasticsearchTest < ActiveSupport::TestCase
|
2015-02-25 23:44:29 +00:00
|
|
|
|
2017-06-14 15:25:45 +00:00
|
|
|
setup do
|
|
|
|
|
|
|
|
# set config
|
|
|
|
if ENV['ES_URL'].blank?
|
|
|
|
raise "ERROR: Need ES_URL - hint ES_URL='http://127.0.0.1:9200'"
|
|
|
|
end
|
|
|
|
Setting.set('es_url', ENV['ES_URL'])
|
|
|
|
if ENV['ES_INDEX_RAND'].present?
|
|
|
|
ENV['ES_INDEX'] = "es_index_#{rand(999_999_999)}"
|
|
|
|
end
|
|
|
|
if ENV['ES_INDEX'].blank?
|
|
|
|
raise "ERROR: Need ES_INDEX - hint ES_INDEX='estest.local_zammad'"
|
|
|
|
end
|
|
|
|
Setting.set('es_index', ENV['ES_INDEX'])
|
|
|
|
|
|
|
|
# Setting.set('es_url', 'http://127.0.0.1:9200')
|
|
|
|
# Setting.set('es_index', 'estest.local_zammad')
|
|
|
|
# Setting.set('es_user', 'elasticsearch')
|
|
|
|
# Setting.set('es_password', 'zammad')
|
|
|
|
|
|
|
|
# set max attachment size in mb
|
|
|
|
Setting.set('es_attachment_max_size_in_mb', 1)
|
|
|
|
|
|
|
|
# drop/create indexes
|
|
|
|
Rake::Task.clear
|
|
|
|
Zammad::Application.load_tasks
|
|
|
|
#Rake::Task["searchindex:drop"].execute
|
|
|
|
#Rake::Task["searchindex:create"].execute
|
|
|
|
Rake::Task['searchindex:rebuild'].execute
|
|
|
|
|
|
|
|
groups = Group.where(name: 'Users')
|
|
|
|
roles = Role.where(name: 'Agent')
|
|
|
|
@agent = User.create_or_update(
|
|
|
|
login: 'es-agent@example.com',
|
|
|
|
firstname: 'E',
|
|
|
|
lastname: 'S',
|
|
|
|
email: 'es-agent@example.com',
|
|
|
|
password: 'agentpw',
|
|
|
|
active: true,
|
|
|
|
roles: roles,
|
|
|
|
groups: groups,
|
|
|
|
updated_by_id: 1,
|
|
|
|
created_by_id: 1,
|
|
|
|
)
|
|
|
|
group_without_access = Group.create_if_not_exists(
|
|
|
|
name: 'WithoutAccess',
|
|
|
|
note: 'Test for not access check.',
|
|
|
|
updated_by_id: 1,
|
|
|
|
created_by_id: 1
|
|
|
|
)
|
|
|
|
roles = Role.where(name: 'Customer')
|
|
|
|
@organization1 = Organization.create_if_not_exists(
|
|
|
|
name: 'Customer Organization Update',
|
|
|
|
note: 'some note',
|
|
|
|
updated_by_id: 1,
|
|
|
|
created_by_id: 1,
|
|
|
|
)
|
|
|
|
@customer1 = User.create_or_update(
|
|
|
|
login: 'es-customer1@example.com',
|
|
|
|
firstname: 'ES',
|
|
|
|
lastname: 'Customer1',
|
|
|
|
email: 'es-customer1@example.com',
|
|
|
|
password: 'customerpw',
|
|
|
|
active: true,
|
|
|
|
organization_id: @organization1.id,
|
|
|
|
roles: roles,
|
|
|
|
updated_by_id: 1,
|
|
|
|
created_by_id: 1,
|
|
|
|
)
|
|
|
|
sleep 1
|
|
|
|
@customer2 = User.create_or_update(
|
|
|
|
login: 'es-customer2@example.com',
|
|
|
|
firstname: 'ES',
|
|
|
|
lastname: 'Customer2',
|
|
|
|
email: 'es-customer2@example.com',
|
|
|
|
password: 'customerpw',
|
|
|
|
active: true,
|
|
|
|
organization_id: @organization1.id,
|
|
|
|
roles: roles,
|
|
|
|
updated_by_id: 1,
|
|
|
|
created_by_id: 1,
|
|
|
|
)
|
|
|
|
sleep 1
|
|
|
|
@customer3 = User.create_or_update(
|
|
|
|
login: 'es-customer3@example.com',
|
|
|
|
firstname: 'ES',
|
|
|
|
lastname: 'Customer3',
|
|
|
|
email: 'es-customer3@example.com',
|
|
|
|
password: 'customerpw',
|
|
|
|
active: true,
|
|
|
|
roles: roles,
|
|
|
|
updated_by_id: 1,
|
|
|
|
created_by_id: 1,
|
|
|
|
)
|
2016-01-26 15:43:36 +00:00
|
|
|
end
|
2015-02-25 23:44:29 +00:00
|
|
|
|
2017-07-25 14:00:43 +00:00
|
|
|
teardown do
|
|
|
|
if ENV['ES_URL'].present?
|
|
|
|
Rake::Task['searchindex:drop'].execute
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-07-06 06:13:44 +00:00
|
|
|
# check search attributes
|
|
|
|
test 'a - objects' do
|
|
|
|
|
|
|
|
# user
|
2017-06-14 15:25:45 +00:00
|
|
|
attributes = @agent.search_index_data
|
2016-07-06 06:13:44 +00:00
|
|
|
assert_equal('E', attributes['firstname'])
|
|
|
|
assert_equal('S', attributes['lastname'])
|
|
|
|
assert_equal('es-agent@example.com', attributes['email'])
|
|
|
|
assert_not(attributes['password'])
|
|
|
|
assert_not(attributes['organization'])
|
|
|
|
|
2017-06-14 15:25:45 +00:00
|
|
|
attributes = @agent.search_index_attribute_lookup
|
2016-07-06 06:13:44 +00:00
|
|
|
assert_equal('E', attributes['firstname'])
|
|
|
|
assert_equal('S', attributes['lastname'])
|
|
|
|
assert_equal('es-agent@example.com', attributes['email'])
|
|
|
|
assert_not(attributes['password'])
|
|
|
|
assert_not(attributes['organization'])
|
|
|
|
|
|
|
|
# organization
|
2017-06-14 15:25:45 +00:00
|
|
|
attributes = @organization1.search_index_data
|
2016-07-06 06:13:44 +00:00
|
|
|
assert_equal('Customer Organization Update', attributes['name'])
|
|
|
|
assert_equal('some note', attributes['note'])
|
|
|
|
assert_not(attributes['members'])
|
|
|
|
|
2017-06-14 15:25:45 +00:00
|
|
|
attributes = @organization1.search_index_attribute_lookup
|
2016-07-06 06:13:44 +00:00
|
|
|
assert_equal('Customer Organization Update', attributes['name'])
|
|
|
|
assert_equal('some note', attributes['note'])
|
|
|
|
assert(attributes['members'])
|
|
|
|
|
|
|
|
# ticket/article
|
2017-06-14 15:25:45 +00:00
|
|
|
ticket1 = Ticket.create!(
|
2016-07-06 06:13:44 +00:00
|
|
|
title: 'some title äöüß',
|
|
|
|
group: Group.lookup(name: 'Users'),
|
2017-06-14 15:25:45 +00:00
|
|
|
customer_id: @customer1.id,
|
2016-07-06 06:13:44 +00:00
|
|
|
state: Ticket::State.lookup(name: 'new'),
|
|
|
|
priority: Ticket::Priority.lookup(name: '2 normal'),
|
|
|
|
updated_by_id: 1,
|
|
|
|
created_by_id: 1,
|
|
|
|
)
|
2017-06-14 15:25:45 +00:00
|
|
|
article1 = Ticket::Article.create!(
|
2016-07-06 06:13:44 +00:00
|
|
|
ticket_id: ticket1.id,
|
|
|
|
from: 'some_sender@example.com',
|
|
|
|
to: 'some_recipient@example.com',
|
|
|
|
subject: 'some subject',
|
|
|
|
message_id: 'some@id',
|
|
|
|
body: 'some message',
|
|
|
|
internal: false,
|
|
|
|
sender: Ticket::Article::Sender.where(name: 'Customer').first,
|
|
|
|
type: Ticket::Article::Type.where(name: 'email').first,
|
|
|
|
updated_by_id: 1,
|
|
|
|
created_by_id: 1,
|
|
|
|
)
|
2017-06-14 15:25:45 +00:00
|
|
|
Store.add(
|
|
|
|
object: 'Ticket::Article',
|
|
|
|
o_id: article1.id,
|
|
|
|
data: IO.binread("#{Rails.root}/test/fixtures/es-normal.txt"),
|
|
|
|
filename: 'es-normal.txt',
|
|
|
|
preferences: {},
|
|
|
|
created_by_id: 1,
|
|
|
|
)
|
2016-07-06 06:13:44 +00:00
|
|
|
|
|
|
|
attributes = ticket1.search_index_attribute_lookup
|
|
|
|
assert_equal('Users', attributes['group'])
|
|
|
|
assert_equal('new', attributes['state'])
|
|
|
|
assert_equal('2 normal', attributes['priority'])
|
|
|
|
|
|
|
|
assert_equal('ES', attributes['customer']['firstname'])
|
|
|
|
assert_equal('Customer1', attributes['customer']['lastname'])
|
|
|
|
assert_equal('es-customer1@example.com', attributes['customer']['email'])
|
|
|
|
assert_not(attributes['customer']['password'])
|
|
|
|
assert_equal('Customer Organization Update', attributes['customer']['organization'])
|
|
|
|
|
|
|
|
assert_equal('-', attributes['owner']['login'])
|
|
|
|
assert_equal('-', attributes['owner']['firstname'])
|
|
|
|
assert_not(attributes['owner']['password'])
|
|
|
|
assert_not(attributes['owner']['organization'])
|
|
|
|
|
2017-06-14 15:25:45 +00:00
|
|
|
assert(attributes['article'][0]['attachment'])
|
|
|
|
assert(attributes['article'][0]['attachment'][0])
|
|
|
|
assert_not(attributes['article'][0]['attachment'][1])
|
|
|
|
assert_equal('es-normal.txt', attributes['article'][0]['attachment'][0]['_name'])
|
|
|
|
assert_equal("c29tZSBub3JtYWwgdGV4dDY2Cg==\n", attributes['article'][0]['attachment'][0]['_content'])
|
|
|
|
|
2016-07-06 06:13:44 +00:00
|
|
|
ticket1.destroy
|
|
|
|
|
|
|
|
# execute background jobs
|
|
|
|
Scheduler.worker(true)
|
|
|
|
|
2017-06-14 15:25:45 +00:00
|
|
|
ticket1 = Ticket.create!(
|
2015-04-27 13:42:53 +00:00
|
|
|
title: "some title\n äöüß",
|
2016-03-08 06:41:09 +00:00
|
|
|
group: Group.lookup(name: 'Users'),
|
2017-06-14 15:25:45 +00:00
|
|
|
customer_id: @customer1.id,
|
2016-03-08 06:41:09 +00:00
|
|
|
state: Ticket::State.lookup(name: 'new'),
|
|
|
|
priority: Ticket::Priority.lookup(name: '2 normal'),
|
2015-04-27 13:42:53 +00:00
|
|
|
updated_by_id: 1,
|
|
|
|
created_by_id: 1,
|
2015-02-25 23:44:29 +00:00
|
|
|
)
|
2017-06-14 15:25:45 +00:00
|
|
|
article1 = Ticket::Article.create!(
|
2015-04-27 13:42:53 +00:00
|
|
|
ticket_id: ticket1.id,
|
|
|
|
from: 'some_sender@example.com',
|
|
|
|
to: 'some_recipient@example.com',
|
|
|
|
subject: 'some subject',
|
|
|
|
message_id: 'some@id',
|
|
|
|
body: 'some message',
|
|
|
|
internal: false,
|
|
|
|
sender: Ticket::Article::Sender.where(name: 'Customer').first,
|
|
|
|
type: Ticket::Article::Type.where(name: 'email').first,
|
|
|
|
updated_by_id: 1,
|
|
|
|
created_by_id: 1,
|
2015-02-25 23:44:29 +00:00
|
|
|
)
|
2015-04-06 19:00:16 +00:00
|
|
|
|
|
|
|
# add attachments which should get index / .txt
|
2017-06-14 15:25:45 +00:00
|
|
|
# "some normal text66"
|
2015-04-06 19:00:16 +00:00
|
|
|
Store.add(
|
2015-04-27 13:42:53 +00:00
|
|
|
object: 'Ticket::Article',
|
|
|
|
o_id: article1.id,
|
2016-02-07 16:18:07 +00:00
|
|
|
data: IO.binread("#{Rails.root}/test/fixtures/es-normal.txt"),
|
2015-04-27 13:42:53 +00:00
|
|
|
filename: 'es-normal.txt',
|
|
|
|
preferences: {},
|
|
|
|
created_by_id: 1,
|
2015-04-06 19:00:16 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
# add attachments which should get index / .pdf
|
2015-04-06 23:33:22 +00:00
|
|
|
# "Zammad Test77"
|
2015-04-06 19:00:16 +00:00
|
|
|
Store.add(
|
2015-04-27 13:42:53 +00:00
|
|
|
object: 'Ticket::Article',
|
|
|
|
o_id: article1.id,
|
2016-02-07 16:18:07 +00:00
|
|
|
data: IO.binread("#{Rails.root}/test/fixtures/es-pdf1.pdf"),
|
2015-04-27 13:42:53 +00:00
|
|
|
filename: 'es-pdf1.pdf',
|
|
|
|
preferences: {},
|
|
|
|
created_by_id: 1,
|
2015-04-06 19:00:16 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
# add attachments which should get index / .box
|
2015-04-06 23:56:53 +00:00
|
|
|
# "Old programmers never die test99"
|
2015-04-06 19:00:16 +00:00
|
|
|
Store.add(
|
2015-04-27 13:42:53 +00:00
|
|
|
object: 'Ticket::Article',
|
|
|
|
o_id: article1.id,
|
2016-02-07 16:18:07 +00:00
|
|
|
data: IO.binread("#{Rails.root}/test/fixtures/es-box1.box"),
|
2015-04-27 13:42:53 +00:00
|
|
|
filename: 'mail1.box',
|
|
|
|
preferences: {},
|
|
|
|
created_by_id: 1,
|
2015-04-06 19:00:16 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
# add to big attachment which should not get index
|
2015-04-06 23:56:53 +00:00
|
|
|
# "some too big text88"
|
2015-04-06 19:00:16 +00:00
|
|
|
Store.add(
|
2015-04-27 13:42:53 +00:00
|
|
|
object: 'Ticket::Article',
|
|
|
|
o_id: article1.id,
|
2016-02-07 16:18:07 +00:00
|
|
|
data: IO.binread("#{Rails.root}/test/fixtures/es-too-big.txt"),
|
2015-04-27 13:42:53 +00:00
|
|
|
filename: 'es-too-big.txt',
|
|
|
|
preferences: {},
|
|
|
|
created_by_id: 1,
|
2015-04-06 19:00:16 +00:00
|
|
|
)
|
2017-04-12 07:34:49 +00:00
|
|
|
ticket1.tag_add('someTagA', 1)
|
2015-04-05 23:46:05 +00:00
|
|
|
sleep 1
|
2015-02-25 23:44:29 +00:00
|
|
|
|
2017-06-14 15:25:45 +00:00
|
|
|
ticket2 = Ticket.create!(
|
2015-04-27 13:42:53 +00:00
|
|
|
title: 'something else',
|
2016-03-08 06:41:09 +00:00
|
|
|
group: Group.lookup(name: 'Users'),
|
2017-06-14 15:25:45 +00:00
|
|
|
customer_id: @customer2.id,
|
2016-03-08 06:41:09 +00:00
|
|
|
state: Ticket::State.lookup(name: 'open'),
|
|
|
|
priority: Ticket::Priority.lookup(name: '2 normal'),
|
2015-04-27 13:42:53 +00:00
|
|
|
updated_by_id: 1,
|
|
|
|
created_by_id: 1,
|
2015-02-25 23:44:29 +00:00
|
|
|
)
|
2017-06-14 15:25:45 +00:00
|
|
|
article2 = Ticket::Article.create!(
|
2015-04-27 13:42:53 +00:00
|
|
|
ticket_id: ticket2.id,
|
|
|
|
from: 'some_sender@example.org',
|
|
|
|
to: 'some_recipient@example.org',
|
|
|
|
subject: 'some subject2 / autobahn what else?',
|
|
|
|
message_id: 'some@id',
|
|
|
|
body: 'some other message <b>with s<u>t</u>rong text<b>',
|
|
|
|
content_type: 'text/html',
|
|
|
|
internal: false,
|
|
|
|
sender: Ticket::Article::Sender.where(name: 'Customer').first,
|
|
|
|
type: Ticket::Article::Type.where(name: 'email').first,
|
|
|
|
updated_by_id: 1,
|
|
|
|
created_by_id: 1,
|
2015-02-25 23:44:29 +00:00
|
|
|
)
|
2017-04-12 07:34:49 +00:00
|
|
|
ticket2.tag_add('someTagB', 1)
|
2015-04-05 23:46:05 +00:00
|
|
|
sleep 1
|
2015-02-25 23:44:29 +00:00
|
|
|
|
2017-06-14 15:25:45 +00:00
|
|
|
ticket3 = Ticket.create!(
|
2015-04-27 13:42:53 +00:00
|
|
|
title: 'something else',
|
2016-03-08 06:41:09 +00:00
|
|
|
group: Group.lookup(name: 'WithoutAccess'),
|
2017-06-14 15:25:45 +00:00
|
|
|
customer_id: @customer3.id,
|
2016-03-08 06:41:09 +00:00
|
|
|
state: Ticket::State.lookup(name: 'open'),
|
|
|
|
priority: Ticket::Priority.lookup(name: '2 normal'),
|
2015-04-27 13:42:53 +00:00
|
|
|
updated_by_id: 1,
|
|
|
|
created_by_id: 1,
|
2015-02-25 23:44:29 +00:00
|
|
|
)
|
2017-06-14 15:25:45 +00:00
|
|
|
article3 = Ticket::Article.create!(
|
2015-04-27 13:42:53 +00:00
|
|
|
ticket_id: ticket3.id,
|
|
|
|
from: 'some_sender@example.org',
|
|
|
|
to: 'some_recipient@example.org',
|
|
|
|
subject: 'some subject3',
|
|
|
|
message_id: 'some@id',
|
|
|
|
body: 'some other message 3 / kindergarden what else?',
|
|
|
|
internal: false,
|
|
|
|
sender: Ticket::Article::Sender.where(name: 'Customer').first,
|
|
|
|
type: Ticket::Article::Type.where(name: 'email').first,
|
|
|
|
updated_by_id: 1,
|
|
|
|
created_by_id: 1,
|
2015-02-25 23:44:29 +00:00
|
|
|
)
|
2015-04-06 06:13:05 +00:00
|
|
|
|
|
|
|
# execute background jobs
|
2016-04-26 09:30:46 +00:00
|
|
|
Scheduler.worker(true)
|
2016-06-14 11:27:15 +00:00
|
|
|
sleep 4
|
2015-04-05 23:05:33 +00:00
|
|
|
|
2017-06-14 15:25:45 +00:00
|
|
|
# search as @agent
|
2015-02-25 23:44:29 +00:00
|
|
|
|
2015-04-05 23:05:33 +00:00
|
|
|
# search for article data
|
2015-02-25 23:44:29 +00:00
|
|
|
result = Ticket.search(
|
2017-06-14 15:25:45 +00:00
|
|
|
current_user: @agent,
|
2015-04-27 13:42:53 +00:00
|
|
|
query: 'autobahn',
|
|
|
|
limit: 15,
|
2015-02-25 23:44:29 +00:00
|
|
|
)
|
2015-02-26 00:12:12 +00:00
|
|
|
|
2015-04-05 23:05:33 +00:00
|
|
|
assert(!result.empty?, 'result exists not')
|
2015-02-26 00:12:12 +00:00
|
|
|
assert(result[0], 'record 1')
|
|
|
|
assert(!result[1], 'record 2')
|
|
|
|
assert_equal(result[0].id, ticket2.id)
|
|
|
|
|
2015-04-05 23:05:33 +00:00
|
|
|
# search for html content
|
|
|
|
result = Ticket.search(
|
2017-06-14 15:25:45 +00:00
|
|
|
current_user: @agent,
|
2015-04-27 13:42:53 +00:00
|
|
|
query: 'strong',
|
|
|
|
limit: 15,
|
2015-04-05 23:05:33 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
assert(!result.empty?, 'result exists not')
|
|
|
|
assert(result[0], 'record 1')
|
|
|
|
assert(!result[1], 'record 2')
|
|
|
|
assert_equal(result[0].id, ticket2.id)
|
2015-02-26 00:12:12 +00:00
|
|
|
|
2015-04-05 23:05:33 +00:00
|
|
|
# search for indexed attachment
|
2015-04-06 19:00:16 +00:00
|
|
|
result = Ticket.search(
|
2017-06-14 15:25:45 +00:00
|
|
|
current_user: @agent,
|
2015-04-27 13:42:53 +00:00
|
|
|
query: '"some normal text66"',
|
|
|
|
limit: 15,
|
2015-04-06 19:00:16 +00:00
|
|
|
)
|
|
|
|
assert(result[0], 'record 1')
|
|
|
|
assert_equal(result[0].id, ticket1.id)
|
|
|
|
|
|
|
|
result = Ticket.search(
|
2017-06-14 15:25:45 +00:00
|
|
|
current_user: @agent,
|
2015-04-27 13:42:53 +00:00
|
|
|
query: 'test77',
|
|
|
|
limit: 15,
|
2015-04-06 19:00:16 +00:00
|
|
|
)
|
|
|
|
assert(result[0], 'record 1')
|
|
|
|
assert_equal(result[0].id, ticket1.id)
|
|
|
|
|
2015-04-05 23:05:33 +00:00
|
|
|
# search for not indexed attachment
|
2015-04-06 19:00:16 +00:00
|
|
|
result = Ticket.search(
|
2017-06-14 15:25:45 +00:00
|
|
|
current_user: @agent,
|
2015-04-27 13:42:53 +00:00
|
|
|
query: 'test88',
|
|
|
|
limit: 15,
|
2015-04-06 19:00:16 +00:00
|
|
|
)
|
|
|
|
assert(!result[0], 'record 1')
|
2015-04-05 23:05:33 +00:00
|
|
|
|
2015-04-06 19:00:16 +00:00
|
|
|
result = Ticket.search(
|
2017-06-14 15:25:45 +00:00
|
|
|
current_user: @agent,
|
2015-04-27 13:42:53 +00:00
|
|
|
query: 'test99',
|
|
|
|
limit: 15,
|
2015-04-06 19:00:16 +00:00
|
|
|
)
|
|
|
|
assert(!result[0], 'record 1')
|
2015-04-05 23:05:33 +00:00
|
|
|
|
|
|
|
# search for ticket with no permissions
|
2015-02-26 00:12:12 +00:00
|
|
|
result = Ticket.search(
|
2017-06-14 15:25:45 +00:00
|
|
|
current_user: @agent,
|
2015-04-27 13:42:53 +00:00
|
|
|
query: 'kindergarden',
|
|
|
|
limit: 15,
|
2015-02-26 00:12:12 +00:00
|
|
|
)
|
|
|
|
assert(result.empty?, 'result should be empty')
|
|
|
|
assert(!result[0], 'record 1')
|
|
|
|
|
2017-06-14 15:25:45 +00:00
|
|
|
# search as @customer1
|
2015-04-05 23:05:33 +00:00
|
|
|
result = Ticket.search(
|
2017-06-14 15:25:45 +00:00
|
|
|
current_user: @customer1,
|
2015-04-27 13:42:53 +00:00
|
|
|
query: 'title OR else',
|
|
|
|
limit: 15,
|
2015-04-05 23:05:33 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
assert(!result.empty?, 'result exists not')
|
|
|
|
assert(result[0], 'record 1')
|
|
|
|
assert(result[1], 'record 2')
|
|
|
|
assert(!result[2], 'record 3')
|
|
|
|
assert_equal(result[0].id, ticket2.id)
|
|
|
|
assert_equal(result[1].id, ticket1.id)
|
|
|
|
|
2017-06-14 15:25:45 +00:00
|
|
|
# search as @customer2
|
2015-04-05 23:05:33 +00:00
|
|
|
result = Ticket.search(
|
2017-06-14 15:25:45 +00:00
|
|
|
current_user: @customer2,
|
2015-04-27 13:42:53 +00:00
|
|
|
query: 'title OR else',
|
|
|
|
limit: 15,
|
2015-04-05 23:05:33 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
assert(!result.empty?, 'result exists not')
|
|
|
|
assert(result[0], 'record 1')
|
|
|
|
assert(result[1], 'record 2')
|
|
|
|
assert(!result[2], 'record 3')
|
|
|
|
assert_equal(result[0].id, ticket2.id)
|
|
|
|
assert_equal(result[1].id, ticket1.id)
|
|
|
|
|
2017-06-14 15:25:45 +00:00
|
|
|
# search as @customer3
|
2015-04-05 23:05:33 +00:00
|
|
|
result = Ticket.search(
|
2017-06-14 15:25:45 +00:00
|
|
|
current_user: @customer3,
|
2015-04-27 13:42:53 +00:00
|
|
|
query: 'title OR else',
|
|
|
|
limit: 15,
|
2015-04-05 23:05:33 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
assert(!result.empty?, 'result exists not')
|
|
|
|
assert(result[0], 'record 1')
|
|
|
|
assert(!result[1], 'record 2')
|
|
|
|
assert_equal(result[0].id, ticket3.id)
|
2016-06-14 11:27:15 +00:00
|
|
|
|
|
|
|
# search for tags
|
|
|
|
result = Ticket.search(
|
2017-06-14 15:25:45 +00:00
|
|
|
current_user: @agent,
|
2016-06-14 11:27:15 +00:00
|
|
|
query: 'tag:someTagA',
|
|
|
|
limit: 15,
|
|
|
|
)
|
|
|
|
assert(result[0], 'record 1')
|
|
|
|
assert(!result[1], 'record 1')
|
|
|
|
assert_equal(result[0].id, ticket1.id)
|
|
|
|
|
|
|
|
result = Ticket.search(
|
2017-06-14 15:25:45 +00:00
|
|
|
current_user: @agent,
|
2016-06-14 11:27:15 +00:00
|
|
|
query: 'tag:someTagB',
|
|
|
|
limit: 15,
|
|
|
|
)
|
|
|
|
assert(result[0], 'record 2')
|
|
|
|
assert(!result[1], 'record 2')
|
|
|
|
assert_equal(result[0].id, ticket2.id)
|
|
|
|
|
|
|
|
# rename tag (e. g. via admin interface)
|
|
|
|
tag_item = Tag::Item.lookup(name: 'someTagA')
|
|
|
|
Tag::Item.rename(
|
|
|
|
id: tag_item.id,
|
|
|
|
name: 'someTagC',
|
|
|
|
updated_by_id: 1,
|
|
|
|
)
|
|
|
|
|
|
|
|
# execute background jobs
|
|
|
|
Scheduler.worker(true)
|
|
|
|
|
|
|
|
sleep 4
|
|
|
|
|
|
|
|
# search for tags
|
|
|
|
result = Ticket.search(
|
2017-06-14 15:25:45 +00:00
|
|
|
current_user: @agent,
|
2016-06-14 11:27:15 +00:00
|
|
|
query: 'tag:someTagA',
|
|
|
|
limit: 15,
|
|
|
|
)
|
|
|
|
assert(!result[0], 'record 1')
|
|
|
|
assert(!result[1], 'record 1')
|
|
|
|
|
|
|
|
result = Ticket.search(
|
2017-06-14 15:25:45 +00:00
|
|
|
current_user: @agent,
|
2016-06-14 11:27:15 +00:00
|
|
|
query: 'tag:someTagB',
|
|
|
|
limit: 15,
|
|
|
|
)
|
|
|
|
assert(result[0], 'record 2')
|
|
|
|
assert(!result[1], 'record 2')
|
|
|
|
assert_equal(result[0].id, ticket2.id)
|
|
|
|
|
|
|
|
result = Ticket.search(
|
2017-06-14 15:25:45 +00:00
|
|
|
current_user: @agent,
|
2016-06-14 11:27:15 +00:00
|
|
|
query: 'tag:someTagC',
|
|
|
|
limit: 15,
|
|
|
|
)
|
|
|
|
assert(result[0], 'record 1')
|
2016-09-09 21:10:27 +00:00
|
|
|
assert(!result[1], 'record 2')
|
|
|
|
assert_equal(result[0].id, ticket1.id)
|
|
|
|
|
|
|
|
result = Ticket.search(
|
2017-06-14 15:25:45 +00:00
|
|
|
current_user: @agent,
|
2016-09-09 21:10:27 +00:00
|
|
|
query: 'state:open',
|
|
|
|
limit: 15,
|
|
|
|
)
|
|
|
|
assert(result[0], 'record 1')
|
|
|
|
assert(!result[1], 'record 2')
|
|
|
|
assert_equal(result[0].id, ticket2.id)
|
|
|
|
|
|
|
|
result = Ticket.search(
|
2017-06-14 15:25:45 +00:00
|
|
|
current_user: @agent,
|
2016-09-09 21:10:27 +00:00
|
|
|
query: '"some_sender@example.com"',
|
|
|
|
limit: 15,
|
|
|
|
)
|
|
|
|
assert(result[0], 'record 1')
|
|
|
|
assert(!result[1], 'record 2')
|
|
|
|
assert_equal(result[0].id, ticket1.id)
|
|
|
|
|
|
|
|
result = Ticket.search(
|
2017-06-14 15:25:45 +00:00
|
|
|
current_user: @agent,
|
2016-09-09 21:10:27 +00:00
|
|
|
query: 'article.from:"some_sender@example.com"',
|
|
|
|
limit: 15,
|
|
|
|
)
|
|
|
|
assert(result[0], 'record 1')
|
|
|
|
assert(!result[1], 'record 2')
|
2016-06-14 11:27:15 +00:00
|
|
|
assert_equal(result[0].id, ticket1.id)
|
|
|
|
|
2017-06-14 15:25:45 +00:00
|
|
|
# check users and search it
|
|
|
|
# search as @agent
|
2015-04-05 23:05:33 +00:00
|
|
|
result = User.search(
|
2017-06-14 15:25:45 +00:00
|
|
|
current_user: @agent,
|
2015-04-27 13:42:53 +00:00
|
|
|
query: 'customer1',
|
|
|
|
limit: 15,
|
2015-04-05 23:05:33 +00:00
|
|
|
)
|
|
|
|
assert(!result.empty?, 'result should not be empty')
|
|
|
|
assert(result[0], 'record 1')
|
2015-04-05 23:35:07 +00:00
|
|
|
assert(!result[1], 'record 2')
|
2017-06-14 15:25:45 +00:00
|
|
|
assert_equal(result[0].id, @customer1.id)
|
2015-04-05 23:05:33 +00:00
|
|
|
|
2017-06-14 15:25:45 +00:00
|
|
|
# search as @customer1
|
2015-04-05 23:05:33 +00:00
|
|
|
result = User.search(
|
2017-06-14 15:25:45 +00:00
|
|
|
current_user: @customer1,
|
2015-04-27 13:42:53 +00:00
|
|
|
query: 'customer1',
|
|
|
|
limit: 15,
|
2015-04-05 23:05:33 +00:00
|
|
|
)
|
|
|
|
assert(result.empty?, 'result should be empty')
|
|
|
|
assert(!result[0], 'record 1')
|
|
|
|
|
2016-01-26 15:48:31 +00:00
|
|
|
# cleanup
|
2017-06-14 15:25:45 +00:00
|
|
|
Rake::Task['searchindex:drop'].execute
|
2016-01-26 15:36:40 +00:00
|
|
|
end
|
|
|
|
|
2015-04-27 14:15:29 +00:00
|
|
|
end
|