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-12-24 07:57:54 -05:00
|
|
|
assert_equal %(unicode 
 newline), escape_javascript(%(unicode \342\200\250 newline).force_encoding('UTF-8').encode!)
|
2012-02-22 11:11:03 -05:00
|
|
|
assert_equal %(unicode 
 newline), escape_javascript(%(unicode \342\200\251 newline).force_encoding('UTF-8').encode!)
|
|
|
|
|
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
|
|
|
|
2011-06-08 10:46:15 -04:00
|
|
|
def test_escape_javascript_with_safebuffer
|
|
|
|
given = %('quoted' "double-quoted" new-line:\n </closed>)
|
|
|
|
expect = %(\\'quoted\\' \\"double-quoted\\" new-line:\\n <\\/closed>)
|
|
|
|
assert_equal expect, escape_javascript(given)
|
|
|
|
assert_equal expect, escape_javascript(ActiveSupport::SafeBuffer.new(given))
|
2011-06-09 14:00:10 -04:00
|
|
|
assert_instance_of String, escape_javascript(given)
|
|
|
|
assert_instance_of ActiveSupport::SafeBuffer, escape_javascript(ActiveSupport::SafeBuffer.new(given))
|
2011-06-08 10:46:15 -04:00
|
|
|
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
|
|
|
|
2012-04-05 07:32:37 -04:00
|
|
|
assert_dom_equal "<script>\n//<![CDATA[\nalert('hello')\n//]]>\n</script>",
|
2007-06-08 18:20:18 -04:00
|
|
|
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
|
2012-04-05 07:32:37 -04:00
|
|
|
assert_dom_equal "<script id=\"the_js_tag\">\n//<![CDATA[\nalert('hello')\n//]]>\n</script>",
|
2007-06-08 18:20:18 -04:00
|
|
|
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
|