debian-mirror-gitlab/spec/workers/upload_checksum_worker_spec.rb
2023-05-27 22:25:52 +05:30

35 lines
920 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe UploadChecksumWorker, feature_category: :geo_replication do
describe '#perform' do
subject { described_class.new }
context 'without a valid record' do
it 'rescues ActiveRecord::RecordNotFound' do
expect { subject.perform(non_existing_record_id) }.not_to raise_error
end
end
context 'with a valid record' do
let(:upload) { create(:user, :with_avatar).avatar.upload }
before do
expect(Upload).to receive(:find).and_return(upload)
allow(upload).to receive(:foreground_checksumable?).and_return(false)
end
it 'calls calculate_checksum!' do
expect(upload).to receive(:calculate_checksum!)
subject.perform(upload.id)
end
it 'calls save!' do
expect(upload).to receive(:save!)
subject.perform(upload.id)
end
end
end
end