提交 226dfc26 编写于 作者: C Carlhuda

WIP: Remove the global router

上级 76237f16
...@@ -32,7 +32,7 @@ module ActionController ...@@ -32,7 +32,7 @@ module ActionController
autoload :SessionManagement autoload :SessionManagement
autoload :Streaming autoload :Streaming
autoload :Testing autoload :Testing
autoload :UrlFor # ROUTES TODO: Proxy UrlFor to Rails.application.routes.url_helpers
autoload :Verification autoload :Verification
end end
......
...@@ -9,7 +9,7 @@ class Base < Metal ...@@ -9,7 +9,7 @@ class Base < Metal
include ActionController::Helpers include ActionController::Helpers
include ActionController::HideActions include ActionController::HideActions
include ActionController::UrlFor # include ActionController::UrlFor
include ActionController::Redirecting include ActionController::Redirecting
include ActionController::Rendering include ActionController::Rendering
include ActionController::Renderers::All include ActionController::Renderers::All
......
ActionController::AbstractRequest = ActionController::Request = ActionDispatch::Request ActionController::AbstractRequest = ActionController::Request = ActionDispatch::Request
ActionController::AbstractResponse = ActionController::Response = ActionDispatch::Response ActionController::AbstractResponse = ActionController::Response = ActionDispatch::Response
ActionController::Routing = ActionDispatch::Routing ActionController::Routing = ActionDispatch::Routing
ActionController::UrlWriter = ActionController::UrlFor # ROUTES TODO: Figure out how to deprecate this.
# ActionController::UrlWriter = ActionController::UrlFor
module ActionController module ActionController
module Head module Head
extend ActiveSupport::Concern extend ActiveSupport::Concern
include ActionController::UrlFor
# Return a response that has no content (merely headers). The options # Return a response that has no content (merely headers). The options
# argument is interpreted to be a hash of header names and values. # argument is interpreted to be a hash of header names and values.
...@@ -25,6 +24,9 @@ def head(status, options = {}) ...@@ -25,6 +24,9 @@ def head(status, options = {})
end end
self.status = status self.status = status
# ROUTES TODO: Figure out how to rescue from a no method error
# This is needed only if you wire up a controller yourself, and
# this not working would be baffling without a better error
self.location = url_for(location) if location self.location = url_for(location) if location
self.content_type = Mime[formats.first] self.content_type = Mime[formats.first]
self.response_body = " " self.response_body = " "
......
...@@ -12,7 +12,6 @@ module Redirecting ...@@ -12,7 +12,6 @@ module Redirecting
include AbstractController::Logger include AbstractController::Logger
include ActionController::RackDelegation include ActionController::RackDelegation
include ActionController::UrlFor
# Redirects the browser to the target specified in +options+. This parameter can take one of three forms: # Redirects the browser to the target specified in +options+. This parameter can take one of three forms:
# #
...@@ -84,6 +83,9 @@ def _compute_redirect_to_location(options) ...@@ -84,6 +83,9 @@ def _compute_redirect_to_location(options)
raise RedirectBackError unless refer = request.headers["Referer"] raise RedirectBackError unless refer = request.headers["Referer"]
refer refer
else else
# ROUTES TODO: Figure out how to rescue from a no method error
# This is needed only if you wire up a controller yourself, and
# this not working would be baffling without a better error
url_for(options) url_for(options)
end.gsub(/[\r\n]/, '') end.gsub(/[\r\n]/, '')
end end
......
require 'active_support/core_ext/class/attribute'
require 'active_support/core_ext/module/attribute_accessors'
module ActionController
# In <b>routes.rb</b> one defines URL-to-controller mappings, but the reverse
# is also possible: an URL can be generated from one of your routing definitions.
# URL generation functionality is centralized in this module.
#
# See ActionDispatch::Routing and ActionController::Resources for general
# information about routing and routes.rb.
#
# <b>Tip:</b> If you need to generate URLs from your models or some other place,
# then ActionController::UrlFor is what you're looking for. Read on for
# an introduction.
#
# == URL generation from parameters
#
# As you may know, some functions - such as ActionController::Base#url_for
# and ActionView::Helpers::UrlHelper#link_to, can generate URLs given a set
# of parameters. For example, you've probably had the chance to write code
# like this in one of your views:
#
# <%= link_to('Click here', :controller => 'users',
# :action => 'new', :message => 'Welcome!') %>
#
# #=> Generates a link to: /users/new?message=Welcome%21
#
# link_to, and all other functions that require URL generation functionality,
# actually use ActionController::UrlFor under the hood. And in particular,
# they use the ActionController::UrlFor#url_for method. One can generate
# the same path as the above example by using the following code:
#
# include UrlFor
# url_for(:controller => 'users',
# :action => 'new',
# :message => 'Welcome!',
# :only_path => true)
# # => "/users/new?message=Welcome%21"
#
# Notice the <tt>:only_path => true</tt> part. This is because UrlFor has no
# information about the website hostname that your Rails app is serving. So if you
# want to include the hostname as well, then you must also pass the <tt>:host</tt>
# argument:
#
# include UrlFor
# url_for(:controller => 'users',
# :action => 'new',
# :message => 'Welcome!',
# :host => 'www.example.com') # Changed this.
# # => "http://www.example.com/users/new?message=Welcome%21"
#
# By default, all controllers and views have access to a special version of url_for,
# that already knows what the current hostname is. So if you use url_for in your
# controllers or your views, then you don't need to explicitly pass the <tt>:host</tt>
# argument.
#
# For convenience reasons, mailers provide a shortcut for ActionController::UrlFor#url_for.
# So within mailers, you only have to type 'url_for' instead of 'ActionController::UrlFor#url_for'
# in full. However, mailers don't have hostname information, and what's why you'll still
# have to specify the <tt>:host</tt> argument when generating URLs in mailers.
#
#
# == URL generation for named routes
#
# UrlFor also allows one to access methods that have been auto-generated from
# named routes. For example, suppose that you have a 'users' resource in your
# <b>routes.rb</b>:
#
# map.resources :users
#
# This generates, among other things, the method <tt>users_path</tt>. By default,
# this method is accessible from your controllers, views and mailers. If you need
# to access this auto-generated method from other places (such as a model), then
# you can do that by including ActionController::UrlFor in your class:
#
# class User < ActiveRecord::Base
# include ActionController::UrlFor
#
# def base_uri
# user_path(self)
# end
# end
#
# User.find(1).base_uri # => "/users/1"
#
module UrlFor
extend ActiveSupport::Concern
included do
ActionDispatch::Routing::Routes.install_helpers(self)
# Including in a class uses an inheritable hash. Modules get a plain hash.
if respond_to?(:class_attribute)
class_attribute :default_url_options
else
mattr_accessor :default_url_options
end
self.default_url_options = {}
end
# Overwrite to implement a number of default options that all url_for-based methods will use. The default options should come in
# the form of a hash, just like the one you would use for url_for directly. Example:
#
# def default_url_options(options)
# { :project => @project.active? ? @project.url_name : "unknown" }
# end
#
# As you can infer from the example, this is mostly useful for situations where you want to centralize dynamic decisions about the
# urls as they stem from the business domain. Please note that any individual url_for call can always override the defaults set
# by this method.
def default_url_options(options = nil)
self.class.default_url_options
end
def rewrite_options(options) #:nodoc:
if options.delete(:use_defaults) != false && (defaults = default_url_options(options))
defaults.merge(options)
else
options
end
end
# Generate a url based on the options provided, default_url_options and the
# routes defined in routes.rb. The following options are supported:
#
# * <tt>:only_path</tt> - If true, the relative url is returned. Defaults to +false+.
# * <tt>:protocol</tt> - The protocol to connect to. Defaults to 'http'.
# * <tt>:host</tt> - Specifies the host the link should be targeted at.
# If <tt>:only_path</tt> is false, this option must be
# provided either explicitly, or via +default_url_options+.
# * <tt>:port</tt> - Optionally specify the port to connect to.
# * <tt>:anchor</tt> - An anchor name to be appended to the path.
# * <tt>:skip_relative_url_root</tt> - If true, the url is not constructed using the
# +relative_url_root+ set in ActionController::Base.relative_url_root.
# * <tt>:trailing_slash</tt> - If true, adds a trailing slash, as in "/archive/2009/"
#
# Any other key (<tt>:controller</tt>, <tt>:action</tt>, etc.) given to
# +url_for+ is forwarded to the Routes module.
#
# Examples:
#
# url_for :controller => 'tasks', :action => 'testing', :host=>'somehost.org', :port=>'8080' # => 'http://somehost.org:8080/tasks/testing'
# url_for :controller => 'tasks', :action => 'testing', :host=>'somehost.org', :anchor => 'ok', :only_path => true # => '/tasks/testing#ok'
# url_for :controller => 'tasks', :action => 'testing', :trailing_slash=>true # => 'http://somehost.org/tasks/testing/'
# url_for :controller => 'tasks', :action => 'testing', :host=>'somehost.org', :number => '33' # => 'http://somehost.org/tasks/testing?number=33'
def url_for(options = {})
options ||= {}
case options
when String
options
when Hash
_url_rewriter.rewrite(rewrite_options(options))
else
polymorphic_url(options)
end
end
protected
def _url_rewriter
ActionController::UrlRewriter
end
end
end
...@@ -17,9 +17,9 @@ def self.new_escaped(strings) ...@@ -17,9 +17,9 @@ def self.new_escaped(strings)
end end
end end
def assign_parameters(controller_path, action, parameters = {}) def assign_parameters(router, controller_path, action, parameters = {})
parameters = parameters.symbolize_keys.merge(:controller => controller_path, :action => action) parameters = parameters.symbolize_keys.merge(:controller => controller_path, :action => action)
extra_keys = ActionDispatch::Routing::Routes.extra_keys(parameters) extra_keys = router.extra_keys(parameters)
non_path_parameters = get? ? query_parameters : request_parameters non_path_parameters = get? ? query_parameters : request_parameters
parameters.each do |key, value| parameters.each do |key, value|
if value.is_a? Fixnum if value.is_a? Fixnum
...@@ -220,7 +220,7 @@ def xml_http_request(request_method, action, parameters = nil, session = nil, fl ...@@ -220,7 +220,7 @@ def xml_http_request(request_method, action, parameters = nil, session = nil, fl
def process(action, parameters = nil, session = nil, flash = nil, http_method = 'GET') def process(action, parameters = nil, session = nil, flash = nil, http_method = 'GET')
# Sanity check for required instance variables so we can give an # Sanity check for required instance variables so we can give an
# understandable error message. # understandable error message.
%w(@controller @request @response).each do |iv_name| %w(@router @controller @request @response).each do |iv_name|
if !(instance_variable_names.include?(iv_name) || instance_variable_names.include?(iv_name.to_sym)) || instance_variable_get(iv_name).nil? if !(instance_variable_names.include?(iv_name) || instance_variable_names.include?(iv_name.to_sym)) || instance_variable_get(iv_name).nil?
raise "#{iv_name} is nil: make sure you set it in your test's setup method." raise "#{iv_name} is nil: make sure you set it in your test's setup method."
end end
...@@ -236,7 +236,7 @@ def process(action, parameters = nil, session = nil, flash = nil, http_method = ...@@ -236,7 +236,7 @@ def process(action, parameters = nil, session = nil, flash = nil, http_method =
@request.env['REQUEST_METHOD'] = http_method @request.env['REQUEST_METHOD'] = http_method
parameters ||= {} parameters ||= {}
@request.assign_parameters(@controller.class.name.underscore.sub(/_controller$/, ''), action.to_s, parameters) @request.assign_parameters(@router, @controller.class.name.underscore.sub(/_controller$/, ''), action.to_s, parameters)
@request.session = ActionController::TestSession.new(session) unless session.nil? @request.session = ActionController::TestSession.new(session) unless session.nil?
@request.session["flash"] = @request.flash.update(flash || {}) @request.session["flash"] = @request.flash.update(flash || {})
...@@ -340,7 +340,7 @@ def build_request_uri(action, parameters) ...@@ -340,7 +340,7 @@ def build_request_uri(action, parameters)
options.update(:only_path => true, :action => action) options.update(:only_path => true, :action => action)
url = ActionController::UrlRewriter.new(@request, parameters) url = ActionController::UrlRewriter.new(@request, parameters)
@request.request_uri = url.rewrite(options) @request.request_uri = url.rewrite(@router, options)
end end
end end
end end
......
...@@ -9,11 +9,11 @@ def initialize(request, parameters) ...@@ -9,11 +9,11 @@ def initialize(request, parameters)
@request, @parameters = request, parameters @request, @parameters = request, parameters
end end
def rewrite(options = {}) def rewrite(router, options = {})
options[:host] ||= @request.host_with_port options[:host] ||= @request.host_with_port
options[:protocol] ||= @request.protocol options[:protocol] ||= @request.protocol
self.class.rewrite(options, @request.symbolized_path_parameters) do |options| self.class.rewrite(router, options, @request.symbolized_path_parameters) do |options|
process_path_options(options) process_path_options(options)
end end
end end
...@@ -24,7 +24,8 @@ def to_str ...@@ -24,7 +24,8 @@ def to_str
alias_method :to_s, :to_str alias_method :to_s, :to_str
def self.rewrite(options, path_segments=nil) # ROUTES TODO: Class method code smell
def self.rewrite(router, options, path_segments=nil)
rewritten_url = "" rewritten_url = ""
unless options[:only_path] unless options[:only_path]
...@@ -40,7 +41,7 @@ def self.rewrite(options, path_segments=nil) ...@@ -40,7 +41,7 @@ def self.rewrite(options, path_segments=nil)
path_options = options.except(*RESERVED_OPTIONS) path_options = options.except(*RESERVED_OPTIONS)
path_options = yield(path_options) if block_given? path_options = yield(path_options) if block_given?
path = Routing::Routes.generate(path_options, path_segments || {}) path = router.generate(path_options, path_segments || {})
rewritten_url << ActionController::Base.relative_url_root.to_s unless options[:skip_relative_url_root] rewritten_url << ActionController::Base.relative_url_root.to_s unless options[:skip_relative_url_root]
rewritten_url << (options[:trailing_slash] ? path.sub(/\?|\z/) { "/" + $& } : path) rewritten_url << (options[:trailing_slash] ? path.sub(/\?|\z/) { "/" + $& } : path)
......
...@@ -206,6 +206,7 @@ module Routing ...@@ -206,6 +206,7 @@ module Routing
autoload :Route, 'action_dispatch/routing/route' autoload :Route, 'action_dispatch/routing/route'
autoload :Routes, 'action_dispatch/routing/routes' autoload :Routes, 'action_dispatch/routing/routes'
autoload :RouteSet, 'action_dispatch/routing/route_set' autoload :RouteSet, 'action_dispatch/routing/route_set'
autoload :UrlFor, 'action_dispatch/routing/url_for'
SEPARATORS = %w( / . ? ) SEPARATORS = %w( / . ? )
HTTP_METHODS = [:get, :head, :post, :put, :delete, :options] HTTP_METHODS = [:get, :head, :post, :put, :delete, :options]
......
...@@ -272,6 +272,36 @@ def install_helpers(destinations = [ActionController::Base, ActionView::Base], r ...@@ -272,6 +272,36 @@ def install_helpers(destinations = [ActionController::Base, ActionView::Base], r
named_routes.install(destinations, regenerate_code) named_routes.install(destinations, regenerate_code)
end end
# ROUTES TODO: Revisit the name of these methods
def url_helpers
@url_helpers ||= begin
router = self
Module.new do
extend ActiveSupport::Concern
include UrlFor
define_method(:_router) { router }
end
end
end
def named_url_helpers
@named_url_helpers ||= begin
router = self
Module.new do
extend ActiveSupport::Concern
include router.url_helpers
# ROUTES TODO: install_helpers isn't great... can we make a module with the stuff that
# we can include?
included do
router.install_helpers(self)
end
end
end
end
def empty? def empty?
routes.empty? routes.empty?
end end
......
# A singleton that stores the current route set # A singleton that stores the current route set
ActionDispatch::Routing::Routes = ActionDispatch::Routing::RouteSet.new # ActionDispatch::Routing::Routes = ActionDispatch::Routing::RouteSet.new
# To preserve compatibility with pre-3.0 Rails action_controller/deprecated.rb # To preserve compatibility with pre-3.0 Rails action_controller/deprecated.rb
# defines ActionDispatch::Routing::Routes as an alias # defines ActionDispatch::Routing::Routes as an alias
module ActionDispatch
module Routing
# In <b>routes.rb</b> one defines URL-to-controller mappings, but the reverse
# is also possible: an URL can be generated from one of your routing definitions.
# URL generation functionality is centralized in this module.
#
# See ActionDispatch::Routing and ActionController::Resources for general
# information about routing and routes.rb.
#
# <b>Tip:</b> If you need to generate URLs from your models or some other place,
# then ActionController::UrlFor is what you're looking for. Read on for
# an introduction.
#
# == URL generation from parameters
#
# As you may know, some functions - such as ActionController::Base#url_for
# and ActionView::Helpers::UrlHelper#link_to, can generate URLs given a set
# of parameters. For example, you've probably had the chance to write code
# like this in one of your views:
#
# <%= link_to('Click here', :controller => 'users',
# :action => 'new', :message => 'Welcome!') %>
#
# #=> Generates a link to: /users/new?message=Welcome%21
#
# link_to, and all other functions that require URL generation functionality,
# actually use ActionController::UrlFor under the hood. And in particular,
# they use the ActionController::UrlFor#url_for method. One can generate
# the same path as the above example by using the following code:
#
# include UrlFor
# url_for(:controller => 'users',
# :action => 'new',
# :message => 'Welcome!',
# :only_path => true)
# # => "/users/new?message=Welcome%21"
#
# Notice the <tt>:only_path => true</tt> part. This is because UrlFor has no
# information about the website hostname that your Rails app is serving. So if you
# want to include the hostname as well, then you must also pass the <tt>:host</tt>
# argument:
#
# include UrlFor
# url_for(:controller => 'users',
# :action => 'new',
# :message => 'Welcome!',
# :host => 'www.example.com') # Changed this.
# # => "http://www.example.com/users/new?message=Welcome%21"
#
# By default, all controllers and views have access to a special version of url_for,
# that already knows what the current hostname is. So if you use url_for in your
# controllers or your views, then you don't need to explicitly pass the <tt>:host</tt>
# argument.
#
# For convenience reasons, mailers provide a shortcut for ActionController::UrlFor#url_for.
# So within mailers, you only have to type 'url_for' instead of 'ActionController::UrlFor#url_for'
# in full. However, mailers don't have hostname information, and what's why you'll still
# have to specify the <tt>:host</tt> argument when generating URLs in mailers.
#
#
# == URL generation for named routes
#
# UrlFor also allows one to access methods that have been auto-generated from
# named routes. For example, suppose that you have a 'users' resource in your
# <b>routes.rb</b>:
#
# map.resources :users
#
# This generates, among other things, the method <tt>users_path</tt>. By default,
# this method is accessible from your controllers, views and mailers. If you need
# to access this auto-generated method from other places (such as a model), then
# you can do that by including ActionController::UrlFor in your class:
#
# class User < ActiveRecord::Base
# include ActionController::UrlFor
#
# def base_uri
# user_path(self)
# end
# end
#
# User.find(1).base_uri # => "/users/1"
#
module UrlFor
extend ActiveSupport::Concern
included do
# ActionDispatch::Routing::Routes.install_helpers(self)
# Including in a class uses an inheritable hash. Modules get a plain hash.
if respond_to?(:class_attribute)
class_attribute :default_url_options
else
mattr_accessor :default_url_options
end
self.default_url_options = {}
end
# Overwrite to implement a number of default options that all url_for-based methods will use. The default options should come in
# the form of a hash, just like the one you would use for url_for directly. Example:
#
# def default_url_options(options)
# { :project => @project.active? ? @project.url_name : "unknown" }
# end
#
# As you can infer from the example, this is mostly useful for situations where you want to centralize dynamic decisions about the
# urls as they stem from the business domain. Please note that any individual url_for call can always override the defaults set
# by this method.
def default_url_options(options = nil)
# ROUTES TODO: This should probably be an instance method
self.class.default_url_options
end
def rewrite_options(options) #:nodoc:
if options.delete(:use_defaults) != false && (defaults = default_url_options(options))
defaults.merge(options)
else
options
end
end
# Generate a url based on the options provided, default_url_options and the
# routes defined in routes.rb. The following options are supported:
#
# * <tt>:only_path</tt> - If true, the relative url is returned. Defaults to +false+.
# * <tt>:protocol</tt> - The protocol to connect to. Defaults to 'http'.
# * <tt>:host</tt> - Specifies the host the link should be targeted at.
# If <tt>:only_path</tt> is false, this option must be
# provided either explicitly, or via +default_url_options+.
# * <tt>:port</tt> - Optionally specify the port to connect to.
# * <tt>:anchor</tt> - An anchor name to be appended to the path.
# * <tt>:skip_relative_url_root</tt> - If true, the url is not constructed using the
# +relative_url_root+ set in ActionController::Base.relative_url_root.
# * <tt>:trailing_slash</tt> - If true, adds a trailing slash, as in "/archive/2009/"
#
# Any other key (<tt>:controller</tt>, <tt>:action</tt>, etc.) given to
# +url_for+ is forwarded to the Routes module.
#
# Examples:
#
# url_for :controller => 'tasks', :action => 'testing', :host=>'somehost.org', :port=>'8080' # => 'http://somehost.org:8080/tasks/testing'
# url_for :controller => 'tasks', :action => 'testing', :host=>'somehost.org', :anchor => 'ok', :only_path => true # => '/tasks/testing#ok'
# url_for :controller => 'tasks', :action => 'testing', :trailing_slash=>true # => 'http://somehost.org/tasks/testing/'
# url_for :controller => 'tasks', :action => 'testing', :host=>'somehost.org', :number => '33' # => 'http://somehost.org/tasks/testing?number=33'
def url_for(options = {})
options ||= {}
case options
when String
options
when Hash
_url_rewriter.rewrite(_router, rewrite_options(options))
else
polymorphic_url(options)
end
end
protected
# ROUTES TODO: Figure out why _url_rewriter is sometimes the class and
# sometimes an instance.
def _url_rewriter
ActionController::UrlRewriter
end
end
end
end
\ No newline at end of file
...@@ -80,7 +80,7 @@ def assert_generates(expected_path, options, defaults={}, extras = {}, message=n ...@@ -80,7 +80,7 @@ def assert_generates(expected_path, options, defaults={}, extras = {}, message=n
expected_path = "/#{expected_path}" unless expected_path[0] == ?/ expected_path = "/#{expected_path}" unless expected_path[0] == ?/
# Load routes.rb if it hasn't been loaded. # Load routes.rb if it hasn't been loaded.
generated_path, extra_keys = ActionDispatch::Routing::Routes.generate_extras(options, defaults) generated_path, extra_keys = @router.generate_extras(options, defaults)
found_extras = options.reject {|k, v| ! extra_keys.include? k} found_extras = options.reject {|k, v| ! extra_keys.include? k}
msg = build_message(message, "found extras <?>, not <?>", found_extras, extras) msg = build_message(message, "found extras <?>, not <?>", found_extras, extras)
...@@ -142,22 +142,21 @@ def assert_routing(path, options, defaults={}, extras={}, message=nil) ...@@ -142,22 +142,21 @@ def assert_routing(path, options, defaults={}, extras={}, message=nil)
# end # end
# #
def with_routing def with_routing
real_routes = ActionDispatch::Routing::Routes old_routes, @router = @router, ActionDispatch::Routing::RouteSet.new
ActionDispatch::Routing.module_eval { remove_const :Routes } old_controller, @controller = @controller, @controller.clone if @controller
# ROUTES TODO: Figure out this insanity
temporary_routes = ActionDispatch::Routing::RouteSet.new silence_warnings { ::ActionController.const_set(:UrlFor, @router.named_url_helpers) }
ActionDispatch::Routing.module_eval { const_set :Routes, temporary_routes } _router = @router
@controller.metaclass.send(:send, :include, @router.named_url_helpers) if @controller
yield temporary_routes yield @router
ensure ensure
if ActionDispatch::Routing.const_defined? :Routes @router = old_routes
ActionDispatch::Routing.module_eval { remove_const :Routes } @controller = old_controller if @controller
end silence_warnings { ::ActionController.const_set(:UrlFor, @router.named_url_helpers) } if @router
ActionDispatch::Routing.const_set(:Routes, real_routes) if real_routes
end end
def method_missing(selector, *args, &block) def method_missing(selector, *args, &block)
if @controller && ActionDispatch::Routing::Routes.named_routes.helpers.include?(selector) if @controller && @router.named_routes.helpers.include?(selector)
@controller.send(selector, *args, &block) @controller.send(selector, *args, &block)
else else
super super
...@@ -174,7 +173,7 @@ def recognized_request_for(path, request_method = nil) ...@@ -174,7 +173,7 @@ def recognized_request_for(path, request_method = nil)
request.env["REQUEST_METHOD"] = request_method.to_s.upcase if request_method request.env["REQUEST_METHOD"] = request_method.to_s.upcase if request_method
request.path = path request.path = path
params = ActionDispatch::Routing::Routes.recognize_path(path, { :method => request.method }) params = @router.recognize_path(path, { :method => request.method })
request.path_parameters = params.with_indifferent_access request.path_parameters = params.with_indifferent_access
request request
......
...@@ -188,11 +188,11 @@ def reset! ...@@ -188,11 +188,11 @@ def reset!
unless defined? @named_routes_configured unless defined? @named_routes_configured
# install the named routes in this session instance. # install the named routes in this session instance.
klass = singleton_class klass = singleton_class
ActionDispatch::Routing::Routes.install_helpers(klass) # ActionDispatch::Routing::Routes.install_helpers(klass)
# the helpers are made protected by default--we make them public for # the helpers are made protected by default--we make them public for
# easier access during testing and troubleshooting. # easier access during testing and troubleshooting.
klass.module_eval { public *ActionDispatch::Routing::Routes.named_routes.helpers } # klass.module_eval { public *ActionDispatch::Routing::Routes.named_routes.helpers }
@named_routes_configured = true @named_routes_configured = true
end end
end end
...@@ -224,9 +224,13 @@ def host!(name) ...@@ -224,9 +224,13 @@ def host!(name)
# Returns the URL for the given options, according to the rules specified # Returns the URL for the given options, according to the rules specified
# in the application's routes. # in the application's routes.
def url_for(options) def url_for(options)
# ROUTES TODO: @app.router is not guaranteed to exist, so a generic Rack
# application will not work here. This means that a generic Rack application
# integration test cannot call url_for, since the application will not have
# #router on it.
controller ? controller ?
controller.url_for(options) : controller.url_for(options) :
generic_url_rewriter.rewrite(options) generic_url_rewriter.rewrite(SharedTestRoutes, options)
end end
private private
......
...@@ -53,6 +53,7 @@ def initialize ...@@ -53,6 +53,7 @@ def initialize
setup :setup_with_controller setup :setup_with_controller
def setup_with_controller def setup_with_controller
@controller = TestController.new @controller = TestController.new
@router = SharedTestRoutes
@output_buffer = ActiveSupport::SafeBuffer.new @output_buffer = ActiveSupport::SafeBuffer.new
@rendered = '' @rendered = ''
...@@ -152,7 +153,7 @@ def _assigns ...@@ -152,7 +153,7 @@ def _assigns
end end
def method_missing(selector, *args) def method_missing(selector, *args)
if ActionDispatch::Routing::Routes.named_routes.helpers.include?(selector) if @router.named_routes.helpers.include?(selector)
@controller.__send__(selector, *args) @controller.__send__(selector, *args)
else else
super super
......
...@@ -64,29 +64,50 @@ def run_setup_once ...@@ -64,29 +64,50 @@ def run_setup_once
end end
end end
class ActiveSupport::TestCase SharedTestRoutes = ActionDispatch::Routing::RouteSet.new
include SetupOnce
module ActiveSupport
# Hold off drawing routes until all the possible controller classes class TestCase
# have been loaded. include SetupOnce
setup_once do # Hold off drawing routes until all the possible controller classes
ActionDispatch::Routing::Routes.draw do |map| # have been loaded.
match ':controller(/:action(/:id))' setup_once do
SharedTestRoutes.draw do |map|
match ':controller(/:action(/:id))'
end
# ROUTES TODO: Don't do this here
# brodel :'(
ActionController::IntegrationTest.app.router.draw do
match ':controller(/:action(/:id))'
end
end end
end end
end end
class RoutedRackApp
attr_reader :router
def initialize(router, &blk)
@router = router
@stack = ActionDispatch::MiddlewareStack.new(&blk).build(@router)
end
def call(env)
@stack.call(env)
end
end
class ActionController::IntegrationTest < ActiveSupport::TestCase class ActionController::IntegrationTest < ActiveSupport::TestCase
def self.build_app(routes = nil) def self.build_app(routes = nil)
ActionDispatch::Flash RoutedRackApp.new(routes || ActionDispatch::Routing::RouteSet.new) do |middleware|
ActionDispatch::MiddlewareStack.new { |middleware|
middleware.use "ActionDispatch::ShowExceptions" middleware.use "ActionDispatch::ShowExceptions"
middleware.use "ActionDispatch::Callbacks" middleware.use "ActionDispatch::Callbacks"
middleware.use "ActionDispatch::ParamsParser" middleware.use "ActionDispatch::ParamsParser"
middleware.use "ActionDispatch::Cookies" middleware.use "ActionDispatch::Cookies"
middleware.use "ActionDispatch::Flash" middleware.use "ActionDispatch::Flash"
middleware.use "ActionDispatch::Head" middleware.use "ActionDispatch::Head"
}.build(routes || ActionDispatch::Routing::Routes) end
end end
self.app = build_app self.app = build_app
...@@ -112,20 +133,15 @@ def self.stub_controllers ...@@ -112,20 +133,15 @@ def self.stub_controllers
end end
def with_routing(&block) def with_routing(&block)
real_routes = ActionDispatch::Routing::Routes
ActionDispatch::Routing.module_eval { remove_const :Routes }
temporary_routes = ActionDispatch::Routing::RouteSet.new temporary_routes = ActionDispatch::Routing::RouteSet.new
self.class.app = self.class.build_app(temporary_routes) old_app, self.class.app = self.class.app, self.class.build_app(temporary_routes)
ActionDispatch::Routing.module_eval { const_set :Routes, temporary_routes } old_routes = SharedTestRoutes
silence_warnings { Object.const_set(:SharedTestRoutes, temporary_routes) }
yield temporary_routes yield temporary_routes
ensure ensure
if ActionDispatch::Routing.const_defined? :Routes self.class.app = old_app
ActionDispatch::Routing.module_eval { remove_const :Routes } silence_warnings { Object.const_set(:SharedTestRoutes, old_routes) }
end
ActionDispatch::Routing.const_set(:Routes, real_routes) if real_routes
self.class.app = self.class.build_app
end end
end end
...@@ -190,6 +206,11 @@ class Base ...@@ -190,6 +206,11 @@ class Base
class TestCase class TestCase
include ActionDispatch::TestProcess include ActionDispatch::TestProcess
setup do
# ROUTES TODO: The router object should come from somewhere sane
@router = SharedTestRoutes
end
def assert_template(options = {}, message = nil) def assert_template(options = {}, message = nil)
validate_request! validate_request!
...@@ -232,3 +253,11 @@ def assert_template(options = {}, message = nil) ...@@ -232,3 +253,11 @@ def assert_template(options = {}, message = nil)
end end
end end
end end
# ROUTES TODO: Cleaner way to do this?
module ActionController
UrlFor = SharedTestRoutes.named_url_helpers
class Base
include UrlFor
end
end
\ No newline at end of file
...@@ -253,12 +253,13 @@ def test_assert_redirect_to_named_route_failure ...@@ -253,12 +253,13 @@ def test_assert_redirect_to_named_route_failure
end end
def test_assert_redirect_to_nested_named_route def test_assert_redirect_to_nested_named_route
@controller = Admin::InnerModuleController.new
with_routing do |set| with_routing do |set|
set.draw do |map| set.draw do |map|
match 'admin/inner_module', :to => 'admin/inner_module#index', :as => :admin_inner_module match 'admin/inner_module', :to => 'admin/inner_module#index', :as => :admin_inner_module
match ':controller/:action' match ':controller/:action'
end end
@controller = Admin::InnerModuleController.new
process :redirect_to_index process :redirect_to_index
# redirection is <{"action"=>"index", "controller"=>"admin/admin/inner_module"}> # redirection is <{"action"=>"index", "controller"=>"admin/admin/inner_module"}>
assert_redirected_to admin_inner_module_path assert_redirected_to admin_inner_module_path
...@@ -266,12 +267,13 @@ def test_assert_redirect_to_nested_named_route ...@@ -266,12 +267,13 @@ def test_assert_redirect_to_nested_named_route
end end
def test_assert_redirected_to_top_level_named_route_from_nested_controller def test_assert_redirected_to_top_level_named_route_from_nested_controller
@controller = Admin::InnerModuleController.new
with_routing do |set| with_routing do |set|
set.draw do |map| set.draw do |map|
match '/action_pack_assertions/:id', :to => 'action_pack_assertions#index', :as => :top_level match '/action_pack_assertions/:id', :to => 'action_pack_assertions#index', :as => :top_level
match ':controller/:action' match ':controller/:action'
end end
@controller = Admin::InnerModuleController.new
process :redirect_to_top_level_named_route 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 # assert_redirected_to "http://test.host/action_pack_assertions/foo" would pass because of exact match early return
assert_redirected_to "/action_pack_assertions/foo" assert_redirected_to "/action_pack_assertions/foo"
...@@ -279,13 +281,14 @@ def test_assert_redirected_to_top_level_named_route_from_nested_controller ...@@ -279,13 +281,14 @@ def test_assert_redirected_to_top_level_named_route_from_nested_controller
end end
def test_assert_redirected_to_top_level_named_route_with_same_controller_name_in_both_namespaces def test_assert_redirected_to_top_level_named_route_with_same_controller_name_in_both_namespaces
@controller = Admin::InnerModuleController.new
with_routing do |set| with_routing do |set|
set.draw do |map| set.draw do |map|
# this controller exists in the admin namespace as well which is the only difference from previous test # 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 '/user/:id', :to => 'user#index', :as => :top_level
match ':controller/:action' match ':controller/:action'
end end
@controller = Admin::InnerModuleController.new
process :redirect_to_top_level_named_route process :redirect_to_top_level_named_route
# assert_redirected_to top_level_url('foo') would pass because of exact match early return # assert_redirected_to top_level_url('foo') would pass because of exact match early return
assert_redirected_to top_level_path('foo') assert_redirected_to top_level_path('foo')
......
...@@ -219,12 +219,14 @@ def test_ensure_url_for_works_as_expected_when_called_with_no_options_if_default ...@@ -219,12 +219,14 @@ def test_ensure_url_for_works_as_expected_when_called_with_no_options_if_default
end end
def test_named_routes_with_path_without_doing_a_request_first def test_named_routes_with_path_without_doing_a_request_first
@controller = EmptyController.new
with_routing do |set| with_routing do |set|
set.draw do |map| set.draw do |map|
resources :things resources :things
end end
assert_equal '/things', EmptyController.new.send(:things_path) assert_equal '/things', @controller.send(:things_path)
end end
end end
end end
...@@ -86,7 +86,7 @@ def test_url_for_with_controller ...@@ -86,7 +86,7 @@ def test_url_for_with_controller
def test_url_for_without_controller def test_url_for_without_controller
options = {:action => 'show'} options = {:action => 'show'}
mock_rewriter = mock() mock_rewriter = mock()
mock_rewriter.expects(:rewrite).with(options).returns('/show') mock_rewriter.expects(:rewrite).with(SharedTestRoutes, options).returns('/show')
@session.stubs(:generic_url_rewriter).returns(mock_rewriter) @session.stubs(:generic_url_rewriter).returns(mock_rewriter)
@session.stubs(:controller).returns(nil) @session.stubs(:controller).returns(nil)
assert_equal '/show', @session.url_for(options) assert_equal '/show', @session.url_for(options)
...@@ -401,9 +401,14 @@ def test_generate_url_with_controller ...@@ -401,9 +401,14 @@ def test_generate_url_with_controller
private private
def with_test_route_set def with_test_route_set
with_routing do |set| with_routing do |set|
controller = ::IntegrationProcessTest::IntegrationController.clone
controller.class_eval do
include set.named_url_helpers
end
set.draw do |map| set.draw do |map|
match ':action', :to => ::IntegrationProcessTest::IntegrationController match ':action', :to => controller
get 'get/:action', :to => ::IntegrationProcessTest::IntegrationController get 'get/:action', :to => controller
end end
yield yield
end end
......
...@@ -326,7 +326,7 @@ def show_errors(exception) ...@@ -326,7 +326,7 @@ def show_errors(exception)
end end
test 'rescue routing exceptions' do test 'rescue routing exceptions' do
@app = ActionDispatch::Rescue.new(ActionDispatch::Routing::Routes) do @app = ActionDispatch::Rescue.new(SharedTestRoutes) do
rescue_from ActionController::RoutingError, lambda { |env| [200, {"Content-Type" => "text/html"}, ["Gotcha!"]] } rescue_from ActionController::RoutingError, lambda { |env| [200, {"Content-Type" => "text/html"}, ["Gotcha!"]] }
end end
...@@ -335,7 +335,7 @@ def show_errors(exception) ...@@ -335,7 +335,7 @@ def show_errors(exception)
end end
test 'unrescued exception' do test 'unrescued exception' do
@app = ActionDispatch::Rescue.new(ActionDispatch::Routing::Routes) @app = ActionDispatch::Rescue.new(SharedTestRoutes)
assert_raise(ActionController::RoutingError) { get '/b00m' } assert_raise(ActionController::RoutingError) { get '/b00m' }
end end
......
...@@ -125,7 +125,7 @@ def test_multiple_default_restful_routes ...@@ -125,7 +125,7 @@ def test_multiple_default_restful_routes
def test_with_custom_conditions def test_with_custom_conditions
with_restful_routing :messages, :conditions => { :subdomain => 'app' } do with_restful_routing :messages, :conditions => { :subdomain => 'app' } do
assert ActionDispatch::Routing::Routes.recognize_path("/messages", :method => :get, :subdomain => 'app') assert @router.recognize_path("/messages", :method => :get, :subdomain => 'app')
end end
end end
...@@ -394,7 +394,7 @@ def test_override_new_method ...@@ -394,7 +394,7 @@ def test_override_new_method
assert_restful_routes_for :messages do |options| assert_restful_routes_for :messages do |options|
assert_recognizes(options.merge(:action => "new"), :path => "/messages/new", :method => :get) assert_recognizes(options.merge(:action => "new"), :path => "/messages/new", :method => :get)
assert_raise(ActionController::RoutingError) do assert_raise(ActionController::RoutingError) do
ActionDispatch::Routing::Routes.recognize_path("/messages/new", :method => :post) @router.recognize_path("/messages/new", :method => :post)
end end
end end
end end
...@@ -504,7 +504,7 @@ def test_shallow_nested_restful_routes_with_namespaces ...@@ -504,7 +504,7 @@ def test_shallow_nested_restful_routes_with_namespaces
def test_restful_routes_dont_generate_duplicates def test_restful_routes_dont_generate_duplicates
with_restful_routing :messages do with_restful_routing :messages do
routes = ActionDispatch::Routing::Routes.routes routes = @router.routes
routes.each do |route| routes.each do |route|
routes.each do |r| routes.each do |r|
next if route === r # skip the comparison instance next if route === r # skip the comparison instance
...@@ -1162,8 +1162,8 @@ def assert_restful_routes_for(controller_name, options = {}) ...@@ -1162,8 +1162,8 @@ def assert_restful_routes_for(controller_name, options = {})
options[:shallow_options] = options[:options] options[:shallow_options] = options[:options]
end end
new_action = ActionDispatch::Routing::Routes.resources_path_names[:new] || "new" new_action = @router.resources_path_names[:new] || "new"
edit_action = ActionDispatch::Routing::Routes.resources_path_names[:edit] || "edit" edit_action = @router.resources_path_names[:edit] || "edit"
if options[:path_names] if options[:path_names]
new_action = options[:path_names][:new] if options[:path_names][:new] new_action = options[:path_names][:new] if options[:path_names][:new]
...@@ -1230,6 +1230,8 @@ def assert_restful_named_routes_for(controller_name, singular_name = nil, option ...@@ -1230,6 +1230,8 @@ def assert_restful_named_routes_for(controller_name, singular_name = nil, option
end end
@controller = "#{options[:options][:controller].camelize}Controller".constantize.new @controller = "#{options[:options][:controller].camelize}Controller".constantize.new
# ROUTES TODO: Figure out a way to not extend the routing helpers here
@controller.metaclass.send(:include, @router.named_url_helpers)
@request = ActionController::TestRequest.new @request = ActionController::TestRequest.new
@response = ActionController::TestResponse.new @response = ActionController::TestResponse.new
get :index, options[:options] get :index, options[:options]
...@@ -1299,6 +1301,7 @@ def assert_singleton_routes_for(singleton_name, options = {}) ...@@ -1299,6 +1301,7 @@ def assert_singleton_routes_for(singleton_name, options = {})
def assert_singleton_named_routes_for(singleton_name, options = {}) def assert_singleton_named_routes_for(singleton_name, options = {})
(options[:options] ||= {})[:controller] ||= singleton_name.to_s.pluralize (options[:options] ||= {})[:controller] ||= singleton_name.to_s.pluralize
@controller = "#{options[:options][:controller].camelize}Controller".constantize.new @controller = "#{options[:options][:controller].camelize}Controller".constantize.new
@controller.metaclass.send(:include, @router.named_url_helpers)
@request = ActionController::TestRequest.new @request = ActionController::TestRequest.new
@response = ActionController::TestResponse.new @response = ActionController::TestResponse.new
get :show, options[:options] get :show, options[:options]
......
...@@ -476,8 +476,8 @@ def test_assert_realistic_path_parameters ...@@ -476,8 +476,8 @@ def test_assert_realistic_path_parameters
end end
def test_with_routing_places_routes_back def test_with_routing_places_routes_back
assert ActionDispatch::Routing::Routes assert @router
routes_id = ActionDispatch::Routing::Routes.object_id routes_id = @router.object_id
begin begin
with_routing { raise 'fail' } with_routing { raise 'fail' }
...@@ -485,8 +485,8 @@ def test_with_routing_places_routes_back ...@@ -485,8 +485,8 @@ def test_with_routing_places_routes_back
rescue RuntimeError rescue RuntimeError
end end
assert ActionDispatch::Routing::Routes assert @router
assert_equal routes_id, ActionDispatch::Routing::Routes.object_id assert_equal routes_id, @router.object_id
end end
def test_remote_addr def test_remote_addr
......
...@@ -5,7 +5,7 @@ module Testing ...@@ -5,7 +5,7 @@ module Testing
class UrlForTests < ActionController::TestCase class UrlForTests < ActionController::TestCase
class W class W
include ActionController::UrlFor include SharedTestRoutes.url_helpers
end end
def teardown def teardown
......
...@@ -12,52 +12,52 @@ def setup ...@@ -12,52 +12,52 @@ def setup
def test_port def test_port
assert_equal('http://test.host:1271/c/a/i', assert_equal('http://test.host:1271/c/a/i',
@rewriter.rewrite(:controller => 'c', :action => 'a', :id => 'i', :port => 1271) @rewriter.rewrite(@router, :controller => 'c', :action => 'a', :id => 'i', :port => 1271)
) )
end end
def test_protocol_with_and_without_separator def test_protocol_with_and_without_separator
assert_equal('https://test.host/c/a/i', assert_equal('https://test.host/c/a/i',
@rewriter.rewrite(:protocol => 'https', :controller => 'c', :action => 'a', :id => 'i') @rewriter.rewrite(@router, :protocol => 'https', :controller => 'c', :action => 'a', :id => 'i')
) )
assert_equal('https://test.host/c/a/i', assert_equal('https://test.host/c/a/i',
@rewriter.rewrite(:protocol => 'https://', :controller => 'c', :action => 'a', :id => 'i') @rewriter.rewrite(@router, :protocol => 'https://', :controller => 'c', :action => 'a', :id => 'i')
) )
end end
def test_user_name_and_password def test_user_name_and_password
assert_equal( assert_equal(
'http://david:secret@test.host/c/a/i', 'http://david:secret@test.host/c/a/i',
@rewriter.rewrite(:user => "david", :password => "secret", :controller => 'c', :action => 'a', :id => 'i') @rewriter.rewrite(@router, :user => "david", :password => "secret", :controller => 'c', :action => 'a', :id => 'i')
) )
end end
def test_user_name_and_password_with_escape_codes def test_user_name_and_password_with_escape_codes
assert_equal( assert_equal(
'http://openid.aol.com%2Fnextangler:one+two%3F@test.host/c/a/i', 'http://openid.aol.com%2Fnextangler:one+two%3F@test.host/c/a/i',
@rewriter.rewrite(:user => "openid.aol.com/nextangler", :password => "one two?", :controller => 'c', :action => 'a', :id => 'i') @rewriter.rewrite(@router, :user => "openid.aol.com/nextangler", :password => "one two?", :controller => 'c', :action => 'a', :id => 'i')
) )
end end
def test_anchor def test_anchor
assert_equal( assert_equal(
'http://test.host/c/a/i#anchor', 'http://test.host/c/a/i#anchor',
@rewriter.rewrite(:controller => 'c', :action => 'a', :id => 'i', :anchor => 'anchor') @rewriter.rewrite(@router, :controller => 'c', :action => 'a', :id => 'i', :anchor => 'anchor')
) )
end end
def test_anchor_should_call_to_param def test_anchor_should_call_to_param
assert_equal( assert_equal(
'http://test.host/c/a/i#anchor', 'http://test.host/c/a/i#anchor',
@rewriter.rewrite(:controller => 'c', :action => 'a', :id => 'i', :anchor => Struct.new(:to_param).new('anchor')) @rewriter.rewrite(@router, :controller => 'c', :action => 'a', :id => 'i', :anchor => Struct.new(:to_param).new('anchor'))
) )
end end
def test_anchor_should_be_cgi_escaped def test_anchor_should_be_cgi_escaped
assert_equal( assert_equal(
'http://test.host/c/a/i#anc%2Fhor', 'http://test.host/c/a/i#anc%2Fhor',
@rewriter.rewrite(:controller => 'c', :action => 'a', :id => 'i', :anchor => Struct.new(:to_param).new('anc/hor')) @rewriter.rewrite(@router, :controller => 'c', :action => 'a', :id => 'i', :anchor => Struct.new(:to_param).new('anc/hor'))
) )
end end
...@@ -66,8 +66,8 @@ def test_overwrite_params ...@@ -66,8 +66,8 @@ def test_overwrite_params
@params[:action] = 'bye' @params[:action] = 'bye'
@params[:id] = '2' @params[:id] = '2'
assert_equal '/hi/hi/2', @rewriter.rewrite(:only_path => true, :overwrite_params => {:action => 'hi'}) assert_equal '/hi/hi/2', @rewriter.rewrite(@router, :only_path => true, :overwrite_params => {:action => 'hi'})
u = @rewriter.rewrite(:only_path => false, :overwrite_params => {:action => 'hi'}) u = @rewriter.rewrite(@router, :only_path => false, :overwrite_params => {:action => 'hi'})
assert_match %r(/hi/hi/2$), u assert_match %r(/hi/hi/2$), u
end end
...@@ -76,8 +76,8 @@ def test_overwrite_removes_original ...@@ -76,8 +76,8 @@ def test_overwrite_removes_original
@params[:action] = 'list' @params[:action] = 'list'
@params[:list_page] = 1 @params[:list_page] = 1
assert_equal '/search/list?list_page=2', @rewriter.rewrite(:only_path => true, :overwrite_params => {"list_page" => 2}) assert_equal '/search/list?list_page=2', @rewriter.rewrite(@router, :only_path => true, :overwrite_params => {"list_page" => 2})
u = @rewriter.rewrite(:only_path => false, :overwrite_params => {:list_page => 2}) u = @rewriter.rewrite(@router, :only_path => false, :overwrite_params => {:list_page => 2})
assert_equal 'http://test.host/search/list?list_page=2', u assert_equal 'http://test.host/search/list?list_page=2', u
end end
...@@ -91,12 +91,12 @@ def test_to_str ...@@ -91,12 +91,12 @@ def test_to_str
def test_trailing_slash def test_trailing_slash
options = {:controller => 'foo', :action => 'bar', :id => '3', :only_path => true} options = {:controller => 'foo', :action => 'bar', :id => '3', :only_path => true}
assert_equal '/foo/bar/3', @rewriter.rewrite(options) assert_equal '/foo/bar/3', @rewriter.rewrite(@router, options)
assert_equal '/foo/bar/3?query=string', @rewriter.rewrite(options.merge({:query => 'string'})) assert_equal '/foo/bar/3?query=string', @rewriter.rewrite(@router, options.merge({:query => 'string'}))
options.update({:trailing_slash => true}) options.update({:trailing_slash => true})
assert_equal '/foo/bar/3/', @rewriter.rewrite(options) assert_equal '/foo/bar/3/', @rewriter.rewrite(@router, options)
options.update({:query => 'string'}) options.update({:query => 'string'})
assert_equal '/foo/bar/3/?query=string', @rewriter.rewrite(options) assert_equal '/foo/bar/3/?query=string', @rewriter.rewrite(@router, options)
end end
end end
...@@ -164,6 +164,8 @@ def app ...@@ -164,6 +164,8 @@ def app
Routes Routes
end end
include Routes.named_url_helpers
def test_logout def test_logout
with_test_routes do with_test_routes do
delete '/logout' delete '/logout'
...@@ -728,14 +730,6 @@ def test_nested_optional_scoped_path ...@@ -728,14 +730,6 @@ def test_nested_optional_scoped_path
private private
def with_test_routes def with_test_routes
real_routes, temp_routes = ActionDispatch::Routing::Routes, Routes
ActionDispatch::Routing.module_eval { remove_const :Routes }
ActionDispatch::Routing.module_eval { const_set :Routes, temp_routes }
yield yield
ensure
ActionDispatch::Routing.module_eval { remove_const :Routes }
ActionDispatch::Routing.const_set(:Routes, real_routes)
end end
end end
...@@ -107,7 +107,7 @@ def render_from_helper ...@@ -107,7 +107,7 @@ def render_from_helper
end end
test "is able to use routes" do test "is able to use routes" do
controller.request.assign_parameters('foo', 'index') controller.request.assign_parameters(@router, 'foo', 'index')
assert_equal '/foo', url_for assert_equal '/foo', url_for
assert_equal '/bar', url_for(:controller => 'bar') assert_equal '/bar', url_for(:controller => 'bar')
end end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册