test_helper.rb
8.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
require "bundler/setup"
Bundler.require(:default)
require "minitest/autorun"
require "minitest/pride"
require "logger"
require "active_support/core_ext" if defined?(NoBrainer)
require "active_support/notifications"
ENV["RACK_ENV"] = "test"
Minitest::Test = Minitest::Unit::TestCase unless defined?(Minitest::Test)
File.delete("elasticsearch.log") if File.exist?("elasticsearch.log")
Searchkick.client.transport.logger = Logger.new("elasticsearch.log")
Searchkick.search_timeout = 5
puts "Running against Elasticsearch #{Searchkick.server_version}"
I18n.config.enforce_available_locales = true
ActiveJob::Base.logger = nil if defined?(ActiveJob)
ActiveSupport::LogSubscriber.logger = Logger.new(STDOUT) if ENV["NOTIFICATIONS"]
def elasticsearch_below50?
Searchkick.server_below?("5.0.0-alpha1")
end
def elasticsearch_below20?
Searchkick.server_below?("2.0.0")
end
def elasticsearch_below14?
Searchkick.server_below?("1.4.0")
end
def mongoid2?
defined?(Mongoid) && Mongoid::VERSION.starts_with?("2.")
end
def nobrainer?
defined?(NoBrainer)
end
def activerecord_below41?
defined?(ActiveRecord) && Gem::Version.new(ActiveRecord::VERSION::STRING) < Gem::Version.new("4.1.0")
end
if defined?(Mongoid)
Mongoid.logger.level = Logger::INFO
Mongo::Logger.logger.level = Logger::INFO if defined?(Mongo::Logger)
if mongoid2?
# enable comparison of BSON::ObjectIds
module BSON
class ObjectId
def <=>(other)
data <=> other.data
end
end
end
end
Mongoid.configure do |config|
if mongoid2?
config.master = Mongo::Connection.new.db("searchkick_test")
else
config.connect_to "searchkick_test"
end
end
class Product
include Mongoid::Document
include Mongoid::Timestamps
field :name
field :store_id, type: Integer
field :in_stock, type: Boolean
field :backordered, type: Boolean
field :orders_count, type: Integer
field :found_rate, type: BigDecimal
field :price, type: Integer
field :color
field :latitude, type: BigDecimal
field :longitude, type: BigDecimal
field :description
field :alt_description
end
class Store
include Mongoid::Document
has_many :products
field :name
end
class Speaker
include Mongoid::Document
field :name
end
class Animal
include Mongoid::Document
field :name
end
class Dog < Animal
end
class Cat < Animal
end
elsif defined?(NoBrainer)
NoBrainer.configure do |config|
config.app_name = :searchkick
config.environment = :test
end
class Product
include NoBrainer::Document
include NoBrainer::Document::Timestamps
field :id, type: Object
field :name, type: String
field :in_stock, type: Boolean
field :backordered, type: Boolean
field :orders_count, type: Integer
field :found_rate
field :price, type: Integer
field :color, type: String
field :latitude
field :longitude
field :description, type: String
field :alt_description, type: String
belongs_to :store, validates: false
end
class Store
include NoBrainer::Document
field :id, type: Object
field :name, type: String
end
class Speaker
include NoBrainer::Document
field :id, type: Object
field :name, type: String
end
class Animal
include NoBrainer::Document
field :id, type: Object
field :name, type: String
end
class Dog < Animal
end
class Cat < Animal
end
else
require "active_record"
# for debugging
# ActiveRecord::Base.logger = Logger.new(STDOUT)
# rails does this in activerecord/lib/active_record/railtie.rb
ActiveRecord::Base.default_timezone = :utc
ActiveRecord::Base.time_zone_aware_attributes = true
# migrations
ActiveRecord::Base.establish_connection adapter: "sqlite3", database: ":memory:"
ActiveRecord::Base.raise_in_transactional_callbacks = true if ActiveRecord::VERSION::STRING.start_with?("4.2.")
if defined?(Apartment)
class Rails
def self.env
ENV["RACK_ENV"]
end
end
tenants = ["tenant1", "tenant2"]
Apartment.configure do |config|
config.tenant_names = tenants
config.database_schema_file = false
config.excluded_models = ["Product", "Store", "Animal", "Dog", "Cat"]
end
class Tenant < ActiveRecord::Base
searchkick index_prefix: -> { Apartment::Tenant.current }
end
tenants.each do |tenant|
begin
Apartment::Tenant.create(tenant)
rescue Apartment::TenantExists
# do nothing
end
Apartment::Tenant.switch!(tenant)
ActiveRecord::Migration.create_table :tenants, force: true do |t|
t.string :name
t.timestamps null: true
end
Tenant.reindex
end
Apartment::Tenant.reset
end
ActiveRecord::Migration.create_table :products do |t|
t.string :name
t.integer :store_id
t.boolean :in_stock
t.boolean :backordered
t.integer :orders_count
t.decimal :found_rate
t.integer :price
t.string :color
t.decimal :latitude, precision: 10, scale: 7
t.decimal :longitude, precision: 10, scale: 7
t.text :description
t.text :alt_description
t.timestamps null: true
end
ActiveRecord::Migration.create_table :stores do |t|
t.string :name
end
ActiveRecord::Migration.create_table :speakers do |t|
t.string :name
end
ActiveRecord::Migration.create_table :animals do |t|
t.string :name
t.string :type
end
class Product < ActiveRecord::Base
end
class Store < ActiveRecord::Base
has_many :products
end
class Speaker < ActiveRecord::Base
end
class Animal < ActiveRecord::Base
end
class Dog < Animal
end
class Cat < Animal
end
end
class Product
belongs_to :store
searchkick \
synonyms: [
["clorox", "bleach"],
["scallion", "greenonion"],
["saranwrap", "plasticwrap"],
["qtip", "cottonswab"],
["burger", "hamburger"],
["bandaid", "bandag"]
],
autocomplete: [:name],
suggest: [:name, :color],
conversions: [:conversions],
personalize: :user_ids,
locations: [:location, :multiple_locations],
text_start: [:name],
text_middle: [:name],
text_end: [:name],
word_start: [:name],
word_middle: [:name],
word_end: [:name],
highlight: [:name],
searchable: [:name, :color],
filterable: [:name, :color, :description],
# unsearchable: [:description],
# only_analyzed: [:alt_description],
match: ENV["MATCH"] ? ENV["MATCH"].to_sym : nil
attr_accessor :conversions, :user_ids, :aisle, :details
def search_data
serializable_hash.except("id").merge(
conversions: conversions,
user_ids: user_ids,
location: {lat: latitude, lon: longitude},
multiple_locations: [{lat: latitude, lon: longitude}, {lat: 0, lon: 0}],
aisle: aisle,
details: details
)
end
def should_index?
name != "DO NOT INDEX"
end
def search_name
{
name: name
}
end
end
class Store
searchkick \
routing: true,
merge_mappings: true,
mappings: {
store: {
properties: {
name: elasticsearch_below50? ? {type: "string", analyzer: "keyword"} : {type: "keyword"}
}
}
}
def search_document_id
id
end
def search_routing
name
end
end
class Speaker
searchkick \
conversions: ["conversions_a", "conversions_b"]
attr_accessor :conversions_a, :conversions_b
def search_data
serializable_hash.except("id").merge(
conversions_a: conversions_a,
conversions_b: conversions_b
)
end
end
class Animal
searchkick \
autocomplete: [:name],
suggest: [:name],
index_name: -> { "#{name.tableize}-#{Date.today.year}" }
# wordnet: true
end
Product.searchkick_index.delete if Product.searchkick_index.exists?
Product.reindex
Product.reindex # run twice for both index paths
Product.create!(name: "Set mapping")
Store.reindex
Animal.reindex
Speaker.reindex
class Minitest::Test
def setup
Product.destroy_all
Store.destroy_all
Animal.destroy_all
Speaker.destroy_all
end
protected
def store(documents, klass = Product)
documents.shuffle.each do |document|
klass.create!(document)
end
klass.searchkick_index.refresh
end
def store_names(names, klass = Product)
store names.map { |name| {name: name} }, klass
end
# no order
def assert_search(term, expected, options = {}, klass = Product)
assert_equal expected.sort, klass.search(term, options).map(&:name).sort
end
def assert_order(term, expected, options = {}, klass = Product)
assert_equal expected, klass.search(term, options).map(&:name)
end
def assert_equal_scores(term, options = {}, klass = Product)
assert_equal 1, klass.search(term, options).hits.map { |a| a["_score"] }.uniq.size
end
def assert_first(term, expected, options = {}, klass = Product)
assert_equal expected, klass.search(term, options).map(&:name).first
end
end