forked from flipp-oss/deimos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
active_record_batch_consumer_spec.rb
481 lines (409 loc) · 13.2 KB
/
active_record_batch_consumer_spec.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
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
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
# frozen_string_literal: true
# Wrapped in a module to prevent class leakage
module ActiveRecordBatchConsumerTest
describe Deimos::ActiveRecordConsumer do
# Create ActiveRecord table and model
before(:all) do
ActiveRecord::Base.connection.create_table(:widgets, force: true) do |t|
t.string(:test_id)
t.string(:part_one)
t.string(:part_two)
t.integer(:some_int)
t.boolean(:deleted, default: false)
t.timestamps
t.index(%i(part_one part_two), unique: true)
end
# Sample model
class Widget < ActiveRecord::Base
validates :test_id, presence: true
default_scope -> { where(deleted: false) }
end
Widget.reset_column_information
end
after(:all) do
ActiveRecord::Base.connection.drop_table(:widgets)
end
prepend_before(:each) do
stub_const('MyBatchConsumer', consumer_class)
end
around(:each) do |ex|
# Set and freeze example time
travel_to start do
ex.run
end
end
# Default starting time
let(:start) { Time.zone.local(2019, 1, 1, 10, 30, 0) }
# Basic uncompacted consumer
let(:consumer_class) do
Class.new(described_class) do
schema 'MySchema'
namespace 'com.my-namespace'
key_config plain: true
record_class Widget
compacted false
end
end
# Helper to get all instances, ignoring default scopes
def all_widgets
Widget.unscoped.all
end
# Helper to publish a list of messages and call the consumer
def publish_batch(messages)
keys = messages.map { |m| m[:key] }
payloads = messages.map { |m| m[:payload] }
test_consume_batch(MyBatchConsumer, payloads, keys: keys, call_original: true)
end
it 'should handle an empty batch' do
expect { publish_batch([]) }.not_to raise_error
end
it 'should create records from a batch' do
publish_batch(
[
{ key: 1,
payload: { test_id: 'abc', some_int: 3 } },
{ key: 2,
payload: { test_id: 'def', some_int: 4 } }
]
)
expect(all_widgets).
to match_array(
[
have_attributes(id: 1, test_id: 'abc', some_int: 3, updated_at: start, created_at: start),
have_attributes(id: 2, test_id: 'def', some_int: 4, updated_at: start, created_at: start)
]
)
end
it 'should handle deleting a record that doesn\'t exist' do
publish_batch(
[
{ key: 1,
payload: nil }
]
)
expect(all_widgets).to be_empty
end
it 'should handle an update, followed by a delete in the correct order' do
Widget.create!(id: 1, test_id: 'abc', some_int: 2)
publish_batch(
[
{ key: 1,
payload: { test_id: 'abc', some_int: 3 } },
{ key: 1,
payload: nil }
]
)
expect(all_widgets).to be_empty
end
it 'should handle a delete, followed by an update in the correct order' do
Widget.create!(id: 1, test_id: 'abc', some_int: 2)
travel 1.day
publish_batch(
[
{ key: 1,
payload: nil },
{ key: 1,
payload: { test_id: 'abc', some_int: 3 } }
]
)
expect(all_widgets).
to match_array(
[
have_attributes(id: 1, test_id: 'abc', some_int: 3, updated_at: Time.zone.now, created_at: Time.zone.now)
]
)
end
it 'should handle a double update' do
Widget.create!(id: 1, test_id: 'abc', some_int: 2)
travel 1.day
publish_batch(
[
{ key: 1,
payload: { test_id: 'def', some_int: 3 } },
{ key: 1,
payload: { test_id: 'ghi', some_int: 4 } }
]
)
expect(all_widgets).
to match_array(
[
have_attributes(id: 1, test_id: 'ghi', some_int: 4, updated_at: Time.zone.now, created_at: start)
]
)
end
it 'should handle a double deletion' do
Widget.create!(id: 1, test_id: 'abc', some_int: 2)
publish_batch(
[
{ key: 1,
payload: nil },
{ key: 1,
payload: nil }
]
)
expect(all_widgets).to be_empty
end
it 'should ignore default scopes' do
Widget.create!(id: 1, test_id: 'abc', some_int: 2, deleted: true)
Widget.create!(id: 2, test_id: 'def', some_int: 3, deleted: true)
publish_batch(
[
{ key: 1,
payload: nil },
{ key: 2,
payload: { test_id: 'def', some_int: 5 } }
]
)
expect(all_widgets).
to match_array(
[
have_attributes(id: 2, test_id: 'def', some_int: 5)
]
)
end
describe 'compacted mode' do
# Create a compacted consumer
let(:consumer_class) do
Class.new(described_class) do
schema 'MySchema'
namespace 'com.my-namespace'
key_config plain: true
record_class Widget
# :no-doc:
def deleted_query(_records)
raise 'Should not have anything to delete!'
end
end
end
it 'should allow for compacted batches' do
expect(Widget).to receive(:import!).once.and_call_original
publish_batch(
[
{ key: 1,
payload: nil },
{ key: 2,
payload: { test_id: 'xyz', some_int: 5 } },
{ key: 1,
payload: { test_id: 'abc', some_int: 3 } },
{ key: 2,
payload: { test_id: 'def', some_int: 4 } },
{ key: 3,
payload: { test_id: 'hij', some_int: 9 } }
]
)
expect(all_widgets).
to match_array(
[
have_attributes(id: 1, test_id: 'abc', some_int: 3),
have_attributes(id: 2, test_id: 'def', some_int: 4),
have_attributes(id: 3, test_id: 'hij', some_int: 9)
]
)
end
end
describe 'batch atomicity' do
it 'should roll back if there was an exception while deleting' do
Widget.create!(id: 1, test_id: 'abc', some_int: 2)
travel 1.day
expect(Widget.connection).to receive(:delete).and_raise('Some error')
expect {
publish_batch(
[
{ key: 1,
payload: { test_id: 'def', some_int: 3 } },
{ key: 1,
payload: nil }
]
)
}.to raise_error('Some error')
expect(all_widgets).
to match_array(
[
have_attributes(id: 1, test_id: 'abc', some_int: 2, updated_at: start, created_at: start)
]
)
end
it 'should roll back if there was an invalid instance while upserting' do
Widget.create!(id: 1, test_id: 'abc', some_int: 2) # Updated but rolled back
Widget.create!(id: 3, test_id: 'ghi', some_int: 3) # Removed but rolled back
travel 1.day
expect {
publish_batch(
[
{ key: 1,
payload: { test_id: 'def', some_int: 3 } },
{ key: 2,
payload: nil },
{ key: 2,
payload: { test_id: '', some_int: 4 } }, # Empty string is not valid for test_id
{ key: 3,
payload: nil }
]
)
}.to raise_error(ActiveRecord::RecordInvalid)
expect(all_widgets).
to match_array(
[
have_attributes(id: 1, test_id: 'abc', some_int: 2, updated_at: start, created_at: start),
have_attributes(id: 3, test_id: 'ghi', some_int: 3, updated_at: start, created_at: start)
]
)
end
end
describe 'compound keys' do
let(:consumer_class) do
Class.new(described_class) do
schema 'MySchema'
namespace 'com.my-namespace'
key_config schema: 'MySchemaCompound-key'
record_class Widget
compacted false
# :no-doc:
def deleted_query(records)
keys = records.
map { |m| record_key(m.key) }.
reject(&:empty?)
# Only supported on Rails 5+
keys.reduce(@klass.none) do |query, key|
query.or(@klass.unscoped.where(key))
end
end
end
end
it 'should consume with compound keys' do
Widget.create!(test_id: 'xxx', some_int: 2, part_one: 'ghi', part_two: 'jkl')
Widget.create!(test_id: 'yyy', some_int: 7, part_one: 'mno', part_two: 'pqr')
publish_batch(
[
{ key: { part_one: 'abc', part_two: 'def' }, # To be created
payload: { test_id: 'aaa', some_int: 3 } },
{ key: { part_one: 'ghi', part_two: 'jkl' }, # To be updated
payload: { test_id: 'bbb', some_int: 4 } },
{ key: { part_one: 'mno', part_two: 'pqr' }, # To be deleted
payload: nil }
]
)
expect(all_widgets).
to match_array(
[
have_attributes(test_id: 'aaa', some_int: 3, part_one: 'abc', part_two: 'def'),
have_attributes(test_id: 'bbb', some_int: 4, part_one: 'ghi', part_two: 'jkl')
]
)
end
end
describe 'no keys' do
let(:consumer_class) do
Class.new(described_class) do
schema 'MySchema'
namespace 'com.my-namespace'
key_config none: true
record_class Widget
end
end
it 'should handle unkeyed topics' do
Widget.create!(test_id: 'xxx', some_int: 2)
publish_batch(
[
{ payload: { test_id: 'aaa', some_int: 3 } },
{ payload: { test_id: 'bbb', some_int: 4 } },
{ payload: nil } # Should be ignored. Can't delete with no key
]
)
expect(all_widgets).
to match_array(
[
have_attributes(test_id: 'xxx', some_int: 2),
have_attributes(test_id: 'aaa', some_int: 3),
have_attributes(test_id: 'bbb', some_int: 4)
]
)
end
end
describe 'soft deletion' do
let(:consumer_class) do
Class.new(described_class) do
schema 'MySchema'
namespace 'com.my-namespace'
key_config plain: true
record_class Widget
compacted false
# Sample customization: Soft delete
def remove_records(records)
deleted = deleted_query(records)
deleted.update_all(
deleted: true,
updated_at: Time.zone.now
)
end
# Sample customization: Undelete records
def record_attributes(payload, key)
super.merge(deleted: false)
end
end
end
it 'should mark records deleted' do
Widget.create!(id: 1, test_id: 'abc', some_int: 2)
Widget.create!(id: 3, test_id: 'xyz', some_int: 4)
Widget.create!(id: 4, test_id: 'uvw', some_int: 5, deleted: true)
travel 1.day
publish_batch(
[
{ key: 1,
payload: nil },
{ key: 1, # Double delete for key 1
payload: nil },
{ key: 2, # Create 2
payload: { test_id: 'def', some_int: 3 } },
{ key: 2, # Delete 2
payload: nil },
{ key: 3, # Update non-deleted
payload: { test_id: 'ghi', some_int: 4 } },
{ key: 4, # Revive
payload: { test_id: 'uvw', some_int: 5 } }
]
)
expect(all_widgets).
to match_array(
[
have_attributes(id: 1, test_id: 'abc', some_int: 2, deleted: true,
created_at: start, updated_at: Time.zone.now),
have_attributes(id: 2, test_id: 'def', some_int: 3, deleted: true,
created_at: Time.zone.now, updated_at: Time.zone.now),
have_attributes(id: 3, test_id: 'ghi', some_int: 4, deleted: false,
created_at: start, updated_at: Time.zone.now),
have_attributes(id: 4, test_id: 'uvw', some_int: 5, deleted: false,
created_at: start, updated_at: Time.zone.now)
]
)
end
end
describe 'skipping records' do
let(:consumer_class) do
Class.new(described_class) do
schema 'MySchema'
namespace 'com.my-namespace'
key_config plain: true
record_class Widget
# Sample customization: Skipping records
def record_attributes(payload, key)
return nil if payload[:test_id] == 'skipme'
super
end
end
end
it 'should allow overriding to skip any unwanted records' do
publish_batch(
[
{ key: 1, # Record that consumer can decide to skip
payload: { test_id: 'skipme' } },
{ key: 2,
payload: { test_id: 'abc123' } }
]
)
expect(all_widgets).
to match_array([have_attributes(id: 2, test_id: 'abc123')])
end
end
end
end