From 630638b00e01d4046d439867a37c15cd037f6c00 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 27 Feb 2005 17:12:35 +0000 Subject: Fixed that Routes would raise NameErrors if a controller component contains characters that are not valid constant names #733 [Nicholas Seckar] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@803 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/test/controller/routing_tests.rb | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'actionpack/test/controller') diff --git a/actionpack/test/controller/routing_tests.rb b/actionpack/test/controller/routing_tests.rb index f1a3254a42..360ca06cf8 100644 --- a/actionpack/test/controller/routing_tests.rb +++ b/actionpack/test/controller/routing_tests.rb @@ -479,6 +479,17 @@ class RouteSetTests < Test::Unit::TestCase @request.path_parameters = {:controller => 'admin/users', :action => 'index'} verify_generate 'admin/users', {} end + + def test_url_with_spaces_in_controller + @request.path = 'not%20a%20valid/controller/name' + @set.add_route(@rails_route) if @set.empty? + assert_raises(ActionController::RoutingError) {@set.recognize!(@request)} + end + def test_url_with_dots_in_controller + @request.path = 'not.valid/controller/name' + @set.add_route(@rails_route) if @set.empty? + assert_raises(ActionController::RoutingError) {@set.recognize!(@request)} + end end #require '../assertions/action_pack_assertions.rb' -- cgit v1.2.3