canvas_sync 0.17.23.beta7 → 0.17.23.beta8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/canvas_sync/job_batches/batch.rb +82 -51
- data/lib/canvas_sync/job_batches/pool.rb +42 -52
- data/lib/canvas_sync/version.rb +1 -1
- data/spec/dummy/log/development.log +540 -0
- data/spec/dummy/log/test.log +39645 -0
- data/spec/job_batching/batch_spec.rb +39 -0
- metadata +2 -2
@@ -453,4 +453,43 @@ RSpec.describe CanvasSync::JobBatches::Batch do
|
|
453
453
|
end
|
454
454
|
end
|
455
455
|
end
|
456
|
+
|
457
|
+
describe '.redis' do
|
458
|
+
it 'returns the same connection if called when nested' do
|
459
|
+
CanvasSync::JobBatches::Batch.redis do |r1|
|
460
|
+
CanvasSync::JobBatches::Batch.redis do |r2|
|
461
|
+
expect(r1).to be r2
|
462
|
+
end
|
463
|
+
end
|
464
|
+
end
|
465
|
+
|
466
|
+
it 'returns a RedisProxy object if no block is given' do
|
467
|
+
expect(CanvasSync::JobBatches::Batch.redis).to be_a(CanvasSync::JobBatches::Batch::RedisProxy)
|
468
|
+
end
|
469
|
+
|
470
|
+
describe 'RedisProxy' do
|
471
|
+
let!(:proxy) { CanvasSync::JobBatches::Batch.redis }
|
472
|
+
|
473
|
+
it 'calls Batch.redis with a block' do
|
474
|
+
expect(CanvasSync::JobBatches::Batch).to receive(:redis) do |&block|
|
475
|
+
expect(block).to be_a Proc
|
476
|
+
end
|
477
|
+
proxy.sadd('KEY', 5)
|
478
|
+
end
|
479
|
+
|
480
|
+
describe '#multi' do
|
481
|
+
it 'works with 1 arity' do
|
482
|
+
proxy.multi do |r|
|
483
|
+
r.sadd('KEY', 5)
|
484
|
+
end
|
485
|
+
end
|
486
|
+
|
487
|
+
it 'works with 0 arity' do
|
488
|
+
proxy.multi do
|
489
|
+
proxy.sadd('KEY', 5)
|
490
|
+
end
|
491
|
+
end
|
492
|
+
end
|
493
|
+
end
|
494
|
+
end
|
456
495
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: canvas_sync
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.17.23.
|
4
|
+
version: 0.17.23.beta8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nate Collings
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-10-
|
11
|
+
date: 2021-10-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|