summaryrefslogtreecommitdiff
path: root/tool/test/webrick/test_htmlutils.rb
diff options
context:
space:
mode:
Diffstat (limited to 'tool/test/webrick/test_htmlutils.rb')
-rw-r--r--tool/test/webrick/test_htmlutils.rb21
1 files changed, 21 insertions, 0 deletions
diff --git a/tool/test/webrick/test_htmlutils.rb b/tool/test/webrick/test_htmlutils.rb
new file mode 100644
index 0000000000..ae1b8efa95
--- /dev/null
+++ b/tool/test/webrick/test_htmlutils.rb
@@ -0,0 +1,21 @@
+# frozen_string_literal: false
+require "test/unit"
+require "webrick/htmlutils"
+
+class TestWEBrickHTMLUtils < Test::Unit::TestCase
+ include WEBrick::HTMLUtils
+
+ def test_escape
+ assert_equal("foo", escape("foo"))
+ assert_equal("foo bar", escape("foo bar"))
+ assert_equal("foo&amp;bar", escape("foo&bar"))
+ assert_equal("foo&quot;bar", escape("foo\"bar"))
+ assert_equal("foo&gt;bar", escape("foo>bar"))
+ assert_equal("foo&lt;bar", escape("foo<bar"))
+ assert_equal("\u{3053 3093 306B 3061 306F}", escape("\u{3053 3093 306B 3061 306F}"))
+ bug8425 = '[Bug #8425] [ruby-core:55052]'
+ assert_nothing_raised(ArgumentError, Encoding::CompatibilityError, bug8425) {
+ assert_equal("\u{3053 3093 306B}\xff&lt;", escape("\u{3053 3093 306B}\xff<"))
+ }
+ end
+end