2009-12-29 00:15:39 +00:00
|
|
|
require "cases/helper"
|
|
|
|
|
|
|
|
class CallbacksTest < ActiveModel::TestCase
|
|
|
|
class CallbackValidator
|
|
|
|
def around_create(model)
|
|
|
|
model.callbacks << :before_around_create
|
|
|
|
yield
|
|
|
|
model.callbacks << :after_around_create
|
2014-12-15 04:16:38 +00:00
|
|
|
false
|
2009-12-29 00:15:39 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class ModelCallbacks
|
|
|
|
attr_reader :callbacks
|
|
|
|
extend ActiveModel::Callbacks
|
|
|
|
|
|
|
|
define_model_callbacks :create
|
2013-05-02 00:10:06 +00:00
|
|
|
define_model_callbacks :initialize, only: :after
|
|
|
|
define_model_callbacks :multiple, only: [:before, :around]
|
|
|
|
define_model_callbacks :empty, only: []
|
2009-12-29 00:15:39 +00:00
|
|
|
|
|
|
|
before_create :before_create
|
|
|
|
around_create CallbackValidator.new
|
|
|
|
|
|
|
|
after_create do |model|
|
|
|
|
model.callbacks << :after_create
|
2014-12-15 04:16:38 +00:00
|
|
|
false
|
2009-12-29 00:15:39 +00:00
|
|
|
end
|
|
|
|
|
2015-12-15 12:12:16 +00:00
|
|
|
ActiveSupport::Deprecation.silence { after_create "@callbacks << :final_callback" }
|
2009-12-29 00:15:39 +00:00
|
|
|
|
2014-12-15 04:16:38 +00:00
|
|
|
def initialize(options = {})
|
|
|
|
@callbacks = []
|
|
|
|
@valid = options[:valid]
|
2014-12-08 14:53:24 +00:00
|
|
|
@before_create_returns = options.fetch(:before_create_returns, true)
|
|
|
|
@before_create_throws = options[:before_create_throws]
|
2009-12-29 00:15:39 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def before_create
|
|
|
|
@callbacks << :before_create
|
2014-12-08 14:53:24 +00:00
|
|
|
throw(@before_create_throws) if @before_create_throws
|
2014-12-15 04:16:38 +00:00
|
|
|
@before_create_returns
|
2009-12-29 00:15:39 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
2011-01-09 18:15:05 +00:00
|
|
|
run_callbacks :create do
|
2009-12-29 00:15:39 +00:00
|
|
|
@callbacks << :create
|
|
|
|
@valid
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test "complete callback chain" do
|
|
|
|
model = ModelCallbacks.new
|
|
|
|
model.create
|
|
|
|
assert_equal model.callbacks, [ :before_create, :before_around_create, :create,
|
|
|
|
:after_around_create, :after_create, :final_callback]
|
|
|
|
end
|
|
|
|
|
2014-12-15 04:16:38 +00:00
|
|
|
test "the callback chain is not halted when around or after callbacks return false" do
|
2009-12-29 00:15:39 +00:00
|
|
|
model = ModelCallbacks.new
|
|
|
|
model.create
|
|
|
|
assert_equal model.callbacks.last, :final_callback
|
|
|
|
end
|
|
|
|
|
2014-12-08 14:53:24 +00:00
|
|
|
test "the callback chain is halted when a before callback returns false (deprecated)" do
|
2014-12-15 04:16:38 +00:00
|
|
|
model = ModelCallbacks.new(before_create_returns: false)
|
2014-12-08 14:53:24 +00:00
|
|
|
assert_deprecated do
|
|
|
|
model.create
|
|
|
|
assert_equal model.callbacks.last, :before_create
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test "the callback chain is halted when a callback throws :abort" do
|
|
|
|
model = ModelCallbacks.new(before_create_throws: :abort)
|
2014-12-15 04:16:38 +00:00
|
|
|
model.create
|
2014-12-08 14:53:24 +00:00
|
|
|
assert_equal model.callbacks, [:before_create]
|
2014-12-15 04:16:38 +00:00
|
|
|
end
|
|
|
|
|
2009-12-29 00:15:39 +00:00
|
|
|
test "after callbacks are not executed if the block returns false" do
|
2014-12-15 04:16:38 +00:00
|
|
|
model = ModelCallbacks.new(valid: false)
|
2009-12-29 00:15:39 +00:00
|
|
|
model.create
|
|
|
|
assert_equal model.callbacks, [ :before_create, :before_around_create,
|
|
|
|
:create, :after_around_create]
|
|
|
|
end
|
|
|
|
|
|
|
|
test "only selects which types of callbacks should be created" do
|
|
|
|
assert !ModelCallbacks.respond_to?(:before_initialize)
|
|
|
|
assert !ModelCallbacks.respond_to?(:around_initialize)
|
2010-05-19 01:47:24 +00:00
|
|
|
assert_respond_to ModelCallbacks, :after_initialize
|
2009-12-29 00:15:39 +00:00
|
|
|
end
|
2010-08-03 21:04:41 +00:00
|
|
|
|
|
|
|
test "only selects which types of callbacks should be created from an array list" do
|
|
|
|
assert_respond_to ModelCallbacks, :before_multiple
|
|
|
|
assert_respond_to ModelCallbacks, :around_multiple
|
|
|
|
assert !ModelCallbacks.respond_to?(:after_multiple)
|
|
|
|
end
|
|
|
|
|
|
|
|
test "no callbacks should be created" do
|
|
|
|
assert !ModelCallbacks.respond_to?(:before_empty)
|
|
|
|
assert !ModelCallbacks.respond_to?(:around_empty)
|
|
|
|
assert !ModelCallbacks.respond_to?(:after_empty)
|
|
|
|
end
|
2010-09-25 22:30:56 +00:00
|
|
|
|
|
|
|
class Violin
|
|
|
|
attr_reader :history
|
|
|
|
def initialize
|
|
|
|
@history = []
|
|
|
|
end
|
|
|
|
extend ActiveModel::Callbacks
|
|
|
|
define_model_callbacks :create
|
2016-08-07 23:05:28 +00:00
|
|
|
def callback1; history << "callback1"; end
|
|
|
|
def callback2; history << "callback2"; end
|
2010-09-25 22:30:56 +00:00
|
|
|
def create
|
2011-01-09 18:15:05 +00:00
|
|
|
run_callbacks(:create) {}
|
2010-09-25 22:30:56 +00:00
|
|
|
self
|
|
|
|
end
|
|
|
|
end
|
|
|
|
class Violin1 < Violin
|
|
|
|
after_create :callback1, :callback2
|
|
|
|
end
|
|
|
|
class Violin2 < Violin
|
|
|
|
after_create :callback1
|
|
|
|
after_create :callback2
|
|
|
|
end
|
|
|
|
|
|
|
|
test "after_create callbacks with both callbacks declared in one line" do
|
|
|
|
assert_equal ["callback1", "callback2"], Violin1.new.create.history
|
|
|
|
end
|
2013-03-18 11:50:05 +00:00
|
|
|
test "after_create callbacks with both callbacks declared in different lines" do
|
2010-09-25 22:30:56 +00:00
|
|
|
assert_equal ["callback1", "callback2"], Violin2.new.create.history
|
|
|
|
end
|
2009-12-29 00:15:39 +00:00
|
|
|
end
|