aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2011-02-01 19:17:13 -0200
committerSantiago Pastorino <santiago@wyeworks.com>2011-02-01 19:17:31 -0200
commit86dc5987b23047f8c3345552341c15dd0e5e245d (patch)
treedff93e9a8c83525091f170f0aad40fbd2399a825
parent15ad707852159f405e5f6dc61581cb9dbb2864c7 (diff)
downloadrails-86dc5987b23047f8c3345552341c15dd0e5e245d.tar.gz
rails-86dc5987b23047f8c3345552341c15dd0e5e245d.tar.bz2
rails-86dc5987b23047f8c3345552341c15dd0e5e245d.zip
add test to check class is being escaped in form_class
-rw-r--r--actionpack/test/template/url_helper_test.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/actionpack/test/template/url_helper_test.rb b/actionpack/test/template/url_helper_test.rb
index 42232316e8..2e1661a0ac 100644
--- a/actionpack/test/template/url_helper_test.rb
+++ b/actionpack/test/template/url_helper_test.rb
@@ -54,6 +54,10 @@ class UrlHelperTest < ActiveSupport::TestCase
assert_dom_equal "<form method=\"post\" action=\"http://www.example.com\" class=\"custom-class\"><div><input type=\"submit\" value=\"Hello\" /></div></form>", button_to("Hello", "http://www.example.com", :form_class => 'custom-class')
end
+ def test_button_to_with_form_class_escapes
+ assert_dom_equal "<form method=\"post\" action=\"http://www.example.com\" class=\"&lt;script&gt;evil_js&lt;/script&gt;\"><div><input type=\"submit\" value=\"Hello\" /></div></form>", button_to("Hello", "http://www.example.com", :form_class => '<script>evil_js</script>')
+ end
+
def test_button_to_with_query
assert_dom_equal "<form method=\"post\" action=\"http://www.example.com/q1=v1&amp;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