summaryrefslogtreecommitdiff
path: root/openid/test/test_urinorm.py
diff options
context:
space:
mode:
authorVlastimil Zíma <vlastimil.zima@nic.cz>2020-07-02 13:36:19 +0200
committerVlastimil Zíma <vlastimil.zima@nic.cz>2020-07-02 14:03:09 +0200
commitaba0333707d56102096e55f3caaddc56b3390528 (patch)
tree7120391e2a2baa057f71cd0158e159e8a07ed1d7 /openid/test/test_urinorm.py
parent4b0cbbf37ee2f7a672d9984c175334ed8de5e4d0 (diff)
downloadopenid-aba0333707d56102096e55f3caaddc56b3390528.tar.gz
Fix urinorm - return plain sub delimiters in path, refs #41
Diffstat (limited to 'openid/test/test_urinorm.py')
-rw-r--r--openid/test/test_urinorm.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/openid/test/test_urinorm.py b/openid/test/test_urinorm.py
index 2c7aa0c..53debfe 100644
--- a/openid/test/test_urinorm.py
+++ b/openid/test/test_urinorm.py
@@ -71,11 +71,17 @@ class UrinormTest(unittest.TestCase):
self.assertEqual(urinorm('http://example.com/Λ'), 'http://example.com/%CE%9B')
def test_path_capitalize_percent_encoding(self):
- self.assertEqual(urinorm('http://example.com/foo%2cbar'), 'http://example.com/foo%2Cbar')
+ self.assertEqual(urinorm('http://example.com/foo%3abar'), 'http://example.com/foo%3Abar')
def test_path_percent_decode_unreserved(self):
self.assertEqual(urinorm('http://example.com/foo%2Dbar%2dbaz'), 'http://example.com/foo-bar-baz')
+ def test_path_keep_sub_delims(self):
+ self.assertEqual(urinorm('http://example.com/foo+!bar'), 'http://example.com/foo+!bar')
+
+ def test_path_percent_decode_sub_delims(self):
+ self.assertEqual(urinorm('http://example.com/foo%2B%21bar'), 'http://example.com/foo+!bar')
+
def test_illegal_characters(self):
six.assertRaisesRegex(self, ValueError, 'Illegal characters in URI', urinorm, 'http://<illegal>.com/')