From 00deaf6d56085d4961eff8e8e0948a9241dfd5ea Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Thu, 23 Dec 2004 18:59:24 +0000 Subject: Added :host and :protocol options to url_for and friends to redirect to another host and protocol than the current. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@266 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/test/controller/url_test.rb | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'actionpack/test/controller/url_test.rb') diff --git a/actionpack/test/controller/url_test.rb b/actionpack/test/controller/url_test.rb index 10577382a6..5cae4e289b 100644 --- a/actionpack/test/controller/url_test.rb +++ b/actionpack/test/controller/url_test.rb @@ -60,6 +60,20 @@ class UrlTest < Test::Unit::TestCase assert_equal "http://www.singlefile.com/library/books/ISBN/0743536703/edit", @library_url.rewrite(:action => "edit") end + def test_clean_action_to_another_host + assert_equal( + "http://www.booksphere.com/library/books/ISBN/0743536703/edit", + @library_url.rewrite(:action => "edit", :host => "www.booksphere.com") + ) + end + + def test_clean_action_to_another_host_and_protocol + assert_equal( + "https://www.booksphere.com/library/books/ISBN/0743536703/edit", + @library_url.rewrite(:action => "edit", :host => "www.booksphere.com", :protocol => "https://") + ) + end + def test_clean_action_with_only_path assert_equal "/library/books/ISBN/0743536703/edit", @library_url.rewrite(:action => "edit", :only_path => true) end -- cgit v1.2.3