test_helper.rb
4.11 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
require "bundler/setup"
Bundler.require(:default)
require "minitest/autorun"
require "minitest/pride"
require "logger"
ENV["RACK_ENV"] = "test"
File.delete("elasticsearch.log") if File.exists?("elasticsearch.log")
Searchkick.client.transport.logger = Logger.new("elasticsearch.log")
if defined?(Mongoid)
Mongoid.configure do |config|
config.connect_to "searchkick_test"
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 :price, type: Integer
field :color
field :latitude, type: BigDecimal
field :longitude, type: BigDecimal
end
class Store
include Mongoid::Document
field :name
end
class Animal
include Mongoid::Document
field :name
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::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.integer :price
t.string :color
t.decimal :latitude, precision: 10, scale: 7
t.decimal :longitude, precision: 10, scale: 7
t.timestamps
end
ActiveRecord::Migration.create_table :stores 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
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],
exact: [:name]
attr_accessor :conversions, :user_ids
def search_data
serializable_hash.except("id").merge conversions: conversions, user_ids: user_ids, location: [latitude, longitude], multiple_locations: [[latitude, longitude], [0, 0]]
end
def should_index?
name != "DO NOT INDEX"
end
end
class Store
searchkick mappings: {
store: {
properties: {
name: {type: "string", analyzer: "keyword"}
}
}
}
end
class Animal
searchkick autocomplete: [:name], suggest: [:name], index_name: -> { "#{self.name.tableize}-#{Date.today.year}" }
end
Product.searchkick_index.delete if Product.searchkick_index.exists?
Product.reindex
Product.reindex # run twice for both index paths
Store.reindex
Animal.reindex
class Minitest::Unit::TestCase
def setup
Product.destroy_all
Store.destroy_all
Animal.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_first(term, expected, options = {}, klass = Product)
assert_equal expected, klass.search(term, options).map(&:name).first
end
end