2016-08-06 12:54:50 -04:00
|
|
|
require "abstract_unit"
|
2009-02-27 23:49:44 -05:00
|
|
|
|
|
|
|
module AbstractController
|
|
|
|
module Testing
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2009-02-27 23:49:44 -05:00
|
|
|
class ControllerWithCallbacks < AbstractController::Base
|
2009-05-07 11:29:22 -04:00
|
|
|
include AbstractController::Callbacks
|
2009-02-27 23:49:44 -05:00
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2009-02-27 23:49:44 -05:00
|
|
|
class Callback1 < ControllerWithCallbacks
|
2009-06-03 00:41:31 -04:00
|
|
|
set_callback :process_action, :before, :first
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2009-02-27 23:49:44 -05:00
|
|
|
def first
|
|
|
|
@text = "Hello world"
|
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2009-02-27 23:49:44 -05:00
|
|
|
def index
|
|
|
|
self.response_body = @text
|
|
|
|
end
|
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2009-08-26 03:18:52 -04:00
|
|
|
class TestCallbacks1 < ActiveSupport::TestCase
|
2009-02-27 23:49:44 -05:00
|
|
|
test "basic callbacks work" do
|
2009-08-26 03:18:52 -04:00
|
|
|
controller = Callback1.new
|
2011-01-18 17:55:20 -05:00
|
|
|
controller.process(:index)
|
2009-08-26 03:18:52 -04:00
|
|
|
assert_equal "Hello world", controller.response_body
|
2009-02-27 23:49:44 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class Callback2 < ControllerWithCallbacks
|
2012-12-07 15:24:56 -05:00
|
|
|
before_action :first
|
|
|
|
after_action :second
|
|
|
|
around_action :aroundz
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2009-02-27 23:49:44 -05:00
|
|
|
def first
|
|
|
|
@text = "Hello world"
|
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2009-02-27 23:49:44 -05:00
|
|
|
def second
|
|
|
|
@second = "Goodbye"
|
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2009-02-27 23:49:44 -05:00
|
|
|
def aroundz
|
|
|
|
@aroundz = "FIRST"
|
|
|
|
yield
|
|
|
|
@aroundz << "SECOND"
|
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2009-02-27 23:49:44 -05:00
|
|
|
def index
|
2010-09-28 17:25:52 -04:00
|
|
|
@text ||= nil
|
2010-06-22 01:57:02 -04:00
|
|
|
self.response_body = @text.to_s
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class Callback2Overwrite < Callback2
|
2012-12-07 15:24:56 -05:00
|
|
|
before_action :first, except: :index
|
2009-02-27 23:49:44 -05:00
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2009-08-26 03:18:52 -04:00
|
|
|
class TestCallbacks2 < ActiveSupport::TestCase
|
|
|
|
def setup
|
|
|
|
@controller = Callback2.new
|
|
|
|
end
|
|
|
|
|
2012-12-07 15:24:56 -05:00
|
|
|
test "before_action works" do
|
2011-01-18 17:55:20 -05:00
|
|
|
@controller.process(:index)
|
2009-08-26 03:18:52 -04:00
|
|
|
assert_equal "Hello world", @controller.response_body
|
2009-02-27 23:49:44 -05:00
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2012-12-07 15:24:56 -05:00
|
|
|
test "after_action works" do
|
2009-08-26 03:18:52 -04:00
|
|
|
@controller.process(:index)
|
|
|
|
assert_equal "Goodbye", @controller.instance_variable_get("@second")
|
2009-02-27 23:49:44 -05:00
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2012-12-07 15:24:56 -05:00
|
|
|
test "around_action works" do
|
2009-08-26 03:18:52 -04:00
|
|
|
@controller.process(:index)
|
|
|
|
assert_equal "FIRSTSECOND", @controller.instance_variable_get("@aroundz")
|
2009-02-27 23:49:44 -05:00
|
|
|
end
|
2010-06-22 01:57:02 -04:00
|
|
|
|
2012-12-07 15:24:56 -05:00
|
|
|
test "before_action with overwritten condition" do
|
2010-06-22 01:57:02 -04:00
|
|
|
@controller = Callback2Overwrite.new
|
2011-01-18 17:55:20 -05:00
|
|
|
@controller.process(:index)
|
2010-06-22 01:57:02 -04:00
|
|
|
assert_equal "", @controller.response_body
|
|
|
|
end
|
2009-02-27 23:49:44 -05:00
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2009-02-27 23:49:44 -05:00
|
|
|
class Callback3 < ControllerWithCallbacks
|
2012-12-07 12:54:26 -05:00
|
|
|
before_action do |c|
|
2009-02-27 23:49:44 -05:00
|
|
|
c.instance_variable_set("@text", "Hello world")
|
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2012-12-07 12:54:26 -05:00
|
|
|
after_action do |c|
|
2009-02-27 23:49:44 -05:00
|
|
|
c.instance_variable_set("@second", "Goodbye")
|
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2009-02-27 23:49:44 -05:00
|
|
|
def index
|
|
|
|
self.response_body = @text
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-08-26 03:18:52 -04:00
|
|
|
class TestCallbacks3 < ActiveSupport::TestCase
|
|
|
|
def setup
|
|
|
|
@controller = Callback3.new
|
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2012-12-07 15:24:56 -05:00
|
|
|
test "before_action works with procs" do
|
2011-01-18 17:55:20 -05:00
|
|
|
@controller.process(:index)
|
2009-08-26 03:18:52 -04:00
|
|
|
assert_equal "Hello world", @controller.response_body
|
2009-02-27 23:49:44 -05:00
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2012-12-07 15:24:56 -05:00
|
|
|
test "after_action works with procs" do
|
2011-01-18 17:55:20 -05:00
|
|
|
@controller.process(:index)
|
2009-08-26 03:18:52 -04:00
|
|
|
assert_equal "Goodbye", @controller.instance_variable_get("@second")
|
2010-08-14 01:13:00 -04:00
|
|
|
end
|
2009-02-27 23:49:44 -05:00
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2009-02-27 23:49:44 -05:00
|
|
|
class CallbacksWithConditions < ControllerWithCallbacks
|
2016-08-06 13:35:13 -04:00
|
|
|
before_action :list, only: :index
|
|
|
|
before_action :authenticate, except: :index
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2009-02-27 23:49:44 -05:00
|
|
|
def index
|
|
|
|
self.response_body = @list.join(", ")
|
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2009-02-27 23:49:44 -05:00
|
|
|
def sekrit_data
|
|
|
|
self.response_body = (@list + [@authenticated]).join(", ")
|
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2009-02-27 23:49:44 -05:00
|
|
|
private
|
|
|
|
def list
|
|
|
|
@list = ["Hello", "World"]
|
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2009-02-27 23:49:44 -05:00
|
|
|
def authenticate
|
2011-06-08 03:36:45 -04:00
|
|
|
@list ||= []
|
2009-02-27 23:49:44 -05:00
|
|
|
@authenticated = "true"
|
|
|
|
end
|
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2009-08-26 03:18:52 -04:00
|
|
|
class TestCallbacksWithConditions < ActiveSupport::TestCase
|
|
|
|
def setup
|
|
|
|
@controller = CallbacksWithConditions.new
|
|
|
|
end
|
|
|
|
|
2012-12-07 15:24:56 -05:00
|
|
|
test "when :only is specified, a before action is triggered on that action" do
|
2009-08-26 03:18:52 -04:00
|
|
|
@controller.process(:index)
|
|
|
|
assert_equal "Hello, World", @controller.response_body
|
2009-02-27 23:49:44 -05:00
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2012-12-07 15:24:56 -05:00
|
|
|
test "when :only is specified, a before action is not triggered on other actions" do
|
2009-08-26 03:18:52 -04:00
|
|
|
@controller.process(:sekrit_data)
|
|
|
|
assert_equal "true", @controller.response_body
|
2009-02-27 23:49:44 -05:00
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2012-12-07 15:24:56 -05:00
|
|
|
test "when :except is specified, an after action is not triggered on that action" do
|
2011-01-18 17:55:20 -05:00
|
|
|
@controller.process(:index)
|
2010-09-28 17:25:52 -04:00
|
|
|
assert !@controller.instance_variable_defined?("@authenticated")
|
2009-02-27 23:49:44 -05:00
|
|
|
end
|
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2009-02-27 23:49:44 -05:00
|
|
|
class CallbacksWithArrayConditions < ControllerWithCallbacks
|
2012-12-07 15:24:56 -05:00
|
|
|
before_action :list, only: [:index, :listy]
|
|
|
|
before_action :authenticate, except: [:index, :listy]
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2009-02-27 23:49:44 -05:00
|
|
|
def index
|
|
|
|
self.response_body = @list.join(", ")
|
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2009-02-27 23:49:44 -05:00
|
|
|
def sekrit_data
|
|
|
|
self.response_body = (@list + [@authenticated]).join(", ")
|
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2009-02-27 23:49:44 -05:00
|
|
|
private
|
|
|
|
def list
|
|
|
|
@list = ["Hello", "World"]
|
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2009-02-27 23:49:44 -05:00
|
|
|
def authenticate
|
|
|
|
@list = []
|
|
|
|
@authenticated = "true"
|
2010-08-14 01:13:00 -04:00
|
|
|
end
|
2009-02-27 23:49:44 -05:00
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2009-08-26 03:18:52 -04:00
|
|
|
class TestCallbacksWithArrayConditions < ActiveSupport::TestCase
|
|
|
|
def setup
|
|
|
|
@controller = CallbacksWithArrayConditions.new
|
|
|
|
end
|
|
|
|
|
2012-12-07 15:24:56 -05:00
|
|
|
test "when :only is specified with an array, a before action is triggered on that action" do
|
2011-01-18 17:55:20 -05:00
|
|
|
@controller.process(:index)
|
2009-08-26 03:18:52 -04:00
|
|
|
assert_equal "Hello, World", @controller.response_body
|
2009-02-27 23:49:44 -05:00
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2012-12-07 15:24:56 -05:00
|
|
|
test "when :only is specified with an array, a before action is not triggered on other actions" do
|
2011-01-18 17:55:20 -05:00
|
|
|
@controller.process(:sekrit_data)
|
2009-08-26 03:18:52 -04:00
|
|
|
assert_equal "true", @controller.response_body
|
2009-02-27 23:49:44 -05:00
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2012-12-07 15:24:56 -05:00
|
|
|
test "when :except is specified with an array, an after action is not triggered on that action" do
|
2011-01-18 17:55:20 -05:00
|
|
|
@controller.process(:index)
|
2010-09-28 17:25:52 -04:00
|
|
|
assert !@controller.instance_variable_defined?("@authenticated")
|
2009-02-27 23:49:44 -05:00
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
end
|
|
|
|
|
2009-02-27 23:49:44 -05:00
|
|
|
class ChangedConditions < Callback2
|
2016-08-06 13:35:13 -04:00
|
|
|
before_action :first, only: :index
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2009-02-27 23:49:44 -05:00
|
|
|
def not_index
|
2010-09-28 17:25:52 -04:00
|
|
|
@text ||= nil
|
2009-02-27 23:49:44 -05:00
|
|
|
self.response_body = @text.to_s
|
|
|
|
end
|
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2009-08-26 03:18:52 -04:00
|
|
|
class TestCallbacksWithChangedConditions < ActiveSupport::TestCase
|
|
|
|
def setup
|
|
|
|
@controller = ChangedConditions.new
|
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2009-02-27 23:49:44 -05:00
|
|
|
test "when a callback is modified in a child with :only, it works for the :only action" do
|
2011-01-18 17:55:20 -05:00
|
|
|
@controller.process(:index)
|
2009-08-26 03:18:52 -04:00
|
|
|
assert_equal "Hello world", @controller.response_body
|
2009-02-27 23:49:44 -05:00
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2009-02-27 23:49:44 -05:00
|
|
|
test "when a callback is modified in a child with :only, it does not work for other actions" do
|
2011-01-18 17:55:20 -05:00
|
|
|
@controller.process(:not_index)
|
2009-08-26 03:18:52 -04:00
|
|
|
assert_equal "", @controller.response_body
|
2009-02-27 23:49:44 -05:00
|
|
|
end
|
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2009-05-12 13:53:00 -04:00
|
|
|
class SetsResponseBody < ControllerWithCallbacks
|
2012-12-07 15:24:56 -05:00
|
|
|
before_action :set_body
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2009-05-12 13:53:00 -04:00
|
|
|
def index
|
|
|
|
self.response_body = "Fail"
|
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2009-05-12 13:53:00 -04:00
|
|
|
def set_body
|
|
|
|
self.response_body = "Success"
|
|
|
|
end
|
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2009-05-12 13:53:00 -04:00
|
|
|
class TestHalting < ActiveSupport::TestCase
|
|
|
|
test "when a callback sets the response body, the action should not be invoked" do
|
2009-08-26 03:18:52 -04:00
|
|
|
controller = SetsResponseBody.new
|
|
|
|
controller.process(:index)
|
|
|
|
assert_equal "Success", controller.response_body
|
2009-05-12 13:53:00 -04:00
|
|
|
end
|
|
|
|
end
|
2011-01-18 17:55:20 -05:00
|
|
|
|
2015-10-29 19:18:12 -04:00
|
|
|
class CallbacksWithArgs < ControllerWithCallbacks
|
|
|
|
set_callback :process_action, :before, :first
|
|
|
|
|
|
|
|
def first
|
|
|
|
@text = "Hello world"
|
|
|
|
end
|
|
|
|
|
|
|
|
def index(text)
|
|
|
|
self.response_body = @text + text
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class TestCallbacksWithArgs < ActiveSupport::TestCase
|
|
|
|
test "callbacks still work when invoking process with multiple arguments" do
|
|
|
|
controller = CallbacksWithArgs.new
|
|
|
|
controller.process(:index, " Howdy!")
|
|
|
|
assert_equal "Hello world Howdy!", controller.response_body
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-12-07 15:29:51 -05:00
|
|
|
class AliasedCallbacks < ControllerWithCallbacks
|
2015-01-08 15:51:51 -05:00
|
|
|
ActiveSupport::Deprecation.silence do
|
|
|
|
before_filter :first
|
|
|
|
after_filter :second
|
|
|
|
around_filter :aroundz
|
|
|
|
end
|
2012-12-07 15:29:51 -05:00
|
|
|
|
|
|
|
def first
|
|
|
|
@text = "Hello world"
|
|
|
|
end
|
|
|
|
|
|
|
|
def second
|
|
|
|
@second = "Goodbye"
|
|
|
|
end
|
|
|
|
|
|
|
|
def aroundz
|
|
|
|
@aroundz = "FIRST"
|
|
|
|
yield
|
|
|
|
@aroundz << "SECOND"
|
|
|
|
end
|
|
|
|
|
|
|
|
def index
|
|
|
|
@text ||= nil
|
|
|
|
self.response_body = @text.to_s
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class TestAliasedCallbacks < ActiveSupport::TestCase
|
|
|
|
def setup
|
|
|
|
@controller = AliasedCallbacks.new
|
|
|
|
end
|
|
|
|
|
|
|
|
test "before_filter works" do
|
|
|
|
@controller.process(:index)
|
|
|
|
assert_equal "Hello world", @controller.response_body
|
|
|
|
end
|
|
|
|
|
|
|
|
test "after_filter works" do
|
|
|
|
@controller.process(:index)
|
|
|
|
assert_equal "Goodbye", @controller.instance_variable_get("@second")
|
|
|
|
end
|
|
|
|
|
|
|
|
test "around_filter works" do
|
|
|
|
@controller.process(:index)
|
|
|
|
assert_equal "FIRSTSECOND", @controller.instance_variable_get("@aroundz")
|
|
|
|
end
|
|
|
|
end
|
2009-02-27 23:49:44 -05:00
|
|
|
end
|
2009-09-13 17:30:27 -04:00
|
|
|
end
|