0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-11 02:59:07 +08:00
discourse/spec/lib/service/runner_spec.rb
Régis Hanol e27a3a4542
DEV: Fill defaulted keyword arguments in service runner blocks (#42264)
Previously, a `Service::Runner` action block could declare a keyword
argument with a default (e.g. `on_success do |table_sizes: {}|`), but
the runner only fills **required** keyword arguments from the service
result — so the default always won and the service's computed value was
silently dropped, producing 200 responses with subtly wrong data (see
#42263 where this happened twice in the workflows plugin).

Following review feedback, instead of raising on defaulted keyword
arguments (the initial approach), the runner now fills them from the
result exactly like required ones. The default only applies when the
service didn't set the key at all, making it a proper fallback for keys
that are only set on some paths — a model fetched by a step that didn't
run, or steps wrapped in an `only_if` block. This matters for outcome
blocks in particular, since the caller (possibly a plugin) doesn't
always own the service it calls and can't make it always set a key.

Also documents required vs defaulted keyword arguments in the service
objects developer guide.
2026-08-03 17:31:37 +02:00

655 lines
15 KiB
Ruby
Vendored

# frozen_string_literal: true
RSpec.describe Service::Runner do
class SuccessService
include Service::Base
end
class FailureService
include Service::Base
step :fail_step
def fail_step
fail!("error")
end
end
class FailedPolicyService
include Service::Base
policy :test
def test
false
end
end
class SuccessPolicyService
include Service::Base
policy :test
def test
true
end
end
class FailedContractService
include Service::Base
params do
attribute :test
validates :test, presence: true
end
end
class SuccessContractService
include Service::Base
params {}
end
class FailureWithModelService
include Service::Base
model :fake_model, :fetch_fake_model
private
def fetch_fake_model
nil
end
end
class FailureWithOptionalModelService
include Service::Base
model :fake_model, optional: true
private
def fetch_fake_model
nil
end
end
class FailureWithModelErrorsService
include Service::Base
model :fake_model, :fetch_fake_model
private
def fetch_fake_model
OpenStruct.new(has_changes_to_save?: true, invalid?: true)
end
end
class FailureWithExistingModelErrorsService
include Service::Base
class Model
include ActiveModel::Validations
def has_changes_to_save?
true
end
end
model :fake_model, :fetch_fake_model
private
def fetch_fake_model
Model.new.tap { |model| model.errors.add(:base, "operation failed") }
end
end
class SuccessWithModelService
include Service::Base
model :fake_model, :fetch_fake_model
private
def fetch_fake_model
:model_found
end
end
class SuccessWithModelErrorsService
include Service::Base
model :fake_model, :fetch_fake_model
private
def fetch_fake_model
OpenStruct.new
end
end
class FailureWithCollectionModelService
include Service::Base
model :fake_model, :fetch_fake_model
private
def fetch_fake_model
[]
end
end
class SuccessWithCollectionModelService
include Service::Base
model :fake_model, :fetch_fake_model
private
def fetch_fake_model
[:models_found]
end
end
class RelationModelService
include Service::Base
model :fake_model
private
def fetch_fake_model
User.where(admin: false)
end
end
class FailureTryService
include Service::Base
try { step :raising_step }
def raising_step
raise "BOOM"
end
end
class SuccessTryService
include Service::Base
try { step :non_raising_step }
def non_raising_step
true
end
end
class LockService
include Service::Base
params do
attribute :post_id, :integer
attribute :user_id, :integer
end
lock(:post_id, :user_id) { step :locked_step }
def locked_step
end
end
class LockWithModelService
include Service::Base
params { attribute :topic_id, :integer }
model :topic
lock(:topic) { step :locked_step }
private
def fetch_topic(params:)
OpenStruct.new(id: params.topic_id)
end
def locked_step
end
end
describe ".call" do
subject(:runner) { described_class.call(service, dependencies, &actions_block) }
let(:actions_block) { object.instance_eval(actions) }
let(:service) { SuccessWithModelService }
let(:actions) { <<-BLOCK }
proc do |result|
on_success { |fake_model:| [result, fake_model] }
end
BLOCK
let(:dependencies) { { guardian: stub, params: {} } }
let(:object) do
Class
.new(ApplicationController) do
def request
OpenStruct.new
end
end
.new
end
it "allows access to the result object" do
expect(runner.first).to be_a Service::Base::Context
end
it "allows using keyword args in blocks" do
expect(runner.last).to eq :model_found
end
context "when a keyword arg has a default value" do
let(:actions) { <<-BLOCK }
proc do
on_success { |fake_model: :default| fake_model }
on_failure { |fake_model: :default| fake_model }
end
BLOCK
it "uses the value from the result when the key is present" do
expect(runner).to eq :model_found
end
context "when the key is not present in the result" do
let(:service) { FailureService }
it "uses the default value" do
expect(runner).to eq :default
end
end
end
context "when using the on_success action" do
let(:actions) { <<-BLOCK }
proc do
on_success { :success }
end
BLOCK
context "when the service succeeds" do
it "runs the provided block" do
expect(runner).to eq :success
end
end
context "when the service does not succeed" do
let(:service) { FailureService }
it "does not run the provided block" do
expect(runner).not_to eq :success
end
end
end
context "when using the on_failure action" do
let(:actions) { <<-BLOCK }
proc do
on_failure { :fail }
end
BLOCK
context "when the service fails" do
let(:service) { FailureService }
it "runs the provided block" do
expect(runner).to eq :fail
end
end
context "when the service does not fail" do
let(:service) { SuccessService }
it "does not run the provided block" do
expect(runner).not_to eq :fail
end
end
end
context "when using the on_failed_policy action" do
let(:actions) { <<-BLOCK }
proc do
on_failed_policy(:test) { :policy_failure }
end
BLOCK
context "when the service policy fails" do
let(:service) { FailedPolicyService }
context "when not using the block argument" do
it "runs the provided block" do
expect(runner).to eq :policy_failure
end
end
context "when using the block argument" do
let(:actions) { <<-BLOCK }
proc do |result|
on_failed_policy(:test) { |policy| policy == result["result.policy.test"] }
end
BLOCK
it "runs the provided block" do
expect(runner).to be true
end
end
end
context "when the service policy does not fail" do
let(:service) { SuccessPolicyService }
it "does not run the provided block" do
expect(runner).not_to eq :policy_failure
end
end
end
context "when using the on_failed_contract action" do
let(:actions) { <<-BLOCK }
proc do
on_failed_contract { :contract_failure }
end
BLOCK
context "when the service contract fails" do
let(:service) { FailedContractService }
context "when not using the block argument" do
it "runs the provided block" do
expect(runner).to eq :contract_failure
end
end
context "when using the block argument" do
let(:actions) { <<-BLOCK }
proc do |result|
on_failed_contract { |contract| contract == result["result.contract.default"] }
end
BLOCK
it "runs the provided block" do
expect(runner).to be true
end
end
end
context "when the service contract does not fail" do
let(:service) { SuccessContractService }
it "does not run the provided block" do
expect(runner).not_to eq :contract_failure
end
end
end
context "when using the on_model_not_found action" do
let(:actions) { <<-BLOCK }
proc do |result|
on_success { [result] }
on_model_not_found(:fake_model) { [:no_model, result] }
end
BLOCK
context "when fetching a single model" do
context "when the service uses an optional model" do
let(:service) { FailureWithOptionalModelService }
it "does not run the provided block" do
expect(runner).not_to include :no_model
end
end
context "when the service fails without a model" do
let(:service) { FailureWithModelService }
context "when not using the block argument" do
it "runs the provided block" do
expect(runner).to include :no_model
end
end
context "when using the block argument" do
let(:actions) { <<-BLOCK }
proc do |result|
on_model_not_found(:fake_model) { |model| model == result["result.model.fake_model"] }
end
BLOCK
it "runs the provided block" do
expect(runner).to be true
end
end
end
context "when the service does not fail with a model" do
let(:service) { SuccessWithModelService }
it "does not run the provided block" do
expect(runner).not_to include :no_model
end
end
end
context "when fetching a collection" do
context "when the service fails without a model" do
let(:service) { FailureWithCollectionModelService }
it "runs the provided block" do
expect(runner).to include :no_model
end
end
context "when the service does not fail with a model" do
let(:service) { SuccessWithCollectionModelService }
it "does not run the provided block" do
expect(runner).not_to include :no_model
end
end
end
context "when fetching an ActiveRecord relation" do
let(:service) { RelationModelService }
context "when the service does not fail" do
before { Fabricate(:user) }
it "does not run the provided block" do
expect(runner).not_to include :no_model
end
it "does not fetch records from the relation" do
expect(runner.last[:fake_model]).not_to be_loaded
end
end
context "when the service fails" do
it "runs the provided block" do
expect(runner).to include :no_model
end
it "does not fetch records from the relation" do
expect(runner.last[:fake_model]).not_to be_loaded
end
end
end
end
context "when using the on_model_errors action" do
let(:actions) { <<-BLOCK }
proc do
on_model_errors(:fake_model) { :model_errors }
end
BLOCK
context "when the service fails with a model containing errors" do
let(:service) { FailureWithModelErrorsService }
context "when not using the block argument" do
it "runs the provided block" do
expect(runner).to eq :model_errors
end
end
context "when using the block argument" do
let(:actions) { <<-BLOCK }
proc do
on_model_errors(:fake_model) { |model| model.invalid? }
end
BLOCK
it "runs the provided block" do
expect(runner).to be true
end
end
end
context "when the model already contains errors" do
let(:service) { FailureWithExistingModelErrorsService }
let(:actions) { <<-BLOCK }
proc do
on_model_errors(:fake_model) { |model| model.errors.full_messages }
end
BLOCK
it "preserves errors added by the model producer" do
expect(runner).to eq(["operation failed"])
end
end
context "when the service does not fail with a model containing errors" do
let(:service) { SuccessWithModelErrorsService }
it "does not run the provided block" do
expect(runner).not_to eq :model_errors
end
end
end
context "when using the on_exceptions action" do
let(:actions) { <<-BLOCK }
proc do |result|
on_exceptions { |exception| exception }
end
BLOCK
context "when the service fails" do
let(:service) { FailureTryService }
it "runs the provided block" do
expect(runner).to be_a RuntimeError
end
context "when accessing the exception object" do
it "has access to a filtered backtrace" do
expect(runner.filtered_backtrace.size).to be < runner.backtrace.size
end
end
end
context "when the service does not fail" do
let(:service) { SuccessTryService }
it "does not run the provided block" do
expect(runner).not_to be_a RuntimeError
end
end
end
context "when using the on_lock_not_acquired action" do
let(:service) { LockService }
let(:dependencies) { { params: { post_id: 123, user_id: 456 } } }
let(:actions) { <<-BLOCK }
proc do
on_success { :success }
on_lock_not_acquired(:post_id, :user_id) { :lock_not_acquired }
end
BLOCK
context "when the service fails" do
before { allow(DistributedMutex).to receive(:synchronize) }
it "runs the provided block" do
expect(runner).to eq :lock_not_acquired
end
end
context "when the service does not fail" do
it "does not run the provided block" do
expect(runner).to eq :success
end
end
context "when the lock key resolves from context (not params)" do
let(:service) { LockWithModelService }
let(:dependencies) { { params: { topic_id: 123 } } }
let(:actions) { <<-BLOCK }
proc do
on_success { :success }
on_lock_not_acquired(:topic) { :lock_not_acquired }
end
BLOCK
context "when the lock is acquired" do
before { allow(DistributedMutex).to receive(:synchronize).and_call_original }
it "runs the success block" do
expect(runner).to eq :success
end
it "uses the model's id in the lock name" do
runner
expect(DistributedMutex).to have_received(:synchronize).with(
"lock_with_model_service:topic:123",
)
end
end
context "when the lock is not acquired" do
before { allow(DistributedMutex).to receive(:synchronize) }
it "runs the lock_not_acquired block" do
expect(runner).to eq :lock_not_acquired
end
end
end
end
context "when using several actions together" do
let(:service) { FailureService }
let(:actions) { <<-BLOCK }
proc do
on_success { :success }
on_failure { :failure }
on_failed_policy { :policy_failure }
end
BLOCK
it "runs the first matching action" do
expect(runner).to eq :failure
end
end
context "when running in the context of a job" do
let(:object) { Class.new(Jobs::Base).new }
let(:actions) { <<-BLOCK }
proc do
on_success { :success }
on_failure { :failure }
end
BLOCK
it "runs properly" do
expect(runner).to eq :success
end
end
end
end