2008-01-05 08:32:06 -05:00
|
|
|
require 'abstract_unit'
|
2005-03-26 09:03:55 -05:00
|
|
|
|
2008-04-19 14:06:57 -04:00
|
|
|
class JavaScriptHelperTest < ActionView::TestCase
|
|
|
|
tests ActionView::Helpers::JavaScriptHelper
|
2007-06-12 21:20:55 -04:00
|
|
|
|
2009-05-21 19:35:40 -04:00
|
|
|
def _evaluate_assigns_and_ivars() end
|
|
|
|
|
2009-01-22 17:18:10 -05:00
|
|
|
attr_accessor :formats, :output_buffer
|
2008-07-15 21:42:22 -04:00
|
|
|
|
2010-03-07 13:41:58 -05:00
|
|
|
def update_details(details)
|
|
|
|
@details = details
|
2010-03-01 17:37:05 -05:00
|
|
|
yield if block_given?
|
2009-08-15 01:32:40 -04:00
|
|
|
end
|
|
|
|
|
2008-07-15 21:42:22 -04:00
|
|
|
def setup
|
2009-04-08 20:33:06 -04:00
|
|
|
super
|
2010-01-10 21:25:17 -05:00
|
|
|
ActiveSupport.escape_html_entities_in_json = true
|
2008-07-15 21:42:22 -04:00
|
|
|
@template = self
|
|
|
|
end
|
2010-03-16 23:06:16 -04:00
|
|
|
|
2010-01-10 21:25:17 -05:00
|
|
|
def teardown
|
|
|
|
ActiveSupport.escape_html_entities_in_json = false
|
|
|
|
end
|
2008-07-15 15:41:38 -04:00
|
|
|
|
2005-03-26 09:03:55 -05:00
|
|
|
def test_escape_javascript
|
2007-06-12 21:20:55 -04:00
|
|
|
assert_equal '', escape_javascript(nil)
|
2005-03-26 09:03:55 -05:00
|
|
|
assert_equal %(This \\"thing\\" is really\\n netos\\'), escape_javascript(%(This "thing" is really\n netos'))
|
2006-10-08 20:34:43 -04:00
|
|
|
assert_equal %(backslash\\\\test), escape_javascript( %(backslash\\test) )
|
2007-09-22 14:31:44 -04:00
|
|
|
assert_equal %(dont <\\/close> tags), escape_javascript(%(dont </close> tags))
|
2011-03-27 14:20:54 -04:00
|
|
|
assert_equal %(dont <\\/close> tags), j(%(dont </close> tags))
|
2005-03-26 09:03:55 -05:00
|
|
|
end
|
2007-06-12 21:20:55 -04:00
|
|
|
|
2005-12-30 23:31:10 -05:00
|
|
|
def test_button_to_function
|
2007-06-12 21:20:55 -04:00
|
|
|
assert_dom_equal %(<input type="button" onclick="alert('Hello world!');" value="Greeting" />),
|
2005-12-30 23:31:10 -05:00
|
|
|
button_to_function("Greeting", "alert('Hello world!')")
|
|
|
|
end
|
2006-04-19 14:08:15 -04:00
|
|
|
|
2007-06-12 21:20:55 -04:00
|
|
|
def test_button_to_function_with_onclick
|
|
|
|
assert_dom_equal "<input onclick=\"alert('Goodbye World :('); alert('Hello world!');\" type=\"button\" value=\"Greeting\" />",
|
|
|
|
button_to_function("Greeting", "alert('Hello world!')", :onclick => "alert('Goodbye World :(')")
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_button_to_function_without_function
|
|
|
|
assert_dom_equal "<input onclick=\";\" type=\"button\" value=\"Greeting\" />",
|
|
|
|
button_to_function("Greeting")
|
|
|
|
end
|
|
|
|
|
2010-03-16 23:06:16 -04:00
|
|
|
def test_link_to_function
|
|
|
|
assert_dom_equal %(<a href="#" onclick="alert('Hello world!'); return false;">Greeting</a>),
|
|
|
|
link_to_function("Greeting", "alert('Hello world!')")
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_link_to_function_with_existing_onclick
|
|
|
|
assert_dom_equal %(<a href="#" onclick="confirm('Sanity!'); alert('Hello world!'); return false;">Greeting</a>),
|
|
|
|
link_to_function("Greeting", "alert('Hello world!')", :onclick => "confirm('Sanity!')")
|
|
|
|
end
|
|
|
|
|
2011-04-03 16:28:56 -04:00
|
|
|
def test_function_with_href
|
2010-03-16 23:06:16 -04:00
|
|
|
assert_dom_equal %(<a href="http://example.com/" onclick="alert('Hello world!'); return false;">Greeting</a>),
|
|
|
|
link_to_function("Greeting", "alert('Hello world!')", :href => 'http://example.com/')
|
|
|
|
end
|
|
|
|
|
2007-06-08 18:20:18 -04:00
|
|
|
def test_javascript_tag
|
2008-06-08 23:05:39 -04:00
|
|
|
self.output_buffer = 'foo'
|
2008-06-06 20:59:41 -04:00
|
|
|
|
2007-06-08 18:20:18 -04:00
|
|
|
assert_dom_equal "<script type=\"text/javascript\">\n//<![CDATA[\nalert('hello')\n//]]>\n</script>",
|
|
|
|
javascript_tag("alert('hello')")
|
2008-06-06 20:59:41 -04:00
|
|
|
|
2008-06-08 23:05:39 -04:00
|
|
|
assert_equal 'foo', output_buffer, 'javascript_tag without a block should not concat to output_buffer'
|
2007-06-08 18:20:18 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_javascript_tag_with_options
|
|
|
|
assert_dom_equal "<script id=\"the_js_tag\" type=\"text/javascript\">\n//<![CDATA[\nalert('hello')\n//]]>\n</script>",
|
|
|
|
javascript_tag("alert('hello')", :id => "the_js_tag")
|
|
|
|
end
|
2007-06-12 21:20:55 -04:00
|
|
|
|
|
|
|
def test_javascript_cdata_section
|
|
|
|
assert_dom_equal "\n//<![CDATA[\nalert('hello')\n//]]>\n", javascript_cdata_section("alert('hello')")
|
|
|
|
end
|
2005-03-26 09:03:55 -05:00
|
|
|
end
|