-
Notifications
You must be signed in to change notification settings - Fork 22
/
active_record_batch_consumer_spec.rb
814 lines (674 loc) · 24.3 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
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
# frozen_string_literal: true
# Wrapped in a module to prevent class leakage
module ActiveRecordBatchConsumerTest
describe Deimos::ActiveRecordConsumer, 'Batch Consumer' 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.string(:bulk_import_id)
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)
stub_const('ConsumerTest::MyBatchConsumer', consumer_class)
consumer_class.config[:bulk_import_id_column] = :bulk_import_id # default
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
describe 'consume_batch' do
SCHEMA_CLASS_SETTINGS.each do |setting, use_schema_classes|
context "with Schema Class consumption #{setting}" do
before(:each) do
Deimos.configure do |config|
config.schema.use_schema_classes = use_schema_classes
config.schema.use_full_namespace = true
end
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
it 'should handle deletes with deadlock retries' do
allow(Deimos::Utils::DeadlockRetry).to receive(:sleep)
allow(instance_double(ActiveRecord::Relation)).to receive(:delete_all).and_raise(
ActiveRecord::Deadlocked.new('Lock wait timeout exceeded')
).twice.ordered
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 not delete after multiple deadlock retries' do
allow(Deimos::Utils::DeadlockRetry).to receive(:sleep)
allow(instance_double(ActiveRecord::Relation)).to receive(:delete_all).and_raise(
ActiveRecord::Deadlocked.new('Lock wait timeout exceeded')
).exactly(3).times
Widget.create!(id: 1, test_id: 'abc', some_int: 2)
publish_batch(
[
{ key: 1,
payload: nil },
{ key: 1,
payload: nil }
]
)
expect(Widget.count).to eq(0)
end
end
end
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 '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')
allow_any_instance_of(MyBatchConsumer).to receive(:key_columns).
and_return(%w(part_one part_two))
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
describe 'pre processing' do
context 'with uncompacted messages' 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
def pre_process(messages)
messages.each do |message|
message.payload[:some_int] = -message.payload[:some_int]
end
end
end
end
it 'should pre-process records' do
Widget.create!(id: 1, test_id: 'abc', some_int: 1)
Widget.create!(id: 2, test_id: 'def', some_int: 2)
publish_batch(
[
{ key: 1,
payload: { test_id: 'abc', some_int: 11 } },
{ key: 2,
payload: { test_id: 'def', some_int: 20 } }
]
)
widget_one, widget_two = Widget.all.to_a
expect(widget_one.some_int).to eq(-11)
expect(widget_two.some_int).to eq(-20)
end
end
end
describe 'global configurations' do
context 'with a global bulk_import_id_generator' do
before(:each) do
Deimos.configure do
consumers.bulk_import_id_generator(proc { 'global' })
end
end
it 'should call the default bulk_import_id_generator proc' do
publish_batch(
[
{ 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: start,
created_at: start,
bulk_import_id: 'global')
]
)
end
end
context 'with a class defined bulk_import_id_generator' do
before(:each) do
Deimos.configure do
consumers.bulk_import_id_generator(proc { 'global' })
end
consumer_class.config[:bulk_import_id_generator] = proc { 'custom' }
end
it 'should call the default bulk_import_id_generator proc' do
publish_batch(
[
{ 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: start,
created_at: start,
bulk_import_id: 'custom')
]
)
end
end
end
describe 'should_consume?' 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
def should_consume?(record)
record.test_id != 'def'
end
def self.process_invalid_records(_)
nil
end
ActiveSupport::Notifications.subscribe('batch_consumption.invalid_records') do |*args|
payload = ActiveSupport::Notifications::Event.new(*args).payload
payload[:consumer].process_invalid_records(payload[:records])
end
end
end
it "should skip records that shouldn't be consumed" do
Widget.create!(id: 1, test_id: 'abc', some_int: 1)
Widget.create!(id: 2, test_id: 'def', some_int: 2)
publish_batch(
[
{ key: 1,
payload: { test_id: 'abc', some_int: 11 } },
{ key: 2,
payload: { test_id: 'def', some_int: 20 } }
]
)
expect(Widget.count).to eq(2)
expect(Widget.all.to_a).to match_array([
have_attributes(id: 1,
test_id: 'abc',
some_int: 11,
updated_at: start,
created_at: start),
have_attributes(id: 2,
test_id: 'def',
some_int: 2,
updated_at: start,
created_at: start)
])
end
end
describe 'post processing' do
context 'with uncompacted messages' 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
def should_consume?(record)
record.some_int.even?
end
def self.process_valid_records(valid)
# Success
attrs = valid.first.attributes
Widget.find_by(id: attrs['id'], test_id: attrs['test_id']).update!(some_int: 2000)
end
def self.process_invalid_records(invalid)
# Invalid
attrs = invalid.first.record.attributes
Widget.find_by(id: attrs['id'], test_id: attrs['test_id']).update!(some_int: attrs['some_int'])
end
ActiveSupport::Notifications.subscribe('batch_consumption.invalid_records') do |*args|
payload = ActiveSupport::Notifications::Event.new(*args).payload
payload[:consumer].process_invalid_records(payload[:records])
end
ActiveSupport::Notifications.subscribe('batch_consumption.valid_records') do |*args|
payload = ActiveSupport::Notifications::Event.new(*args).payload
payload[:consumer].process_valid_records(payload[:records])
end
end
end
it 'should process successful and failed records' do
Widget.create!(id: 1, test_id: 'abc', some_int: 1)
Widget.create!(id: 2, test_id: 'def', some_int: 2)
publish_batch(
[
{ key: 1,
payload: { test_id: 'abc', some_int: 11 } },
{ key: 2,
payload: { test_id: 'def', some_int: 20 } }
]
)
widget_one, widget_two = Widget.all.to_a
expect(widget_one.some_int).to eq(11)
expect(widget_two.some_int).to eq(2000)
end
end
context 'with compacted messages' do
let(:consumer_class) do
Class.new(described_class) do
schema 'MySchema'
namespace 'com.my-namespace'
key_config plain: true
record_class Widget
compacted true
def should_consume?(record)
record.some_int.even?
end
def self.process_valid_records(valid)
# Success
attrs = valid.first.attributes
Widget.find_by(id: attrs['id'], test_id: attrs['test_id']).update!(some_int: 2000)
end
def self.process_invalid_records(invalid)
# Invalid
attrs = invalid.first.record.attributes
Widget.find_by(id: attrs['id'], test_id: attrs['test_id']).update!(some_int: attrs['some_int'])
end
ActiveSupport::Notifications.subscribe('batch_consumption.invalid_records') do |*args|
payload = ActiveSupport::Notifications::Event.new(*args).payload
payload[:consumer].process_invalid_records(payload[:records])
end
ActiveSupport::Notifications.subscribe('batch_consumption.valid_records') do |*args|
payload = ActiveSupport::Notifications::Event.new(*args).payload
payload[:consumer].process_valid_records(payload[:records])
end
end
end
it 'should process successful and failed records' do
Widget.create!(id: 1, test_id: 'abc', some_int: 1)
Widget.create!(id: 2, test_id: 'def', some_int: 2)
publish_batch(
[
{ key: 1,
payload: { test_id: 'abc', some_int: 11 } },
{ key: 2,
payload: { test_id: 'def', some_int: 20 } }
]
)
widget_one, widget_two = Widget.all.to_a
expect(widget_one.some_int).to eq(11)
expect(widget_two.some_int).to eq(2000)
end
end
context 'with post processing errors' 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
def self.process_valid_records(_)
raise StandardError, 'Something went wrong'
end
ActiveSupport::Notifications.subscribe('batch_consumption.valid_records') do |*args|
payload = ActiveSupport::Notifications::Event.new(*args).payload
payload[:consumer].process_valid_records(payload[:records])
end
end
end
it 'should save records if an exception occurs in post processing' do
Widget.create!(id: 1, test_id: 'abc', some_int: 1)
Widget.create!(id: 2, test_id: 'def', some_int: 2)
expect {
publish_batch(
[
{ key: 1,
payload: { test_id: 'abc', some_int: 11 } },
{ key: 2,
payload: { test_id: 'def', some_int: 20 } }
]
)
}.to raise_error(StandardError, 'Something went wrong')
widget_one, widget_two = Widget.all.to_a
expect(widget_one.some_int).to eq(11)
expect(widget_two.some_int).to eq(20)
end
end
end
end
end