aggs_test.rb
8.12 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
require_relative "test_helper"
class AggsTest < Minitest::Test
def setup
super
store [
{name: "Product Show", latitude: 37.7833, longitude: 12.4167, store_id: 1, in_stock: true, color: "blue", price: 21, created_at: 2.days.ago},
{name: "Product Hide", latitude: 29.4167, longitude: -98.5000, store_id: 2, in_stock: false, color: "green", price: 25, created_at: 2.days.from_now},
{name: "Product B", latitude: 43.9333, longitude: -122.4667, store_id: 2, in_stock: false, color: "red", price: 5, created_at: Time.now},
{name: "Foo", latitude: 43.9333, longitude: 12.4667, store_id: 3, in_stock: false, color: "yellow", price: 15, created_at: Time.now}
]
end
def test_basic
assert_equal ({1 => 1, 2 => 2}), store_agg(aggs: [:store_id])
end
def test_where
assert_equal ({1 => 1}), store_agg(aggs: {store_id: {where: {in_stock: true}}})
end
def test_order
agg = Product.search("Product", aggs: {color: {order: {_key: "desc"}}}).aggs["color"]
assert_equal %w(red green blue), agg["buckets"].map { |b| b["key"] }
end
def test_field
assert_equal ({1 => 1, 2 => 2}), store_agg(aggs: {store_id: {}})
assert_equal ({1 => 1, 2 => 2}), store_agg(aggs: {store_id: {field: "store_id"}})
assert_equal ({1 => 1, 2 => 2}), store_agg({aggs: {store_id_new: {field: "store_id"}}}, "store_id_new")
end
def test_min_doc_count
assert_equal ({2 => 2}), store_agg(aggs: {store_id: {min_doc_count: 2}})
end
def test_script
source = "'Color: ' + _value"
agg = Product.search("Product", aggs: {color: {script: {source: source}}}).aggs["color"]
assert_equal ({"Color: blue" => 1, "Color: green" => 1, "Color: red" => 1}), buckets_as_hash(agg)
end
def test_no_aggs
assert_nil Product.search("*").aggs
end
def test_limit
agg = Product.search("Product", aggs: {store_id: {limit: 1}}).aggs["store_id"]
assert_equal 1, agg["buckets"].size
# assert_equal 3, agg["doc_count"]
assert_equal(1, agg["sum_other_doc_count"])
end
def test_ranges
price_ranges = [{to: 10}, {from: 10, to: 20}, {from: 20}]
agg = Product.search("Product", aggs: {price: {ranges: price_ranges}}).aggs["price"]
assert_equal 3, agg["buckets"].size
assert_equal 10.0, agg["buckets"][0]["to"]
assert_equal 20.0, agg["buckets"][2]["from"]
assert_equal 1, agg["buckets"][0]["doc_count"]
assert_equal 0, agg["buckets"][1]["doc_count"]
assert_equal 2, agg["buckets"][2]["doc_count"]
end
def test_date_ranges
ranges = [{to: 1.day.ago}, {from: 1.day.ago, to: 1.day.from_now}, {from: 1.day.from_now}]
agg = Product.search("Product", aggs: {created_at: {date_ranges: ranges}}).aggs["created_at"]
assert_equal 1, agg["buckets"][0]["doc_count"]
assert_equal 1, agg["buckets"][1]["doc_count"]
assert_equal 1, agg["buckets"][2]["doc_count"]
end
def test_query_where
assert_equal ({1 => 1}), store_agg(where: {in_stock: true}, aggs: [:store_id])
end
def test_two_wheres
assert_equal ({2 => 1}), store_agg(where: {color: "red"}, aggs: {store_id: {where: {in_stock: false}}})
end
def test_where_override
assert_equal ({}), store_agg(where: {color: "red"}, aggs: {store_id: {where: {in_stock: false, color: "blue"}}})
assert_equal ({2 => 1}), store_agg(where: {color: "blue"}, aggs: {store_id: {where: {in_stock: false, color: "red"}}})
end
def test_skip
assert_equal ({1 => 1, 2 => 2}), store_agg(where: {store_id: 2}, aggs: [:store_id])
end
def test_skip_complex
assert_equal ({1 => 1, 2 => 1}), store_agg(where: {store_id: 2, price: {gt: 5}}, aggs: [:store_id])
end
def test_multiple
assert_equal ({"store_id" => {1 => 1, 2 => 2}, "color" => {"blue" => 1, "green" => 1, "red" => 1}}), store_multiple_aggs(aggs: [:store_id, :color])
end
def test_smart_aggs_false
assert_equal ({2 => 2}), store_agg(where: {color: "red"}, aggs: {store_id: {where: {in_stock: false}}}, smart_aggs: false)
assert_equal ({2 => 2}), store_agg(where: {color: "blue"}, aggs: {store_id: {where: {in_stock: false}}}, smart_aggs: false)
end
def test_aggs_group_by_date
store [{name: "Old Product", created_at: 3.years.ago}]
products =
Product.search("Product",
where: {
created_at: {lt: Time.now}
},
aggs: {
products_per_year: {
date_histogram: {
field: :created_at,
interval_key => :year
}
}
}
)
assert_equal 4, products.aggs["products_per_year"]["buckets"].size
end
def test_aggs_with_time_zone
start_time = Time.at(1529366400)
store [
{name: "Opera House Pass", created_at: start_time},
{name: "London Eye Pass", created_at: start_time + 16.hours},
{name: "London Tube Pass", created_at: start_time + 16.hours}
]
sydney_search = search_aggregate_by_day_with_time_zone('Pass', '+10:00') # Sydney
london_search = search_aggregate_by_day_with_time_zone('Pass', '+01:00') # London
# London search will return all 3 in one bucket because of time zone offset
expected_london_buckets = [
{"key_as_string" => "2018-06-19T00:00:00.000+01:00", "key" => 1529362800000, "doc_count" => 3}
]
assert_equal expected_london_buckets, london_search.aggs["products_per_day"]["buckets"]
# Sydney search will return them in separate buckets due to time zone offset
expected_sydney_buckets = [
{"key_as_string" => "2018-06-19T00:00:00.000+10:00", "key" => 1529330400000, "doc_count" => 1},
{"key_as_string" => "2018-06-20T00:00:00.000+10:00", "key" => 1529416800000, "doc_count" => 2}
]
assert_equal expected_sydney_buckets, sydney_search.aggs["products_per_day"]["buckets"]
end
def test_aggs_avg
products =
Product.search("*",
aggs: {
avg_price: {
avg: {
field: :price
}
}
}
)
assert_equal 16.5, products.aggs["avg_price"]["value"]
end
def test_aggs_cardinality
products =
Product.search("*",
aggs: {
total_stores: {
cardinality: {
field: :store_id
}
}
}
)
assert_equal 3, products.aggs["total_stores"]["value"]
end
def test_aggs_min_max
products =
Product.search("*",
aggs: {
min_price: {
min: {
field: :price
}
},
max_price: {
max: {
field: :price
}
}
}
)
assert_equal 5, products.aggs["min_price"]["value"]
assert_equal 25, products.aggs["max_price"]["value"]
end
def test_aggs_sum
products =
Product.search("*",
aggs: {
sum_price: {
sum: {
field: :price
}
}
}
)
assert_equal 66, products.aggs["sum_price"]["value"]
end
def test_body_options
products =
Product.search("*",
body_options: {
aggs: {
price: {
histogram: {field: :price, interval: 10}
}
}
}
)
expected = [
{"key" => 0.0, "doc_count" => 1},
{"key" => 10.0, "doc_count" => 1},
{"key" => 20.0, "doc_count" => 2}
]
assert_equal products.aggs["price"]["buckets"], expected
end
protected
def search_aggregate_by_day_with_time_zone(query, time_zone = '-8:00')
Product.search(query,
where: {
created_at: {lt: Time.now}
},
aggs: {
products_per_day: {
date_histogram: {
field: :created_at,
interval_key => :day,
time_zone: time_zone
}
}
}
)
end
def buckets_as_hash(agg)
agg["buckets"].to_h { |v| [v["key"], v["doc_count"]] }
end
def store_agg(options, agg_key = "store_id")
buckets = Product.search("Product", **options).aggs[agg_key]
buckets_as_hash(buckets)
end
def store_multiple_aggs(options)
Product.search("Product", **options).aggs.to_h do |field, filtered_agg|
[field, buckets_as_hash(filtered_agg)]
end
end
def interval_key
Searchkick.server_below?("7.4.0") ? :interval : :calendar_interval
end
end