70 lines
1.9 KiB
Ruby
70 lines
1.9 KiB
Ruby
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
require 'rake'
|
|
|
|
# if you make changes, then please also change this file 'spec/support/searchindex_backend.rb'
|
|
# this is required as long as our test suite is made of RSpec and MiniTest
|
|
module SearchindexHelper
|
|
|
|
def self.included(base)
|
|
|
|
base.teardown do
|
|
next if ENV['ES_URL'].blank?
|
|
|
|
Rake::Task['searchindex:drop'].execute
|
|
end
|
|
end
|
|
|
|
=begin
|
|
|
|
prepares elasticsearch
|
|
|
|
@param required [Boolean] raises error if ES is not configured. Recommended to avoid mysterious errors in CI.
|
|
@param rebuild [Boolean] rebuilds indexes and sleeps for 1 second after given yield block is executed
|
|
|
|
@yield given block run after ES is setup, but before index rebuilding
|
|
|
|
=end
|
|
def configure_elasticsearch(required: false, rebuild: false)
|
|
if ENV['ES_URL'].blank?
|
|
return if !required
|
|
|
|
raise "ERROR: Need ES_URL - hint ES_URL='http://127.0.0.1:9200'"
|
|
end
|
|
|
|
Setting.set('es_url', ENV['ES_URL'])
|
|
|
|
# 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')
|
|
|
|
if ENV['ES_INDEX_RAND'].present?
|
|
rand_id = ENV.fetch('CI_JOB_ID', "r#{SecureRandom.uuid}")
|
|
test_method_name = method_name.gsub(%r{[^\w]}, '_')
|
|
ENV['ES_INDEX'] = "es_index_#{test_method_name.downcase}_#{rand_id.downcase}"
|
|
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'])
|
|
|
|
# set max attachment size in mb
|
|
Setting.set('es_attachment_max_size_in_mb', 1)
|
|
|
|
yield if block_given?
|
|
|
|
return if !rebuild
|
|
|
|
rebuild_searchindex
|
|
end
|
|
|
|
def rebuild_searchindex
|
|
Rake::Task.clear
|
|
Zammad::Application.load_tasks
|
|
Rake::Task['searchindex:rebuild'].execute
|
|
Rake::Task['searchindex:refresh'].execute
|
|
end
|
|
|
|
end
|