X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/f2d13c075660efb9582d7fb600bd6798d7a382ca..34e3e51456774127d43408b7ab65c24f41373f62:/test/helpers/application_helper_test.rb diff --git a/test/helpers/application_helper_test.rb b/test/helpers/application_helper_test.rb index 46c35f950..3a1264628 100644 --- a/test/helpers/application_helper_test.rb +++ b/test/helpers/application_helper_test.rb @@ -7,17 +7,21 @@ class ApplicationHelperTest < ActionView::TestCase I18n.locale = "en" end + def setup + I18n.locale = "en" + end + def test_linkify %w(http://example.com/test ftp://example.com/test https://example.com/test).each do |link| text = "Test #{link} is made into a link" html = linkify(text) assert_equal false, html.html_safe? - assert_equal "Test #{link} is made into a link", html + assert_dom_equal "Test #{link} is made into a link", html html = linkify(text.html_safe) - assert_equal true, html.html_safe? - assert_equal "Test #{link} is made into a link", html + assert_equal true, html.html_safe? + assert_dom_equal "Test #{link} is made into a link", html end %w(test@example.com mailto:test@example.com).each do |link| @@ -25,22 +29,22 @@ class ApplicationHelperTest < ActionView::TestCase html = linkify(text) assert_equal false, html.html_safe? - assert_equal text, html + assert_dom_equal text, html html = linkify(text.html_safe) - assert_equal true, html.html_safe? - assert_equal text, html + assert_equal true, html.html_safe? + assert_dom_equal text, html end end def test_rss_link_to link = rss_link_to(:controller => :diary_entry, :action => :rss) - assert_equal "\"Rss\"", link + assert_dom_equal "\"Rss\"", link end def test_atom_link_to link = atom_link_to(:controller => :changeset, :action => :feed) - assert_equal "\"Rss\"", link + assert_dom_equal "\"Rss\"", link end def test_style_rules @@ -91,26 +95,26 @@ class ApplicationHelperTest < ActionView::TestCase def test_if_logged_in html = if_logged_in { "Test 1" } - assert_equal "
Test 1
", html + assert_dom_equal "
Test 1
", html html = if_logged_in(:span) { "Test 2" } - assert_equal "Test 2", html + assert_dom_equal "Test 2", html end def test_if_not_logged_in html = if_not_logged_in { "Test 1" } - assert_equal "
Test 1
", html + assert_dom_equal "
Test 1
", html html = if_not_logged_in(:span) { "Test 2" } - assert_equal "Test 2", html + assert_dom_equal "Test 2", html end def test_if_user html = if_user(users(:normal_user)) { "Test 1" } - assert_equal "
Test 1
", html + assert_dom_equal "
Test 1
", html html = if_user(users(:normal_user), :span) { "Test 2" } - assert_equal "Test 2", html + assert_dom_equal "Test 2", html html = if_user(nil) { "Test 3" } assert_nil html @@ -121,24 +125,24 @@ class ApplicationHelperTest < ActionView::TestCase def test_unless_user html = unless_user(users(:normal_user)) { "Test 1" } - assert_equal "
Test 1
", html + assert_dom_equal "
Test 1
", html html = unless_user(users(:normal_user), :span) { "Test 2" } - assert_equal "Test 2", html + assert_dom_equal "Test 2", html html = unless_user(nil) { "Test 3" } - assert_equal "
Test 3
", html + assert_dom_equal "
Test 3
", html html = unless_user(nil, :span) { "Test 4" } - assert_equal "Test 4", html + assert_dom_equal "Test 4", html end def test_if_administrator html = if_administrator { "Test 1" } - assert_equal "
Test 1
", html + assert_dom_equal "
Test 1
", html html = if_administrator(:span) { "Test 2" } - assert_equal "Test 2", html + assert_dom_equal "Test 2", html end def test_richtext_area