* Refactor EdgeCache * Update specs * Add bust comment spec * Fix more specs * Use const_get * Make methods private * Add .discussion? decorator to Article * Change variable name to article for clarity
69 lines
1.9 KiB
Ruby
69 lines
1.9 KiB
Ruby
require "rails_helper"
|
|
|
|
RSpec.describe Comments::BustCacheWorker, type: :worker do
|
|
include_examples "#enqueues_on_correct_queue", "high_priority", 1
|
|
|
|
describe "#perform" do
|
|
let(:worker) { subject }
|
|
|
|
before do
|
|
allow(EdgeCache::BustCommentable).to receive(:call)
|
|
end
|
|
|
|
context "with comment" do
|
|
let(:comment) { double }
|
|
let(:comment_id) { 1 }
|
|
let(:commentable) { double }
|
|
|
|
before do
|
|
allow(comment).to receive(:commentable).and_return(commentable)
|
|
allow(Comment).to receive(:find_by).with(id: comment_id).and_return(comment)
|
|
allow(comment).to receive(:purge)
|
|
allow(commentable).to receive(:purge)
|
|
end
|
|
|
|
it "calls the service" do
|
|
worker.perform(comment_id)
|
|
|
|
expect(EdgeCache::BustCommentable).to have_received(:call).with(comment.commentable).once
|
|
end
|
|
|
|
it "does not call purge on comment when commentable is not available" do
|
|
allow(comment).to receive(:commentable).and_return(nil)
|
|
|
|
worker.perform(comment_id)
|
|
|
|
expect(comment).not_to have_received(:purge)
|
|
expect(commentable).not_to have_received(:purge)
|
|
end
|
|
|
|
it "does not call purge on commentable when commentable is not available" do
|
|
allow(comment).to receive(:commentable).and_return(nil)
|
|
|
|
worker.perform(comment_id)
|
|
|
|
expect(commentable).not_to have_received(:purge)
|
|
end
|
|
|
|
it "does not call the service when commentable is not available" do
|
|
allow(comment).to receive(:commentable).and_return(nil)
|
|
|
|
worker.perform(comment_id)
|
|
|
|
expect(EdgeCache::BustCommentable).not_to have_received(:call)
|
|
end
|
|
end
|
|
|
|
context "without comment" do
|
|
it "does not break" do
|
|
expect { worker.perform(nil) }.not_to raise_error
|
|
end
|
|
|
|
it "doesn't call the service" do
|
|
worker.perform(nil)
|
|
|
|
expect(EdgeCache::BustCommentable).not_to have_received(:call)
|
|
end
|
|
end
|
|
end
|
|
end
|