* Dispatch an event only when a published article is created * Skip sending events about drafts updates * Skip sending events when a draft is destroyed * Fix article request spec * Slight refactoring
89 lines
2.8 KiB
Ruby
89 lines
2.8 KiB
Ruby
require "rails_helper"
|
|
|
|
RSpec.describe Articles::Creator do
|
|
let(:user) { create(:user) }
|
|
|
|
context "when valid attributes" do
|
|
let(:valid_attributes) { attributes_for(:article) }
|
|
|
|
it "creates an article" do
|
|
expect do
|
|
described_class.call(user, valid_attributes)
|
|
end.to change(Article, :count).by(1)
|
|
end
|
|
|
|
it "returns an article" do
|
|
article = described_class.call(user, valid_attributes)
|
|
expect(article).to be_kind_of(Article)
|
|
expect(article).to be_persisted
|
|
end
|
|
|
|
it "schedules a job" do
|
|
valid_attributes[:published] = true
|
|
expect do
|
|
described_class.call(user, valid_attributes)
|
|
end.to have_enqueued_job(Notifications::NotifiableActionJob).once
|
|
end
|
|
|
|
it "creates a notification subscription" do
|
|
expect do
|
|
described_class.call(user, valid_attributes)
|
|
end.to change(NotificationSubscription, :count).by(1)
|
|
end
|
|
|
|
it "calls an event dispatcher" do
|
|
event_dispatcher = double
|
|
allow(event_dispatcher).to receive(:call)
|
|
article = described_class.call(user, valid_attributes, event_dispatcher)
|
|
expect(event_dispatcher).to have_received(:call).with("article_created", article.object)
|
|
end
|
|
|
|
it "doesn't call an event dispatcher when an article is unpublished" do
|
|
attributes = attributes_for(:article, published: false)
|
|
event_dispatcher = double
|
|
allow(event_dispatcher).to receive(:call)
|
|
article = described_class.call(user, attributes, event_dispatcher)
|
|
expect(event_dispatcher).not_to have_received(:call).with("article_created", article.object)
|
|
end
|
|
end
|
|
|
|
context "when valid attributes" do
|
|
let(:invalid_attributes) { attributes_for(:article) }
|
|
|
|
before do
|
|
invalid_attributes[:body_markdown] = nil
|
|
end
|
|
|
|
it "doesn't create an invalid article" do
|
|
expect do
|
|
described_class.call(user, invalid_attributes)
|
|
end.not_to change(Article, :count)
|
|
end
|
|
|
|
it "returns an unsaved article" do
|
|
article = described_class.call(user, invalid_attributes)
|
|
expect(article).to be_kind_of(Article)
|
|
expect(article).not_to be_persisted
|
|
expect(article.errors.size).to eq(1)
|
|
end
|
|
|
|
it "doesn't schedule a job" do
|
|
expect do
|
|
described_class.call(user, invalid_attributes)
|
|
end.not_to have_enqueued_job(1).on_queue(:send_notifiable_action_notification)
|
|
end
|
|
|
|
it "doesn't create a notification subscription" do
|
|
expect do
|
|
described_class.call(user, invalid_attributes)
|
|
end.not_to change(NotificationSubscription, :count)
|
|
end
|
|
|
|
it "doesn't call an event dispatcher" do
|
|
event_dispatcher = double
|
|
allow(event_dispatcher).to receive(:call)
|
|
described_class.call(user, invalid_attributes, event_dispatcher)
|
|
expect(event_dispatcher).not_to have_received(:call)
|
|
end
|
|
end
|
|
end
|