2017-07-23 11:36:41 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-08-06 12:50:17 -04: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
|
|
|
|
2015-03-14 15:37:42 -04:00
|
|
|
attr_accessor :output_buffer
|
2017-09-26 13:27:53 -04:00
|
|
|
attr_reader :request
|
2009-08-15 01:32:40 -04:00
|
|
|
|
2014-06-14 04:12:44 -04:00
|
|
|
setup do
|
|
|
|
@old_escape_html_entities_in_json = ActiveSupport.escape_html_entities_in_json
|
2016-10-28 23:05:58 -04:00
|
|
|
ActiveSupport.escape_html_entities_in_json = true
|
2008-07-15 21:42:22 -04:00
|
|
|
@template = self
|
2017-09-26 13:27:53 -04:00
|
|
|
@request = Class.new do
|
|
|
|
def send_early_hints(links) end
|
|
|
|
end.new
|
2008-07-15 21:42:22 -04:00
|
|
|
end
|
2010-03-16 23:06:16 -04:00
|
|
|
|
2010-01-10 21:25:17 -05:00
|
|
|
def teardown
|
2014-06-14 04:12:44 -04:00
|
|
|
ActiveSupport.escape_html_entities_in_json = @old_escape_html_entities_in_json
|
2010-01-10 21:25:17 -05:00
|
|
|
end
|
2008-07-15 15:41:38 -04:00
|
|
|
|
2005-03-26 09:03:55 -05:00
|
|
|
def test_escape_javascript
|
2016-08-06 12:50:17 -04:00
|
|
|
assert_equal "", escape_javascript(nil)
|
2018-08-09 05:26:46 -04:00
|
|
|
assert_equal "123", escape_javascript(123)
|
|
|
|
assert_equal "en", escape_javascript(:en)
|
|
|
|
assert_equal "false", escape_javascript(false)
|
|
|
|
assert_equal "true", escape_javascript(true)
|
2005-03-26 09:03:55 -05:00
|
|
|
assert_equal %(This \\"thing\\" is really\\n netos\\'), escape_javascript(%(This "thing" is really\n netos'))
|
2016-10-28 23:05:58 -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))
|
2018-05-17 04:32:27 -04:00
|
|
|
assert_equal %(unicode 
 newline), escape_javascript((+%(unicode \342\200\250 newline)).force_encoding(Encoding::UTF_8).encode!)
|
|
|
|
assert_equal %(unicode 
 newline), escape_javascript((+%(unicode \342\200\251 newline)).force_encoding(Encoding::UTF_8).encode!)
|
2012-02-22 11:11:03 -05:00
|
|
|
|
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
|
|
|
|
2020-03-12 13:25:48 -04:00
|
|
|
def test_escape_backtick
|
|
|
|
assert_equal "\\`", escape_javascript("`")
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_escape_dollar_sign
|
|
|
|
assert_equal "\\$", escape_javascript("$")
|
|
|
|
end
|
|
|
|
|
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
|
2016-08-06 12:50:17 -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
|
|
|
|
2016-08-06 12:50:17 -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
|
|
|
|
|
2019-04-01 08:29:37 -04:00
|
|
|
# Setting the :extname option will control what extension (if any) is appended to the URL for assets
|
2013-08-01 14:10:36 -04:00
|
|
|
def test_javascript_include_tag
|
2016-08-06 12:50:17 -04:00
|
|
|
assert_dom_equal "<script src='/foo.js'></script>", javascript_include_tag("/foo")
|
2016-10-28 23:05:58 -04:00
|
|
|
assert_dom_equal "<script src='/foo'></script>", javascript_include_tag("/foo", extname: false)
|
|
|
|
assert_dom_equal "<script src='/foo.bar'></script>", javascript_include_tag("/foo", extname: ".bar")
|
2013-08-01 14:10:36 -04:00
|
|
|
end
|
|
|
|
|
2007-06-08 18:20:18 -04:00
|
|
|
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>",
|
2016-08-06 13:36:34 -04:00
|
|
|
javascript_tag("alert('hello')", id: "the_js_tag")
|
2007-06-08 18:20:18 -04:00
|
|
|
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
|