discourse/plugins/automation/spec/services/destroy_automation_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
1.3 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
RSpec.describe DiscourseAutomation::DestroyAutomation do
describe described_class::Contract, type: :model do
subject(:contract) { described_class.new }
it { is_expected.to validate_presence_of :automation_id }
end
describe ".call" do
subject(:result) { described_class.call(params:, **dependencies) }
fab!(:user) { Fabricate(:admin) }
fab!(:automation) { Fabricate(:automation) }
let(:guardian) { user.guardian }
let(:params) { { automation_id: automation.id } }
let(:dependencies) { { guardian: } }
it "logs the action" do
expect { result }.to change { UserHistory.count }.by(1)
expect(UserHistory.last.details).to eq(
"id: #{automation.id}\nname: #{automation.name}\nscript: #{automation.script}\ntrigger: #{automation.trigger}",
)
end
it "destroys the automation" do
expect { result }.to change { DiscourseAutomation::Automation.count }.by(-1)
end
context "when the automation is not found" do
before { params[:automation_id] = 999 }
it { is_expected.to fail_to_find_a_model(:automation) }
end
context "when user can't destroy the automation" do
fab!(:user) { Fabricate(:user) }
it { is_expected.to fail_a_policy(:can_destroy_automation) }
end
end
end