2007-01-28 07:16:55 +00:00
require " #{ File . dirname ( __FILE__ ) } /../abstract_unit "
2004-11-24 01:04:44 +00:00
2007-01-12 07:02:38 +00:00
RequestMock = Struct . new ( " Request " , :request_uri , :protocol , :host_with_port )
2005-02-23 15:05:04 +00:00
2004-11-24 01:04:44 +00:00
class UrlHelperTest < Test :: Unit :: TestCase
2005-03-14 00:18:12 +00:00
include ActionView :: Helpers :: AssetTagHelper
2004-11-24 01:04:44 +00:00
include ActionView :: Helpers :: UrlHelper
include ActionView :: Helpers :: TagHelper
def setup
@controller = Class . new do
2006-10-22 23:54:41 +00:00
attr_accessor :url , :request
2004-11-24 01:04:44 +00:00
def url_for ( options , * parameters_for_method_reference )
2006-03-18 22:36:52 +00:00
url
2004-11-24 01:04:44 +00:00
end
end
@controller = @controller . new
2006-03-18 22:36:52 +00:00
@controller . url = " http://www.example.com "
2004-11-24 01:04:44 +00:00
end
2006-03-18 22:36:52 +00:00
def test_url_for_escapes_urls
@controller . url = " http://www.example.com?a=b&c=d "
assert_equal " http://www.example.com?a=b&c=d " , url_for ( :a = > 'b' , :c = > 'd' )
2006-03-22 19:41:39 +00:00
assert_equal " http://www.example.com?a=b&c=d " , url_for ( :a = > 'b' , :c = > 'd' , :escape = > true )
assert_equal " http://www.example.com?a=b&c=d " , url_for ( :a = > 'b' , :c = > 'd' , :escape = > false )
2006-03-18 22:36:52 +00:00
end
2006-10-20 18:00:20 +00:00
2004-11-24 01:04:44 +00:00
# todo: missing test cases
2005-06-16 06:17:51 +00:00
def test_button_to_with_straight_url
2005-09-20 07:54:55 +00:00
assert_dom_equal " <form method= \" post \" action= \" http://www.example.com \" class= \" button-to \" ><div><input type= \" submit \" value= \" Hello \" /></div></form> " , button_to ( " Hello " , " http://www.example.com " )
2005-06-16 06:17:51 +00:00
end
2005-10-13 22:44:45 +00:00
def test_button_to_with_query
assert_dom_equal " <form method= \" post \" action= \" http://www.example.com/q1=v1&q2=v2 \" class= \" button-to \" ><div><input type= \" submit \" value= \" Hello \" /></div></form> " , button_to ( " Hello " , " http://www.example.com/q1=v1&q2=v2 " )
end
2006-10-18 16:42:19 +00:00
def test_button_to_with_escaped_query
assert_dom_equal " <form method= \" post \" action= \" http://www.example.com/q1=v1&q2=v2 \" class= \" button-to \" ><div><input type= \" submit \" value= \" Hello \" /></div></form> " , button_to ( " Hello " , " http://www.example.com/q1=v1&q2=v2 " )
end
2005-10-13 22:44:45 +00:00
def test_button_to_with_query_and_no_name
assert_dom_equal " <form method= \" post \" action= \" http://www.example.com?q1=v1&q2=v2 \" class= \" button-to \" ><div><input type= \" submit \" value= \" http://www.example.com?q1=v1&q2=v2 \" /></div></form> " , button_to ( nil , " http://www.example.com?q1=v1&q2=v2 " )
end
2005-06-16 06:17:51 +00:00
def test_button_to_with_javascript_confirm
2005-09-20 07:54:55 +00:00
assert_dom_equal (
2005-06-16 06:17:51 +00:00
" <form method= \" post \" action= \" http://www.example.com \" class= \" button-to \" ><div><input onclick= \" return confirm('Are you sure?'); \" type= \" submit \" value= \" Hello \" /></div></form> " ,
button_to ( " Hello " , " http://www.example.com " , :confirm = > " Are you sure? " )
)
end
def test_button_to_enabled_disabled
2005-09-20 07:54:55 +00:00
assert_dom_equal (
2005-06-16 06:17:51 +00:00
" <form method= \" post \" action= \" http://www.example.com \" class= \" button-to \" ><div><input type= \" submit \" value= \" Hello \" /></div></form> " ,
button_to ( " Hello " , " http://www.example.com " , :disabled = > false )
)
2005-09-20 07:54:55 +00:00
assert_dom_equal (
2005-06-16 06:17:51 +00:00
" <form method= \" post \" action= \" http://www.example.com \" class= \" button-to \" ><div><input disabled= \" disabled \" type= \" submit \" value= \" Hello \" /></div></form> " ,
button_to ( " Hello " , " http://www.example.com " , :disabled = > true )
)
end
2006-09-03 15:59:18 +00:00
def test_button_to_with_method_delete
assert_dom_equal (
" <form method= \" post \" action= \" http://www.example.com \" class= \" button-to \" ><div><input type= \" hidden \" name= \" _method \" value= \" delete \" /><input type= \" submit \" value= \" Hello \" /></div></form> " ,
button_to ( " Hello " , " http://www.example.com " , :method = > :delete )
)
end
def test_button_to_with_method_get
assert_dom_equal (
" <form method= \" get \" action= \" http://www.example.com \" class= \" button-to \" ><div><input type= \" submit \" value= \" Hello \" /></div></form> " ,
button_to ( " Hello " , " http://www.example.com " , :method = > :get )
)
end
2005-06-16 06:17:51 +00:00
2004-11-24 01:04:44 +00:00
def test_link_tag_with_straight_url
2005-09-20 07:54:55 +00:00
assert_dom_equal " <a href= \" http://www.example.com \" >Hello</a> " , link_to ( " Hello " , " http://www.example.com " )
2004-11-24 01:04:44 +00:00
end
2005-03-06 11:50:41 +00:00
2005-10-13 22:44:45 +00:00
def test_link_tag_with_query
2006-03-18 22:36:52 +00:00
assert_dom_equal " <a href= \" http://www.example.com?q1=v1&q2=v2 \" >Hello</a> " , link_to ( " Hello " , " http://www.example.com?q1=v1&q2=v2 " )
2005-10-13 22:44:45 +00:00
end
def test_link_tag_with_query_and_no_name
2006-03-18 22:36:52 +00:00
assert_dom_equal " <a href= \" http://www.example.com?q1=v1&q2=v2 \" >http://www.example.com?q1=v1&q2=v2</a> " , link_to ( nil , " http://www.example.com?q1=v1&q2=v2 " )
end
def test_link_tag_with_img
assert_dom_equal " <a href= \" http://www.example.com \" ><img src='/favicon.jpg' /></a> " , link_to ( " <img src='/favicon.jpg' /> " , " http://www.example.com " )
end
def test_link_with_nil_html_options
assert_dom_equal " <a href= \" http://www.example.com \" >Hello</a> " , link_to ( " Hello " , { :action = > 'myaction' } , nil )
2005-10-13 22:44:45 +00:00
end
2005-09-08 17:54:16 +00:00
def test_link_tag_with_custom_onclick
2005-09-20 07:54:55 +00:00
assert_dom_equal " <a href= \" http://www.example.com \" onclick= \" alert('yay!') \" >Hello</a> " , link_to ( " Hello " , " http://www.example.com " , :onclick = > " alert('yay!') " )
2005-09-08 17:54:16 +00:00
end
2006-03-18 22:36:52 +00:00
2004-11-24 01:04:44 +00:00
def test_link_tag_with_javascript_confirm
2005-09-20 07:54:55 +00:00
assert_dom_equal (
2005-03-06 12:27:06 +00:00
" <a href= \" http://www.example.com \" onclick= \" return confirm('Are you sure?'); \" >Hello</a> " ,
link_to ( " Hello " , " http://www.example.com " , :confirm = > " Are you sure? " )
2004-11-24 01:04:44 +00:00
)
2005-09-20 07:54:55 +00:00
assert_dom_equal (
2005-03-06 12:27:06 +00:00
" <a href= \" http://www.example.com \" onclick= \" return confirm('You can \\ 't possibly be sure, can you?'); \" >Hello</a> " ,
link_to ( " Hello " , " http://www.example.com " , :confirm = > " You can't possibly be sure, can you? " )
2005-03-06 12:07:13 +00:00
)
2005-09-20 07:54:55 +00:00
assert_dom_equal (
2005-08-14 08:43:07 +00:00
" <a href= \" http://www.example.com \" onclick= \" return confirm('You can \\ 't possibly be sure, \\ n can you?'); \" >Hello</a> " ,
link_to ( " Hello " , " http://www.example.com " , :confirm = > " You can't possibly be sure, \n can you? " )
)
2004-11-24 01:04:44 +00:00
end
2005-03-06 11:50:41 +00:00
2005-09-04 00:33:45 +00:00
def test_link_tag_with_popup
2005-09-20 07:54:55 +00:00
assert_dom_equal (
2005-09-04 00:33:45 +00:00
" <a href= \" http://www.example.com \" onclick= \" window.open(this.href);return false; \" >Hello</a> " ,
link_to ( " Hello " , " http://www.example.com " , :popup = > true )
)
2005-09-20 07:54:55 +00:00
assert_dom_equal (
2005-09-04 00:33:45 +00:00
" <a href= \" http://www.example.com \" onclick= \" window.open(this.href);return false; \" >Hello</a> " ,
link_to ( " Hello " , " http://www.example.com " , :popup = > 'true' )
)
2005-09-20 07:54:55 +00:00
assert_dom_equal (
2005-09-04 00:33:45 +00:00
" <a href= \" http://www.example.com \" onclick= \" window.open(this.href,'window_name','width=300,height=300');return false; \" >Hello</a> " ,
link_to ( " Hello " , " http://www.example.com " , :popup = > [ 'window_name' , 'width=300,height=300' ] )
)
end
def test_link_tag_with_popup_and_javascript_confirm
2005-09-20 07:54:55 +00:00
assert_dom_equal (
2005-09-04 00:33:45 +00:00
" <a href= \" http://www.example.com \" onclick= \" if (confirm('Fo \\ ' sho \\ '?')) { window.open(this.href); };return false; \" >Hello</a> " ,
link_to ( " Hello " , " http://www.example.com " , { :popup = > true , :confirm = > " Fo' sho'? " } )
)
2005-09-20 07:54:55 +00:00
assert_dom_equal (
2005-09-04 00:33:45 +00:00
" <a href= \" http://www.example.com \" onclick= \" if (confirm('Are you serious?')) { window.open(this.href,'window_name','width=300,height=300'); };return false; \" >Hello</a> " ,
link_to ( " Hello " , " http://www.example.com " , { :popup = > [ 'window_name' , 'width=300,height=300' ] , :confirm = > " Are you serious? " } )
)
end
2006-10-22 23:54:41 +00:00
def test_link_tag_with_post_is_deprecated
assert_deprecated 'post' do
assert_dom_equal (
" <a href='http://www.example.com' onclick= \" var f = document.createElement('form'); f.style.display = 'none'; this.parentNode.appendChild(f); f.method = 'POST'; f.action = this.href;f.submit();return false; \" >Hello</a> " ,
link_to ( " Hello " , " http://www.example.com " , :post = > true )
)
end
end
2005-09-07 12:56:33 +00:00
def test_link_tag_using_post_javascript
2005-09-20 07:54:55 +00:00
assert_dom_equal (
2006-05-28 00:33:53 +00:00
" <a href='http://www.example.com' onclick= \" var f = document.createElement('form'); f.style.display = 'none'; this.parentNode.appendChild(f); f.method = 'POST'; f.action = this.href;f.submit();return false; \" >Hello</a> " ,
2006-10-22 23:54:41 +00:00
link_to ( " Hello " , " http://www.example.com " , :method = > :post )
2005-09-07 12:56:33 +00:00
)
end
2006-05-28 00:33:53 +00:00
def test_link_tag_using_delete_javascript
assert_dom_equal (
" <a href='http://www.example.com' onclick= \" var f = document.createElement('form'); f.style.display = 'none'; this.parentNode.appendChild(f); f.method = 'POST'; f.action = this.href;var m = document.createElement('input'); m.setAttribute('type', 'hidden'); m.setAttribute('name', '_method'); m.setAttribute('value', 'delete'); f.appendChild(m);f.submit();return false; \" >Destroy</a> " ,
link_to ( " Destroy " , " http://www.example.com " , :method = > :delete )
)
end
2005-09-07 12:56:33 +00:00
def test_link_tag_using_post_javascript_and_confirm
2005-09-20 07:54:55 +00:00
assert_dom_equal (
2006-05-28 00:33:53 +00:00
" <a href= \" http://www.example.com \" onclick= \" if (confirm('Are you serious?')) { var f = document.createElement('form'); f.style.display = 'none'; this.parentNode.appendChild(f); f.method = 'POST'; f.action = this.href;f.submit(); };return false; \" >Hello</a> " ,
2006-10-22 23:54:41 +00:00
link_to ( " Hello " , " http://www.example.com " , :method = > :post , :confirm = > " Are you serious? " )
2005-09-07 12:56:33 +00:00
)
end
def test_link_tag_using_post_javascript_and_popup
2006-10-22 23:54:41 +00:00
assert_raises ( ActionView :: ActionViewError ) { link_to ( " Hello " , " http://www.example.com " , :popup = > true , :method = > :post , :confirm = > " Are you serious? " ) }
2005-09-07 12:56:33 +00:00
end
2005-03-06 14:06:33 +00:00
def test_link_to_unless
assert_equal " Showing " , link_to_unless ( true , " Showing " , :action = > " show " , :controller = > " weblog " )
2005-09-20 07:54:55 +00:00
assert_dom_equal " <a href= \" http://www.example.com \" >Listing</a> " , link_to_unless ( false , " Listing " , :action = > " list " , :controller = > " weblog " )
2005-03-06 14:06:33 +00:00
assert_equal " Showing " , link_to_unless ( true , " Showing " , :action = > " show " , :controller = > " weblog " , :id = > 1 )
assert_equal " <strong>Showing</strong> " , link_to_unless ( true , " Showing " , :action = > " show " , :controller = > " weblog " , :id = > 1 ) { | name , options , html_options , * parameters_for_method_reference |
" <strong> #{ name } </strong> "
}
assert_equal " <strong>Showing</strong> " , link_to_unless ( true , " Showing " , :action = > " show " , :controller = > " weblog " , :id = > 1 ) { | name |
" <strong> #{ name } </strong> "
}
assert_equal " test " , link_to_unless ( true , " Showing " , :action = > " show " , :controller = > " weblog " , :id = > 1 ) {
" test "
}
end
def test_link_to_if
assert_equal " Showing " , link_to_if ( false , " Showing " , :action = > " show " , :controller = > " weblog " )
2005-09-20 07:54:55 +00:00
assert_dom_equal " <a href= \" http://www.example.com \" >Listing</a> " , link_to_if ( true , " Listing " , :action = > " list " , :controller = > " weblog " )
2005-03-06 14:06:33 +00:00
assert_equal " Showing " , link_to_if ( false , " Showing " , :action = > " show " , :controller = > " weblog " , :id = > 1 )
end
2006-10-22 23:54:41 +00:00
def test_link_unless_current
@controller . request = RequestMock . new ( " http://www.example.com/weblog/show " )
@controller . url = " http://www.example.com/weblog/show "
assert_equal " Showing " , link_to_unless_current ( " Showing " , { :action = > " show " , :controller = > " weblog " } )
2007-01-12 07:02:38 +00:00
assert_equal " Showing " , link_to_unless_current ( " Showing " , " http://www.example.com/weblog/show " )
2004-12-22 22:50:44 +00:00
2006-10-22 23:54:41 +00:00
@controller . request = RequestMock . new ( " http://www.example.com/weblog/show " )
@controller . url = " http://www.example.com/weblog/list "
2007-01-12 07:02:38 +00:00
assert_equal " <a href= \" http://www.example.com/weblog/list \" >Listing</a> " ,
link_to_unless_current ( " Listing " , :action = > " list " , :controller = > " weblog " )
assert_equal " <a href= \" http://www.example.com/weblog/list \" >Listing</a> " ,
link_to_unless_current ( " Listing " , " http://www.example.com/weblog/list " )
2004-11-24 01:04:44 +00:00
end
2007-01-12 07:02:38 +00:00
2004-11-24 01:04:44 +00:00
def test_mail_to
2005-09-20 07:54:55 +00:00
assert_dom_equal " <a href= \" mailto:david@loudthinking.com \" >david@loudthinking.com</a> " , mail_to ( " david@loudthinking.com " )
assert_dom_equal " <a href= \" mailto:david@loudthinking.com \" >David Heinemeier Hansson</a> " , mail_to ( " david@loudthinking.com " , " David Heinemeier Hansson " )
assert_dom_equal (
2005-03-06 11:50:41 +00:00
" <a class= \" admin \" href= \" mailto:david@loudthinking.com \" >David Heinemeier Hansson</a> " ,
2004-11-24 01:04:44 +00:00
mail_to ( " david@loudthinking.com " , " David Heinemeier Hansson " , " class " = > " admin " )
)
2005-03-06 11:50:41 +00:00
assert_equal mail_to ( " david@loudthinking.com " , " David Heinemeier Hansson " , " class " = > " admin " ) ,
mail_to ( " david@loudthinking.com " , " David Heinemeier Hansson " , :class = > " admin " )
2004-11-24 01:04:44 +00:00
end
2005-03-06 11:50:41 +00:00
2005-03-09 13:53:47 +00:00
def test_mail_to_with_javascript
2006-02-26 04:25:17 +00:00
assert_dom_equal " <script type= \" text/javascript \" >eval(unescape('%64%6f%63%75%6d%65%6e%74%2e%77%72%69%74%65%28%27%3c%61%20%68%72%65%66%3d%22%6d%61%69%6c%74%6f%3a%6d%65%40%64%6f%6d%61%69%6e%2e%63%6f%6d%22%3e%4d%79%20%65%6d%61%69%6c%3c%2f%61%3e%27%29%3b'))</script> " , mail_to ( " me@domain.com " , " My email " , :encode = > " javascript " )
2005-03-09 13:53:47 +00:00
end
2005-04-02 08:16:57 +00:00
def test_mail_with_options
2005-09-20 07:54:55 +00:00
assert_dom_equal (
2005-04-02 08:16:57 +00:00
%( <a href="mailto:me@example.com?cc=ccaddress%40example.com&bcc=bccaddress%40example.com&body=This%20is%20the%20body%20of%20the%20message.&subject=This%20is%20an%20example%20email">My email</a> ) ,
mail_to ( " me@example.com " , " My email " , :cc = > " ccaddress@example.com " , :bcc = > " bccaddress@example.com " , :subject = > " This is an example email " , :body = > " This is the body of the message. " )
)
end
2006-03-19 17:03:02 +00:00
def test_mail_to_with_img
assert_dom_equal %( <a href="mailto:feedback@example.com"><img src="/feedback.png" /></a> ) , mail_to ( 'feedback@example.com' , '<img src="/feedback.png" />' )
end
2005-03-09 13:53:47 +00:00
def test_mail_to_with_hex
2005-09-20 07:54:55 +00:00
assert_dom_equal " <a href= \" mailto:%6d%65@%64%6f%6d%61%69%6e.%63%6f%6d \" >My email</a> " , mail_to ( " me@domain.com " , " My email " , :encode = > " hex " )
2005-03-09 13:53:47 +00:00
end
2005-07-02 06:46:41 +00:00
def test_mail_to_with_replace_options
2005-09-20 07:54:55 +00:00
assert_dom_equal " <a href= \" mailto:wolfgang@stufenlos.net \" >wolfgang(at)stufenlos(dot)net</a> " , mail_to ( " wolfgang@stufenlos.net " , nil , :replace_at = > " (at) " , :replace_dot = > " (dot) " )
assert_dom_equal " <a href= \" mailto:%6d%65@%64%6f%6d%61%69%6e.%63%6f%6d \" >me(at)domain.com</a> " , mail_to ( " me@domain.com " , nil , :encode = > " hex " , :replace_at = > " (at) " )
assert_dom_equal " <a href= \" mailto:%6d%65@%64%6f%6d%61%69%6e.%63%6f%6d \" >My email</a> " , mail_to ( " me@domain.com " , " My email " , :encode = > " hex " , :replace_at = > " (at) " )
assert_dom_equal " <a href= \" mailto:%6d%65@%64%6f%6d%61%69%6e.%63%6f%6d \" >me(at)domain(dot)com</a> " , mail_to ( " me@domain.com " , nil , :encode = > " hex " , :replace_at = > " (at) " , :replace_dot = > " (dot) " )
2006-02-26 04:25:17 +00:00
assert_dom_equal " <script type= \" text/javascript \" >eval(unescape('%64%6f%63%75%6d%65%6e%74%2e%77%72%69%74%65%28%27%3c%61%20%68%72%65%66%3d%22%6d%61%69%6c%74%6f%3a%6d%65%40%64%6f%6d%61%69%6e%2e%63%6f%6d%22%3e%4d%79%20%65%6d%61%69%6c%3c%2f%61%3e%27%29%3b'))</script> " , mail_to ( " me@domain.com " , " My email " , :encode = > " javascript " , :replace_at = > " (at) " , :replace_dot = > " (dot) " )
2005-07-02 06:46:41 +00:00
end
2004-12-22 22:50:44 +00:00
end
2006-10-20 18:00:20 +00:00
class UrlHelperWithControllerTest < Test :: Unit :: TestCase
class UrlHelperController < ActionController :: Base
self . template_root = " #{ File . dirname ( __FILE__ ) } /../fixtures/ "
def self . controller_path ; 'url_helper_with_controller' end
def show_url_for
render :inline = > " <%= url_for :controller => 'url_helper_with_controller', :action => 'show_url_for' %> "
end
def show_named_route
render :inline = > " <%= show_named_route_ #{ params [ :kind ] } %> "
end
def rescue_action ( e ) raise e end
end
include ActionView :: Helpers :: UrlHelper
def setup
@request = ActionController :: TestRequest . new
@response = ActionController :: TestResponse . new
@controller = UrlHelperController . new
end
def test_url_for_shows_only_path
get :show_url_for
assert_equal '/url_helper_with_controller/show_url_for' , @response . body
end
def test_named_route_shows_host_and_path
with_url_helper_routing do
get :show_named_route , :kind = > 'url'
assert_equal 'http://test.host/url_helper_with_controller/show_named_route' , @response . body
end
end
def test_named_route_path_shows_only_path
with_url_helper_routing do
get :show_named_route , :kind = > 'path'
assert_equal '/url_helper_with_controller/show_named_route' , @response . body
end
end
protected
def with_url_helper_routing
with_routing do | set |
set . draw do | map |
map . show_named_route 'url_helper_with_controller/show_named_route' , :controller = > 'url_helper_with_controller' , :action = > 'show_named_route'
end
yield
end
end
end
2007-01-12 07:02:38 +00:00
class LinkToUnlessCurrentWithControllerTest < Test :: Unit :: TestCase
class TasksController < ActionController :: Base
self . template_root = " #{ File . dirname ( __FILE__ ) } /../fixtures/ "
def self . controller_path ; 'tasks' end
def index
render_default
end
def show
render_default
end
def rescue_action ( e ) raise e end
protected
def render_default
render :inline = >
" <%= link_to_unless_current( \" tasks \" , tasks_path) %> \n " +
" <%= link_to_unless_current( \" tasks \" , tasks_url) %> "
end
end
include ActionView :: Helpers :: UrlHelper
def setup
@request = ActionController :: TestRequest . new
@response = ActionController :: TestResponse . new
@controller = TasksController . new
end
def test_link_to_unless_current_to_current
with_restful_routing do
get :index
assert_equal " tasks \n tasks " , @response . body
end
end
def test_link_to_unless_current_shows_link
with_restful_routing do
get :show , :id = > 1
assert_equal " <a href= \" /tasks \" >tasks</a> \n " +
" <a href= \" #{ @request . protocol } #{ @request . host_with_port } /tasks \" >tasks</a> " ,
@response . body
end
end
protected
def with_restful_routing
with_routing do | set |
set . draw do | map |
map . resources :tasks
end
yield
end
end
end