summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeterlits Zo <peterlitszo@outlook.com>2021-10-31 19:26:30 +0800
committerPeterlits Zo <peterlitszo@outlook.com>2021-10-31 19:26:30 +0800
commita5e9f91e59e54bf1889a7eb2bfb24539a281e181 (patch)
treebb1a5748d64791ee4370bcc78c715c6d095610f4
parent73cb9ef10ac748141f066ada2f29f0f6daf3eb01 (diff)
downloadpython-json-pointer-a5e9f91e59e54bf1889a7eb2bfb24539a281e181.tar.gz
Add test for get_parts (new method)
-rwxr-xr-xtests.py23
1 files changed, 22 insertions, 1 deletions
diff --git a/tests.py b/tests.py
index 54ca436..409990e 100755
--- a/tests.py
+++ b/tests.py
@@ -70,10 +70,31 @@ class SpecificationTests(unittest.TestCase):
ptr = JsonPointer(path)
self.assertEqual(path, ptr.path)
- parts = ptr.parts
+ parts = ptr.get_parts()
+ self.assertEqual(parts, ptr.parts)
new_ptr = JsonPointer.from_parts(parts)
self.assertEqual(ptr, new_ptr)
+ def test_parts(self):
+ paths = [
+ ("", []),
+ ("/foo", ['foo']),
+ ("/foo/0", ['foo', '0']),
+ ("/", ['']),
+ ("/a~1b", ['a/b']),
+ ("/c%d", ['c%d']),
+ ("/e^f", ['e^f']),
+ ("/g|h", ['g|h']),
+ ("/i\\j", ['i\j']),
+ ("/k\"l", ['k"l']),
+ ("/ ", [' ']),
+ ("/m~0n", ['m~n']),
+ ('/\xee', ['\xee']),
+ ]
+ for path in paths:
+ ptr = JsonPointer(path[0])
+ self.assertEqual(ptr.get_parts(), path[1])
+
class ComparisonTests(unittest.TestCase):