summaryrefslogtreecommitdiff
path: root/test/uri/test_common.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/uri/test_common.rb')
-rw-r--r--test/uri/test_common.rb8
1 files changed, 7 insertions, 1 deletions
diff --git a/test/uri/test_common.rb b/test/uri/test_common.rb
index 9f39e843d3..5e575e21a6 100644
--- a/test/uri/test_common.rb
+++ b/test/uri/test_common.rb
@@ -86,7 +86,13 @@ class TestCommon < Test::Unit::TestCase
def test_decode_www_form
assert_equal([%w[a 1], %w[a 2]], URI.decode_www_form("a=1&a=2"))
assert_equal([%w[a 1], ["\u3042", "\u6F22"]],
- URI.decode_www_form("a=1&%E3%81%82=%E6%BC%A2"))
+ URI.decode_www_form("a=1;%E3%81%82=%E6%BC%A2"))
+ assert_equal([%w[?a 1], %w[a 2]], URI.decode_www_form("?a=1&a=2"))
+ assert_raise(ArgumentError){URI.decode_www_form("%=1")}
+ assert_raise(ArgumentError){URI.decode_www_form("a=%")}
+ assert_raise(ArgumentError){URI.decode_www_form("a=1&%=2")}
+ assert_raise(ArgumentError){URI.decode_www_form("a=1&b=%")}
+ assert_raise(ArgumentError){URI.decode_www_form("a&b")}
end
end