2015-02-25 23:44:29 +00:00
|
|
|
# encoding: utf-8
|
|
|
|
require 'integration_test_helper'
|
|
|
|
|
2015-02-26 00:12:12 +00:00
|
|
|
class ElasticsearchTest < ActiveSupport::TestCase
|
2015-02-25 23:44:29 +00:00
|
|
|
|
2015-02-26 00:12:12 +00:00
|
|
|
#Setting.set('es_url', 'http://172.0.0.1:9200')
|
|
|
|
Setting.set('es_url', 'http://10.240.2.11:9200')
|
2015-02-25 23:44:29 +00:00
|
|
|
Setting.set('es_index', 'estest.local_zammad')
|
|
|
|
#Setting.set('es_user', 'elasticsearch')
|
|
|
|
#Setting.set('es_password', 'zammad')
|
|
|
|
|
|
|
|
# drop/create indexes
|
2015-02-26 00:12:12 +00:00
|
|
|
#Rake::Task["searchindex:drop"].execute
|
|
|
|
#Rake::Task["searchindex:create"].execute
|
|
|
|
system('rake searchindex:rebuild')
|
2015-02-25 23:44:29 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
# check tickets and search it
|
|
|
|
test 'tickets' do
|
|
|
|
|
|
|
|
ticket1 = Ticket.create(
|
|
|
|
:title => "some title\n äöüß",
|
|
|
|
:group => Group.lookup( :name => 'Users'),
|
|
|
|
:customer_id => 2,
|
|
|
|
:state => Ticket::State.lookup( :name => 'new' ),
|
|
|
|
:priority => Ticket::Priority.lookup( :name => '2 normal' ),
|
|
|
|
:updated_by_id => 1,
|
|
|
|
:created_by_id => 1,
|
|
|
|
)
|
|
|
|
article = Ticket::Article.create(
|
|
|
|
: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,
|
|
|
|
)
|
|
|
|
ticket1.search_index_update_backend
|
|
|
|
|
|
|
|
ticket2 = Ticket.create(
|
|
|
|
:title => "something else",
|
|
|
|
:group => Group.lookup( :name => 'Users'),
|
|
|
|
:customer_id => 2,
|
|
|
|
:state => Ticket::State.lookup( :name => 'open' ),
|
|
|
|
:priority => Ticket::Priority.lookup( :name => '2 normal' ),
|
|
|
|
:updated_by_id => 1,
|
|
|
|
:created_by_id => 1,
|
|
|
|
)
|
|
|
|
article = Ticket::Article.create(
|
|
|
|
:ticket_id => ticket2.id,
|
|
|
|
:from => 'some_sender@example.org',
|
|
|
|
:to => 'some_recipient@example.org',
|
2015-02-26 00:12:12 +00:00
|
|
|
:subject => 'some subject2 / autobahn what else?',
|
2015-02-25 23:44:29 +00:00
|
|
|
:message_id => 'some@id',
|
|
|
|
:body => 'some other 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,
|
|
|
|
)
|
|
|
|
ticket2.search_index_update_backend
|
|
|
|
|
|
|
|
ticket3 = Ticket.create(
|
|
|
|
:title => "something else",
|
2015-02-26 00:12:12 +00:00
|
|
|
:group => Group.lookup( :name => 'WithoutAccess'),
|
2015-02-25 23:44:29 +00:00
|
|
|
:customer_id => 2,
|
|
|
|
:state => Ticket::State.lookup( :name => 'open' ),
|
|
|
|
:priority => Ticket::Priority.lookup( :name => '2 normal' ),
|
|
|
|
:updated_by_id => 1,
|
|
|
|
:created_by_id => 1,
|
|
|
|
)
|
|
|
|
article = Ticket::Article.create(
|
|
|
|
:ticket_id => ticket3.id,
|
|
|
|
:from => 'some_sender@example.org',
|
|
|
|
:to => 'some_recipient@example.org',
|
|
|
|
:subject => 'some subject3',
|
|
|
|
:message_id => 'some@id',
|
2015-02-26 00:12:12 +00:00
|
|
|
:body => 'some other message 3 / kindergarden what else?',
|
2015-02-25 23:44:29 +00:00
|
|
|
: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,
|
|
|
|
)
|
|
|
|
ticket3.search_index_update_backend
|
|
|
|
|
|
|
|
|
|
|
|
result = Ticket.search(
|
|
|
|
:current_user => agent,
|
2015-02-26 00:12:12 +00:00
|
|
|
:query => 'autobahn',
|
2015-02-25 23:44:29 +00:00
|
|
|
:limit => 15,
|
|
|
|
)
|
2015-02-26 00:12:12 +00:00
|
|
|
|
|
|
|
assert(!result.empty?, 'result exists')
|
|
|
|
assert(result[0], 'record 1')
|
|
|
|
assert(!result[1], 'record 2')
|
|
|
|
assert_equal(result[0].id, ticket2.id)
|
|
|
|
|
|
|
|
|
|
|
|
result = Ticket.search(
|
|
|
|
:current_user => agent,
|
|
|
|
:query => 'kindergarden',
|
|
|
|
:limit => 15,
|
|
|
|
)
|
|
|
|
assert(result.empty?, 'result should be empty')
|
|
|
|
assert(!result[0], 'record 1')
|
|
|
|
|
2015-02-25 23:44:29 +00:00
|
|
|
|
|
|
|
end
|
|
|
|
end
|