-
Notifications
You must be signed in to change notification settings - Fork 204
/
Copy pathtest_integration_aggregate.rb
366 lines (293 loc) · 8.38 KB
/
test_integration_aggregate.rb
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
require "helper"
class IntegrationAggregateTestCase < SQLite3::TestCase
def setup
@db = SQLite3::Database.new(":memory:")
@db.transaction do
@db.execute "create table foo ( a integer primary key, b text, c integer )"
@db.execute "insert into foo ( b, c ) values ( 'foo', 10 )"
@db.execute "insert into foo ( b, c ) values ( 'bar', 11 )"
@db.execute "insert into foo ( b, c ) values ( 'bar', 12 )"
end
end
def teardown
@db.close
end
def test_create_aggregate_without_block
step = proc do |ctx, a|
ctx[:sum] ||= 0
ctx[:sum] += a.to_i
end
final = proc { |ctx| ctx.result = ctx[:sum] }
@db.create_aggregate("accumulate", 1, step, final)
value = @db.get_first_value("select accumulate(a) from foo")
assert_equal 6, value
# calling #get_first_value twice don't add up to the latest result
value = @db.get_first_value("select accumulate(a) from foo")
assert_equal 6, value
end
def test_create_aggregate_with_block
@db.create_aggregate("accumulate", 1) do
step do |ctx, a|
ctx[:sum] ||= 0
ctx[:sum] += a.to_i
end
finalize { |ctx| ctx.result = ctx[:sum] }
end
value = @db.get_first_value("select accumulate(a) from foo")
assert_equal 6, value
end
def test_create_aggregate_with_group_by
@db.create_aggregate("accumulate", 1) do
step do |ctx, a|
ctx[:sum] ||= 0
ctx[:sum] += a.to_i
end
finalize { |ctx| ctx.result = ctx[:sum] }
end
values = @db.execute("select b, accumulate(c) from foo group by b order by b")
assert_equal "bar", values[0][0]
assert_equal 23, values[0][1]
assert_equal "foo", values[1][0]
assert_equal 10, values[1][1]
end
def test_create_aggregate_with_the_same_function_twice_in_a_query
@db.create_aggregate("accumulate", 1) do
step do |ctx, a|
ctx[:sum] ||= 0
ctx[:sum] += a.to_i
end
finalize { |ctx| ctx.result = ctx[:sum] }
end
values = @db.get_first_row("select accumulate(a), accumulate(c) from foo")
assert_equal 6, values[0]
assert_equal 33, values[1]
end
def test_create_aggregate_with_two_different_functions
@db.create_aggregate("accumulate", 1) do
step do |ctx, a|
ctx[:sum] ||= 0
ctx[:sum] += a.to_i
end
finalize { |ctx| ctx.result = ctx[:sum] }
end
@db.create_aggregate("multiply", 1) do
step do |ctx, a|
ctx[:sum] ||= 1
ctx[:sum] *= a.to_i
end
finalize { |ctx| ctx.result = ctx[:sum] }
end
GC.start
values = @db.get_first_row("select accumulate(a), multiply(c) from foo")
assert_equal 6, values[0]
assert_equal 1320, values[1]
value = @db.get_first_value("select accumulate(c) from foo")
assert_equal 33, value
value = @db.get_first_value("select multiply(a) from foo")
assert_equal 6, value
end
def test_create_aggregate_overwrite_function
@db.create_aggregate("accumulate", 1) do
step do |ctx, a|
ctx[:sum] ||= 0
ctx[:sum] += a.to_i
end
finalize { |ctx| ctx.result = ctx[:sum] }
end
value = @db.get_first_value("select accumulate(c) from foo")
assert_equal 33, value
GC.start
@db.create_aggregate("accumulate", 1) do
step do |ctx, a|
ctx[:sum] ||= 1
ctx[:sum] *= a.to_i
end
finalize { |ctx| ctx.result = ctx[:sum] }
end
value = @db.get_first_value("select accumulate(c) from foo")
assert_equal 1320, value
end
def test_create_aggregate_overwrite_function_with_different_arity
@db.create_aggregate("accumulate", -1) do
step do |ctx, *args|
ctx[:sum] ||= 0
args.each { |a| ctx[:sum] += a.to_i }
end
finalize { |ctx| ctx.result = ctx[:sum] }
end
@db.create_aggregate("accumulate", 2) do
step do |ctx, a, b|
ctx[:sum] ||= 1
ctx[:sum] *= (a.to_i + b.to_i)
end
finalize { |ctx| ctx.result = ctx[:sum] }
end
GC.start
values = @db.get_first_row("select accumulate(c), accumulate(a,c) from foo")
assert_equal 33, values[0]
assert_equal 2145, values[1]
end
def test_create_aggregate_with_invalid_arity
assert_raise ArgumentError do
@db.create_aggregate("accumulate", 1000) do
step { |ctx, *args| }
finalize { |ctx| }
end
end
end
class CustomException < RuntimeError
end
def test_create_aggregate_with_exception_in_step
@db.create_aggregate("raiseexception", 1) do
step do |ctx, a|
raise CustomException.new("bogus aggregate handler")
end
finalize { |ctx| ctx.result = 42 }
end
assert_raise CustomException do
@db.get_first_value("select raiseexception(a) from foo")
end
end
def test_create_aggregate_with_exception_in_finalize
@db.create_aggregate("raiseexception", 1) do
step do |ctx, a|
raise CustomException.new("bogus aggregate handler")
end
finalize do |ctx|
raise CustomException.new("bogus aggregate handler")
end
end
assert_raise CustomException do
@db.get_first_value("select raiseexception(a) from foo")
end
end
def test_create_aggregate_with_no_data
@db.create_aggregate("accumulate", 1) do
step do |ctx, a|
ctx[:sum] ||= 0
ctx[:sum] += a.to_i
end
finalize { |ctx| ctx.result = ctx[:sum] || 0 }
end
value = @db.get_first_value(
"select accumulate(a) from foo where a = 100"
)
assert_equal 0, value
end
class AggregateHandler
class << self
def arity
1
end
def text_rep
SQLite3::Constants::TextRep::ANY
end
def name
"multiply"
end
end
def step(ctx, a)
ctx[:buffer] ||= 1
ctx[:buffer] *= a.to_i
end
def finalize(ctx)
ctx.result = ctx[:buffer]
end
end
def test_aggregate_initialized_twice
initialized = 0
handler = Class.new(AggregateHandler) do
define_method(:initialize) do
initialized += 1
super()
end
end
@db.create_aggregate_handler handler
@db.get_first_value("select multiply(a) from foo")
@db.get_first_value("select multiply(a) from foo")
assert_equal 2, initialized
end
def test_create_aggregate_handler_call_with_wrong_arity
@db.create_aggregate_handler AggregateHandler
assert_raise(SQLite3::SQLException) do
@db.get_first_value("select multiply(a,c) from foo")
end
end
class RaiseExceptionStepAggregateHandler
class << self
def arity
1
end
def text_rep
SQLite3::Constants::TextRep::ANY
end
def name
"raiseexception"
end
end
def step(ctx, a)
raise CustomException.new("bogus aggregate handler")
end
def finalize(ctx)
ctx.result = nil
end
end
def test_create_aggregate_handler_with_exception_step
@db.create_aggregate_handler RaiseExceptionStepAggregateHandler
assert_raise CustomException do
@db.get_first_value("select raiseexception(a) from foo")
end
end
class RaiseExceptionNewAggregateHandler
class << self
def name
"raiseexception"
end
end
def initialize
raise CustomException.new("bogus aggregate handler")
end
def step(ctx, a)
end
def finalize(ctx)
ctx.result = nil
end
end
def test_create_aggregate_handler_with_exception_new
@db.create_aggregate_handler RaiseExceptionNewAggregateHandler
assert_raise CustomException do
@db.get_first_value("select raiseexception(a) from foo")
end
end
def test_create_aggregate_handler
@db.create_aggregate_handler AggregateHandler
value = @db.get_first_value("select multiply(a) from foo")
assert_equal 6, value
end
class AccumulateAggregator
def step(*args)
@sum ||= 0
args.each { |a| @sum += a.to_i }
end
def finalize
@sum
end
end
class AccumulateAggregator2
def step(a, b)
@sum ||= 1
@sum *= (a.to_i + b.to_i)
end
def finalize
@sum
end
end
def test_define_aggregator_with_two_different_arities
@db.define_aggregator("accumulate", AccumulateAggregator.new)
@db.define_aggregator("accumulate", AccumulateAggregator2.new)
GC.start
values = @db.get_first_row("select accumulate(c), accumulate(a,c) from foo")
assert_equal 33, values[0]
assert_equal 2145, values[1]
end
end