File: escape_test.rb

package info (click to toggle)
ruby-escape-utils 1.2.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 388 kB
  • sloc: ansic: 1,742; ruby: 1,079; sh: 7; makefile: 4
file content (42 lines) | stat: -rw-r--r-- 1,311 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
require File.expand_path("../../helper", __FILE__)

class JavascriptEscapeTest < Minitest::Test
  def test_returns_empty_string_if_nil_passed
    assert_equal "", EscapeUtils.escape_javascript(nil)
  end

  def test_quotes_and_newlines
    assert_equal %(This \\"thing\\" is really\\n netos\\n\\n\\'), EscapeUtils.escape_javascript(%(This "thing" is really\n netos\r\n\n'))
  end

  def test_backslashes
    assert_equal %(backslash\\\\test), EscapeUtils.escape_javascript(%(backslash\\test))
  end

  def test_closed_html_tags
    assert_equal %(keep <open>, but dont <\\/close> tags), EscapeUtils.escape_javascript(%(keep <open>, but dont </close> tags))
  end

  if RUBY_VERSION =~ /^1.9/
    def test_input_must_be_utf8_or_ascii
      str = "dont </close> tags"

      str.force_encoding 'ISO-8859-1'
      assert_raises Encoding::CompatibilityError do
        EscapeUtils.escape_javascript(str)
      end

      str.force_encoding 'UTF-8'
      begin
        EscapeUtils.escape_javascript(str)
      rescue Encoding::CompatibilityError => e
        assert_nil e, "#{e.class.name} raised, expected not to"
      end
    end

    def test_return_value_is_tagged_as_utf8
      str = "dont </close> tags"
      assert_equal Encoding.find('UTF-8'), EscapeUtils.escape_javascript(str).encoding
    end
  end
end