Remove implicit controller namespacing from new dsl

This commit is contained in:
Joshua Peek 2010-02-28 16:39:01 -06:00
parent 020fdb28ee
commit 7317d9ef4c
7 changed files with 42 additions and 31 deletions

@ -1,5 +1,30 @@
module ActionDispatch
module Routing
class RouteSet
attr_accessor :controller_namespaces
CONTROLLER_REGEXP = /[_a-zA-Z0-9]+/
def controller_constraints
@controller_constraints ||= begin
namespaces = controller_namespaces + in_memory_controller_namespaces
source = namespaces.map { |ns| "#{Regexp.escape(ns)}/#{CONTROLLER_REGEXP.source}" }
source << CONTROLLER_REGEXP.source
Regexp.compile(source.sort.reverse.join('|'))
end
end
def in_memory_controller_namespaces
namespaces = Set.new
ActionController::Base.subclasses.each do |klass|
controller_name = klass.underscore
namespaces << controller_name.split('/')[0...-1].join('/')
end
namespaces.delete('')
namespaces
end
end
# Mapper instances are used to build routes. The object passed to the draw
# block in config/routes.rb is a Mapper instance.
#

@ -88,7 +88,6 @@ def requirements
@requirements ||= returning(@options[:constraints] || {}) do |requirements|
requirements.reverse_merge!(@scope[:constraints]) if @scope[:constraints]
@options.each { |k, v| requirements[k] = v if v.is_a?(Regexp) }
requirements[:controller] ||= @set.controller_constraints
end
end

@ -1,5 +1,6 @@
require 'rack/mount'
require 'forwardable'
require 'action_dispatch/routing/deprecated_mapper'
module ActionDispatch
module Routing
@ -208,7 +209,7 @@ def #{selector}(*args)
end
end
attr_accessor :routes, :named_routes, :controller_namespaces
attr_accessor :routes, :named_routes
attr_accessor :disable_clear_and_finalize, :resources_path_names
def self.default_resources_path_names
@ -291,27 +292,6 @@ def empty?
routes.empty?
end
CONTROLLER_REGEXP = /[_a-zA-Z0-9]+/
def controller_constraints
@controller_constraints ||= begin
namespaces = controller_namespaces + in_memory_controller_namespaces
source = namespaces.map { |ns| "#{Regexp.escape(ns)}/#{CONTROLLER_REGEXP.source}" }
source << CONTROLLER_REGEXP.source
Regexp.compile(source.sort.reverse.join('|'))
end
end
def in_memory_controller_namespaces
namespaces = Set.new
ActionController::Base.subclasses.each do |klass|
controller_name = klass.underscore
namespaces << controller_name.split('/')[0...-1].join('/')
end
namespaces.delete('')
namespaces
end
def add_route(app, conditions = {}, requirements = {}, defaults = {}, name = nil)
route = Route.new(app, conditions, requirements, defaults, name)
@set.add_route(*route)

@ -73,11 +73,13 @@ class TestCase
# have been loaded.
setup_once do
SharedTestRoutes.draw do |map|
match ':controller(/:action(/:id))'
# FIXME: match ':controller(/:action(/:id))'
map.connect ':controller/:action/:id'
end
ActionController::IntegrationTest.app.router.draw do
match ':controller(/:action(/:id))'
ActionController::IntegrationTest.app.router.draw do |map|
# FIXME: match ':controller(/:action(/:id))'
map.connect ':controller/:action/:id'
end
end
end

@ -258,7 +258,8 @@ def test_assert_redirect_to_nested_named_route
with_routing do |set|
set.draw do |map|
match 'admin/inner_module', :to => 'admin/inner_module#index', :as => :admin_inner_module
match ':controller/:action'
# match ':controller/:action'
map.connect ':controller/:action/:id'
end
process :redirect_to_index
# redirection is <{"action"=>"index", "controller"=>"admin/admin/inner_module"}>
@ -272,7 +273,8 @@ def test_assert_redirected_to_top_level_named_route_from_nested_controller
with_routing do |set|
set.draw do |map|
match '/action_pack_assertions/:id', :to => 'action_pack_assertions#index', :as => :top_level
match ':controller/:action'
# match ':controller/:action'
map.connect ':controller/:action/:id'
end
process :redirect_to_top_level_named_route
# assert_redirected_to "http://test.host/action_pack_assertions/foo" would pass because of exact match early return
@ -287,7 +289,8 @@ def test_assert_redirected_to_top_level_named_route_with_same_controller_name_in
set.draw do |map|
# this controller exists in the admin namespace as well which is the only difference from previous test
match '/user/:id', :to => 'user#index', :as => :top_level
match ':controller/:action'
# match ':controller/:action'
map.connect ':controller/:action/:id'
end
process :redirect_to_top_level_named_route
# assert_redirected_to top_level_url('foo') would pass because of exact match early return

@ -62,7 +62,8 @@ def test_rendering_with_object_location_should_set_header_with_url_for
with_routing do |set|
set.draw do |map|
resources :customers
match ':controller/:action'
# match ':controller/:action'
map.connect ':controller/:action/:id'
end
get :render_with_object_location

@ -43,7 +43,7 @@ def find_root_with_flag(flag, default=nil)
delegate :middleware, :paths, :root, :to => :config
def load_tasks
super
super
config.paths.lib.tasks.to_a.sort.each { |ext| load(ext) }
end
@ -77,6 +77,7 @@ def load_tasks
end
end
# DEPRECATED: Remove in 3.1
initializer :add_routing_namespaces do |app|
paths.app.controllers.to_a.each do |load_path|
load_path = File.expand_path(load_path)