debian-mirror-gitlab/spec/models/concerns/each_batch_spec.rb

61 lines
1.5 KiB
Ruby
Raw Normal View History

2019-07-07 11:18:12 +05:30
# frozen_string_literal: true
2017-09-10 17:25:29 +05:30
require 'spec_helper'
describe EachBatch do
describe '.each_batch' do
let(:model) do
Class.new(ActiveRecord::Base) do
include EachBatch
self.table_name = 'users'
end
end
before do
2020-03-13 15:44:24 +05:30
create_list(:user, 5, updated_at: 1.day.ago)
2017-09-10 17:25:29 +05:30
end
2018-12-13 13:39:08 +05:30
shared_examples 'each_batch handling' do |kwargs|
it 'yields an ActiveRecord::Relation when a block is given' do
model.each_batch(kwargs) do |relation|
expect(relation).to be_a_kind_of(ActiveRecord::Relation)
end
2017-09-10 17:25:29 +05:30
end
2018-12-13 13:39:08 +05:30
it 'yields a batch index as the second argument' do
model.each_batch(kwargs) do |_, index|
expect(index).to eq(1)
end
2017-09-10 17:25:29 +05:30
end
2018-12-13 13:39:08 +05:30
it 'accepts a custom batch size' do
amount = 0
2017-09-10 17:25:29 +05:30
2018-12-13 13:39:08 +05:30
model.each_batch(kwargs.merge({ of: 1 })) { amount += 1 }
2017-09-10 17:25:29 +05:30
2018-12-13 13:39:08 +05:30
expect(amount).to eq(5)
end
2017-09-10 17:25:29 +05:30
2018-12-13 13:39:08 +05:30
it 'does not include ORDER BYs in the yielded relations' do
model.each_batch do |relation|
expect(relation.to_sql).not_to include('ORDER BY')
end
2017-09-10 17:25:29 +05:30
end
2018-12-13 13:39:08 +05:30
it 'allows updating of the yielded relations' do
2020-06-23 00:09:42 +05:30
time = Time.current
2017-09-10 17:25:29 +05:30
2018-12-13 13:39:08 +05:30
model.each_batch do |relation|
relation.update_all(updated_at: time)
end
2017-09-10 17:25:29 +05:30
2018-12-13 13:39:08 +05:30
expect(model.where(updated_at: time).count).to eq(5)
end
2017-09-10 17:25:29 +05:30
end
2018-12-13 13:39:08 +05:30
it_behaves_like 'each_batch handling', {}
it_behaves_like 'each_batch handling', { order_hint: :updated_at }
2017-09-10 17:25:29 +05:30
end
end