Namespace
Methods
- A
- T
-
- teardown,
- test_anchor,
- test_anchor_should_call_to_param,
- test_anchor_should_escape_unsafe_pchar,
- test_anchor_should_not_escape_safe_pchar,
- test_array_parameter,
- test_default_host,
- test_default_port,
- test_domain_may_be_changed,
- test_exception_is_thrown_without_host,
- test_false_anchor,
- test_false_url_params_are_included_in_query,
- test_hash_parameter,
- test_hash_recursive_and_array_parameters,
- test_hash_recursive_parameters,
- test_host_may_be_overridden,
- test_multiple_includes_maintain_distinct_options,
- test_multiple_subdomains_may_be_removed,
- test_named_routes,
- test_named_routes_with_nil_keys,
- test_nested_optional,
- test_nil_anchor,
- test_one_parameter,
- test_only_path,
- test_path_generation_for_symbol_parameter_keys,
- test_port,
- test_protocol,
- test_protocol_with_and_without_separators,
- test_relative_url_root_is_respected,
- test_relative_url_root_is_respected_for_named_routes,
- test_relative_url_root_is_respected_with_environment_variable,
- test_subdomain_may_be_accepted_with_numeric_host,
- test_subdomain_may_be_changed,
- test_subdomain_may_be_object,
- test_subdomain_may_be_removed,
- test_subdomain_may_be_removed_with_blank_string,
- test_tld_length_may_be_changed,
- test_trailing_slash,
- test_trailing_slash_with_anchor,
- test_trailing_slash_with_only_path,
- test_trailing_slash_with_params,
- test_trailing_slash_with_protocol,
- test_two_parameters,
- test_url_for_with_array_is_unmodified,
- test_url_generation_with_array_and_hash,
- test_url_params_with_nil_to_param_are_not_in_url,
- test_using_nil_script_name_properly_concats_with_original_script_name,
- test_with_hash_with_indifferent_access,
- test_with_stringified_keys,
- test_without_protocol,
- test_without_protocol_and_with_port,
- to_param
Included Modules
- ActionDispatch::Routing::RouteSet
- ActionController::UrlFor
Class Public methods
to_param()
Link
Instance Public methods
add_host!()
Link
add_numeric_host!()
Link
add_port!()
Link
teardown()
Link
test_anchor()
Link
test_anchor_should_call_to_param()
Link
test_anchor_should_escape_unsafe_pchar()
Link
test_anchor_should_not_escape_safe_pchar()
Link
# File actionpack/test/controller/url_for_test.rb, line 83 def test_anchor_should_not_escape_safe_pchar assert_equal('/c/a#name=user&email=user@domain.com', W.new.url_for(:only_path => true, :controller => 'c', :action => 'a', :anchor => Struct.new(:to_param).new('name=user&email=user@domain.com')) ) end
test_array_parameter()
Link
# File actionpack/test/controller/url_for_test.rb, line 349 def test_array_parameter url = W.new.url_for(:only_path => true, :controller => 'c', :action => 'a', :query => ['Bob', 'prof']) params = extract_params(url) assert_equal({'query[]' => 'Bob'}.to_query, params[0]) assert_equal({'query[]' => 'prof'}.to_query, params[1]) end
test_default_host()
Link
test_default_port()
Link
test_domain_may_be_changed()
Link
test_exception_is_thrown_without_host()
Link
test_false_anchor()
Link
test_false_url_params_are_included_in_query()
Link
test_hash_parameter()
Link
# File actionpack/test/controller/url_for_test.rb, line 342 def test_hash_parameter url = W.new.url_for(:only_path => true, :controller => 'c', :action => 'a', :query => {:name => 'Bob', :category => 'prof'}) params = extract_params(url) assert_equal({'query[category]' => 'prof'}.to_query, params[0]) assert_equal({'query[name]' => 'Bob'}.to_query, params[1]) end
test_hash_recursive_and_array_parameters()
Link
# File actionpack/test/controller/url_for_test.rb, line 364 def test_hash_recursive_and_array_parameters url = W.new.url_for(:only_path => true, :controller => 'c', :action => 'a', :id => 101, :query => {:person => {:name => 'Bob', :position => ['prof', 'art director']}, :hobby => 'piercing'}) assert_match(%r(^/c/a/101), url) params = extract_params(url) assert_equal({'query[hobby]' => 'piercing' }.to_query, params[0]) assert_equal({'query[person][name]' => 'Bob' }.to_query, params[1]) assert_equal({'query[person][position][]' => 'art director'}.to_query, params[2]) assert_equal({'query[person][position][]' => 'prof' }.to_query, params[3]) end
test_hash_recursive_parameters()
Link
# File actionpack/test/controller/url_for_test.rb, line 356 def test_hash_recursive_parameters url = W.new.url_for(:only_path => true, :controller => 'c', :action => 'a', :query => {:person => {:name => 'Bob', :position => 'prof'}, :hobby => 'piercing'}) params = extract_params(url) assert_equal({'query[hobby]' => 'piercing'}.to_query, params[0]) assert_equal({'query[person][name]' => 'Bob' }.to_query, params[1]) assert_equal({'query[person][position]' => 'prof' }.to_query, params[2]) end
test_host_may_be_overridden()
Link
test_multiple_includes_maintain_distinct_options()
Link
# File actionpack/test/controller/url_for_test.rb, line 397 def test_multiple_includes_maintain_distinct_options first_class = Class.new { include ActionController::UrlFor } second_class = Class.new { include ActionController::UrlFor } first_host, second_host = 'firsthost.com', 'secondhost.com' first_class.default_url_options[:host] = first_host second_class.default_url_options[:host] = second_host assert_equal first_host, first_class.default_url_options[:host] assert_equal second_host, second_class.default_url_options[:host] end
test_multiple_subdomains_may_be_removed()
Link
# File actionpack/test/controller/url_for_test.rb, line 132 def test_multiple_subdomains_may_be_removed W.default_url_options[:host] = 'mobile.www.api.basecamphq.com' assert_equal('http://basecamphq.com/c/a/i', W.new.url_for(:subdomain => false, :controller => 'c', :action => 'a', :id => 'i') ) end
test_named_routes()
Link
# File actionpack/test/controller/url_for_test.rb, line 268 def test_named_routes with_routing do |set| set.draw do get 'this/is/verbose', :to => 'home#index', :as => :no_args get 'home/sweet/home/:user', :to => 'home#index', :as => :home end # We need to create a new class in order to install the new named route. kls = Class.new { include set.url_helpers } controller = kls.new assert controller.respond_to?(:home_url) assert_equal 'http://www.basecamphq.com/home/sweet/home/again', controller.send(:home_url, :host => 'www.basecamphq.com', :user => 'again') assert_equal("/home/sweet/home/alabama", controller.send(:home_path, :user => 'alabama', :host => 'unused')) assert_equal("http://www.basecamphq.com/home/sweet/home/alabama", controller.send(:home_url, :user => 'alabama', :host => 'www.basecamphq.com')) assert_equal("http://www.basecamphq.com/this/is/verbose", controller.send(:no_args_url, :host=>'www.basecamphq.com')) end end
test_named_routes_with_nil_keys()
Link
# File actionpack/test/controller/url_for_test.rb, line 378 def test_named_routes_with_nil_keys with_routing do |set| set.draw do get 'posts.:format', :to => 'posts#index', :as => :posts get '/', :to => 'posts#index', :as => :main end # We need to create a new class in order to install the new named route. kls = Class.new { include set.url_helpers } kls.default_url_options[:host] = 'www.basecamphq.com' controller = kls.new params = {:action => :index, :controller => :posts, :format => :xml} assert_equal("http://www.basecamphq.com/posts.xml", controller.send(:url_for, params)) params[:format] = nil assert_equal("http://www.basecamphq.com/", controller.send(:url_for, params)) end end
test_nested_optional()
Link
# File actionpack/test/controller/url_for_test.rb, line 14 def test_nested_optional klass = Class.new { include ActionDispatch::Routing::RouteSet.new.tap { |r| r.draw { get "/foo/(:bar/(:baz))/:zot", :as => 'fun', :controller => :articles, :action => :index } }.url_helpers self.default_url_options[:host] = 'example.com' } path = klass.new.fun_path({:controller => :articles, :baz => "baz", :zot => "zot"}) # :bar key isn't provided assert_equal '/foo/zot', path end
test_nil_anchor()
Link
test_one_parameter()
Link
test_only_path()
Link
# File actionpack/test/controller/url_for_test.rb, line 310 def test_only_path with_routing do |set| set.draw do get 'home/sweet/home/:user', :to => 'home#index', :as => :home get ':controller/:action/:id' end # We need to create a new class in order to install the new named route. kls = Class.new { include set.url_helpers } controller = kls.new assert_respond_to controller, :home_url assert_equal '/brave/new/world', controller.url_for(:controller => 'brave', :action => 'new', :id => 'world', :only_path => true) assert_equal("/home/sweet/home/alabama", controller.home_path(:user => 'alabama', :host => 'unused')) assert_equal("/home/sweet/home/alabama", controller.home_path('alabama')) end end
test_path_generation_for_symbol_parameter_keys()
Link
test_port()
Link
test_protocol()
Link
test_protocol_with_and_without_separators()
Link
# File actionpack/test/controller/url_for_test.rb, line 182 def test_protocol_with_and_without_separators add_host! assert_equal('https://www.basecamphq.com/c/a/i', W.new.url_for(:controller => 'c', :action => 'a', :id => 'i', :protocol => 'https') ) assert_equal('https://www.basecamphq.com/c/a/i', W.new.url_for(:controller => 'c', :action => 'a', :id => 'i', :protocol => 'https:') ) assert_equal('https://www.basecamphq.com/c/a/i', W.new.url_for(:controller => 'c', :action => 'a', :id => 'i', :protocol => 'https://') ) end
test_relative_url_root_is_respected()
Link
# File actionpack/test/controller/url_for_test.rb, line 251 def test_relative_url_root_is_respected add_host! assert_equal('https://www.basecamphq.com/subdir/c/a/i', W.new.url_for(:controller => 'c', :action => 'a', :id => 'i', :protocol => 'https', :script_name => '/subdir') ) end
test_relative_url_root_is_respected_for_named_routes()
Link
# File actionpack/test/controller/url_for_test.rb, line 289 def test_relative_url_root_is_respected_for_named_routes with_routing do |set| set.draw do get '/home/sweet/home/:user', :to => 'home#index', :as => :home end kls = Class.new { include set.url_helpers } controller = kls.new assert_equal 'http://www.basecamphq.com/subdir/home/sweet/home/again', controller.send(:home_url, :host => 'www.basecamphq.com', :user => 'again', :script_name => "/subdir") end end
test_relative_url_root_is_respected_with_environment_variable()
Link
# File actionpack/test/controller/url_for_test.rb, line 258 def test_relative_url_root_is_respected_with_environment_variable # `config.relative_url_root` is set by ENV['RAILS_RELATIVE_URL_ROOT'] ActionDispatch::Routing::RouteSet.relative_url_root = '/subdir' add_host! assert_equal('https://www.basecamphq.com/subdir/c/a/i', W.new.url_for(:controller => 'c', :action => 'a', :id => 'i', :protocol => 'https') ) ActionDispatch::Routing::RouteSet.relative_url_root = nil end
test_subdomain_may_be_accepted_with_numeric_host()
Link
test_subdomain_may_be_changed()
Link
test_subdomain_may_be_object()
Link
# File actionpack/test/controller/url_for_test.rb, line 110 def test_subdomain_may_be_object model = Class.new { def self.to_param; 'api'; end } add_host! assert_equal('http://api.basecamphq.com/c/a/i', W.new.url_for(:subdomain => model, :controller => 'c', :action => 'a', :id => 'i') ) end
test_subdomain_may_be_removed()
Link
test_subdomain_may_be_removed_with_blank_string()
Link
# File actionpack/test/controller/url_for_test.rb, line 125 def test_subdomain_may_be_removed_with_blank_string W.default_url_options[:host] = 'api.basecamphq.com' assert_equal('http://basecamphq.com/c/a/i', W.new.url_for(:subdomain => '', :controller => 'c', :action => 'a', :id => 'i') ) end
test_tld_length_may_be_changed()
Link
test_trailing_slash()
Link
test_trailing_slash_with_anchor()
Link
# File actionpack/test/controller/url_for_test.rb, line 238 def test_trailing_slash_with_anchor options = {:trailing_slash => true, :controller => 'foo', :action => 'bar', :id => '33', :only_path => true, :anchor=> 'chapter7'} assert_equal '/foo/bar/33/#chapter7', W.new.url_for(options) assert_equal '/foo/bar/33/?query=string#chapter7', W.new.url_for(options.merge({:query => 'string'})) end
test_trailing_slash_with_only_path()
Link
# File actionpack/test/controller/url_for_test.rb, line 230 def test_trailing_slash_with_only_path options = {:controller => 'foo', :trailing_slash => true} assert_equal '/foo/', W.new.url_for(options.merge({:only_path => true})) options.update({:action => 'bar', :id => '33'}) assert_equal '/foo/bar/33/', W.new.url_for(options.merge({:only_path => true})) assert_equal '/foo/bar/33/?query=string', W.new.url_for(options.merge({:query => 'string',:only_path => true})) end
test_trailing_slash_with_params()
Link
# File actionpack/test/controller/url_for_test.rb, line 244 def test_trailing_slash_with_params url = W.new.url_for(:trailing_slash => true, :only_path => true, :controller => 'cont', :action => 'act', :p1 => 'cafe', :p2 => 'link') params = extract_params(url) assert_equal({p1: 'cafe'}.to_query, params[0]) assert_equal({p2: 'link'}.to_query, params[1]) end
test_trailing_slash_with_protocol()
Link
# File actionpack/test/controller/url_for_test.rb, line 223 def test_trailing_slash_with_protocol add_host! options = { :trailing_slash => true,:protocol => 'https', :controller => 'foo', :action => 'bar', :id => '33'} assert_equal('https://www.basecamphq.com/foo/bar/33/', W.new.url_for(options) ) assert_equal 'https://www.basecamphq.com/foo/bar/33/?query=string', W.new.url_for(options.merge({:query => 'string'})) end
test_two_parameters()
Link
# File actionpack/test/controller/url_for_test.rb, line 335 def test_two_parameters url = W.new.url_for(:only_path => true, :controller => 'c', :action => 'a', :p1 => 'X1', :p2 => 'Y2') params = extract_params(url) assert_equal({p1: 'X1'}.to_query, params[0]) assert_equal({p2: 'Y2'}.to_query, params[1]) end
test_url_for_with_array_is_unmodified()
Link
# File actionpack/test/controller/url_for_test.rb, line 450 def test_url_for_with_array_is_unmodified with_routing do |set| set.draw do namespace :admin do resources :posts end end kls = Class.new { include set.url_helpers } kls.default_url_options[:host] = 'www.basecamphq.com' original_components = [:new, :admin, :post, { param: 'value' }] components = original_components.dup kls.new.url_for(components) assert_equal(original_components, components) end end
test_url_generation_with_array_and_hash()
Link
# File actionpack/test/controller/url_for_test.rb, line 432 def test_url_generation_with_array_and_hash with_routing do |set| set.draw do namespace :admin do resources :posts end end kls = Class.new { include set.url_helpers } kls.default_url_options[:host] = 'www.basecamphq.com' controller = kls.new assert_equal("http://www.basecamphq.com/admin/posts/new?param=value", controller.send(:url_for, [:new, :admin, :post, { param: 'value' }]) ) end end
test_url_params_with_nil_to_param_are_not_in_url()
Link
test_using_nil_script_name_properly_concats_with_original_script_name()
Link
# File actionpack/test/controller/url_for_test.rb, line 303 def test_using_nil_script_name_properly_concats_with_original_script_name add_host! assert_equal('https://www.basecamphq.com/subdir/c/a/i', W.new.url_for(:controller => 'c', :action => 'a', :id => 'i', :protocol => 'https', :script_name => nil, :original_script_name => '/subdir') ) end
test_with_hash_with_indifferent_access()
Link
# File actionpack/test/controller/url_for_test.rb, line 415 def test_with_hash_with_indifferent_access W.default_url_options[:controller] = 'd' W.default_url_options[:only_path] = false assert_equal("/c", W.new.url_for(ActiveSupport::HashWithIndifferentAccess.new('controller' => 'c', 'only_path' => true))) W.default_url_options[:action] = 'b' assert_equal("/c/a", W.new.url_for(ActiveSupport::HashWithIndifferentAccess.new('controller' => 'c', 'action' => 'a', 'only_path' => true))) end
test_with_stringified_keys()
Link
test_without_protocol()
Link
# File actionpack/test/controller/url_for_test.rb, line 195 def test_without_protocol add_host! assert_equal('//www.basecamphq.com/c/a/i', W.new.url_for(:controller => 'c', :action => 'a', :id => 'i', :protocol => '//') ) assert_equal('//www.basecamphq.com/c/a/i', W.new.url_for(:controller => 'c', :action => 'a', :id => 'i', :protocol => false) ) end
test_without_protocol_and_with_port()
Link
# File actionpack/test/controller/url_for_test.rb, line 205 def test_without_protocol_and_with_port add_host! add_port! assert_equal('//www.basecamphq.com:3000/c/a/i', W.new.url_for(:controller => 'c', :action => 'a', :id => 'i', :protocol => '//') ) assert_equal('//www.basecamphq.com:3000/c/a/i', W.new.url_for(:controller => 'c', :action => 'a', :id => 'i', :protocol => false) ) end