Browse Source

Add spec coverage for regeneration worker (#3143)

closed-social-glitch-2
Matt Jankowski 6 years ago
committed by Eugen Rochko
parent
commit
d2e0edd721
2 changed files with 28 additions and 1 deletions
  1. +2
    -1
      app/workers/regeneration_worker.rb
  2. +26
    -0
      spec/workers/regeneration_worker_spec.rb

+ 2
- 1
app/workers/regeneration_worker.rb View File

@ -7,7 +7,8 @@ class RegenerationWorker
def perform(account_id, _ = :home)
account = Account.find(account_id)
PrecomputeFeedService.new.call(account)
rescue ActiveRecord::RecordNotFound
true
end
end

+ 26
- 0
spec/workers/regeneration_worker_spec.rb View File

@ -0,0 +1,26 @@
# frozen_string_literal: true
require 'rails_helper'
describe RegenerationWorker do
subject { described_class.new }
describe 'perform' do
let(:account) { Fabricate(:account) }
it 'calls the precompute feed service for the account' do
service = double(call: nil)
allow(PrecomputeFeedService).to receive(:new).and_return(service)
result = subject.perform(account.id)
expect(result).to be_nil
expect(service).to have_received(:call).with(account)
end
it 'fails when account does not exist' do
result = subject.perform('aaa')
expect(result).to eq(true)
end
end
end

Loading…
Cancel
Save