From afbf54bc3dc8f9d1aeb670d927097a46e78c1515 Mon Sep 17 00:00:00 2001 From: Jeremy Kemper Date: Thu, 7 Jul 2005 13:45:31 +0000 Subject: Add test for dynamic dispatch based on action_name accessor. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1757 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/test/controller/filters_test.rb | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'actionpack/test/controller') diff --git a/actionpack/test/controller/filters_test.rb b/actionpack/test/controller/filters_test.rb index af14385fe3..5480843e22 100644 --- a/actionpack/test/controller/filters_test.rb +++ b/actionpack/test/controller/filters_test.rb @@ -203,6 +203,18 @@ class FilterTest < Test::Unit::TestCase end end + class DynamicDispatchController < ActionController::Base + before_filter :choose + + %w(foo bar baz).each do |action| + define_method(action) { render :text => action } + end + + private + def choose + self.action_name = params[:choose] + end + end def test_added_filter_to_inheritance_graph assert_equal [ :fire_flash, :ensure_login ], TestController.before_filters @@ -321,6 +333,15 @@ class FilterTest < Test::Unit::TestCase end end + def test_dynamic_dispatch + %w(foo bar baz).each do |action| + request = ActionController::TestRequest.new + request.query_parameters[:choose] = action + response = DynamicDispatchController.process(request, ActionController::TestResponse.new) + assert_equal action, response.body + end + end + private def test_process(controller, action = "show") request = ActionController::TestRequest.new -- cgit v1.2.3