[489] | 1 |
|
---|
| 2 | from abc import ABC
|
---|
| 3 | from datetime import datetime
|
---|
| 4 | from decimal import Decimal
|
---|
| 5 | import json
|
---|
| 6 | import re
|
---|
| 7 | import sys, traceback
|
---|
| 8 | from typing import Dict, List, Set, Any, Union, Optional
|
---|
| 9 | import unittest
|
---|
| 10 | from uuid import uuid4, UUID
|
---|
| 11 |
|
---|
| 12 | from pyson.Deserializer import Deserializer
|
---|
[570] | 13 | from pyson.Serializer import Serializer
|
---|
| 14 | from pyson.JsonSerialize import JsonSerialize
|
---|
[489] | 15 | from pyson.JsonDeserialize import JsonDeserialize
|
---|
| 16 | from pyson.JsonGetter import JsonGetter
|
---|
| 17 | from pyson.JsonSubTypes import JsonSubTypes
|
---|
| 18 | from pyson.JsonTypeInfo import Id, As
|
---|
| 19 | from pyson.JsonTypeInfo import JsonTypeInfo
|
---|
| 20 | from pyson.JsonValue import JsonValue
|
---|
| 21 | from pyson.ObjectMapper import ObjectMapper
|
---|
[568] | 22 | from pickle import NONE
|
---|
[571] | 23 | from test.MyDeserializer import ValueDeserializer2
|
---|
[489] | 24 |
|
---|
[568] | 25 | # deserializer DROPS FIRST CHAR from string and assumes rest is an int.
|
---|
| 26 | # Then returns Simple(int)
|
---|
[490] | 27 | class ValueDeserializer(Deserializer):
|
---|
| 28 | def __hash__(self):
|
---|
| 29 | return hash(self.geta())
|
---|
| 30 | def deserialize(self, data:object, clas: object)-> object:
|
---|
| 31 | if type(data)!=str:
|
---|
| 32 | raise ValueError("Expected str starting with '$', got "+str(data))
|
---|
| 33 | return Simple(int(data[1:]))
|
---|
[489] | 34 |
|
---|
[570] | 35 | # serializes Simple object, just prefixing its value (as string) with "$"
|
---|
| 36 | class ValueSerializer(Serializer):
|
---|
| 37 | def serialize(self, obj:object)-> object:
|
---|
| 38 | if not isinstance(obj, Simple):
|
---|
| 39 | raise ValueError("Expected Dimple object")
|
---|
| 40 | return "$" + str(obj.geta())
|
---|
[490] | 41 |
|
---|
[570] | 42 | class Basic:
|
---|
| 43 | def __init__(self, v:float):
|
---|
| 44 | self._v=v
|
---|
| 45 | def __eq__(self, other):
|
---|
| 46 | return isinstance(other, self.__class__) and \
|
---|
| 47 | self._v==other._v
|
---|
| 48 | def getV(self):
|
---|
| 49 | return self._v
|
---|
| 50 | def __repr__(self):
|
---|
| 51 | return "Basic:"+str(self._v)
|
---|
| 52 | def __hash__(self):
|
---|
| 53 | return hash(self._v)
|
---|
| 54 |
|
---|
[571] | 55 | @JsonDeserialize(ValueDeserializer)
|
---|
[572] | 56 | @JsonSerialize(ValueSerializer)
|
---|
[489] | 57 | class Simple:
|
---|
| 58 | def __init__(self, a:int):
|
---|
| 59 | self._a=a
|
---|
| 60 | def geta(self)->int:
|
---|
| 61 | return self._a
|
---|
| 62 | def __eq__(self, other):
|
---|
| 63 | return isinstance(other, self.__class__) and \
|
---|
| 64 | self._a==other._a
|
---|
[570] | 65 | def __repr__(self):
|
---|
| 66 | return "Simple:"+str(self._a)
|
---|
| 67 | def __hash__(self):
|
---|
| 68 | return hash(self._a)
|
---|
[489] | 69 |
|
---|
| 70 |
|
---|
| 71 |
|
---|
[571] | 72 | @JsonDeserialize(ValueDeserializer2)
|
---|
[490] | 73 | class Simple2:
|
---|
| 74 | def __init__(self, a:int):
|
---|
| 75 | self._a=a
|
---|
| 76 | def geta(self)->int:
|
---|
| 77 | return self._a
|
---|
| 78 | def __eq__(self, other):
|
---|
| 79 | return isinstance(other, self.__class__) and \
|
---|
| 80 | self._a==other._a
|
---|
[570] | 81 | def __repr__(self):
|
---|
[490] | 82 | return self._name+","+str(self._a)
|
---|
[568] | 83 |
|
---|
| 84 | #None cancels out the existing deserializer.
|
---|
| 85 | # parsing with str should now fail.
|
---|
| 86 | @JsonDeserialize(None)
|
---|
| 87 | class Simple3 (Simple):
|
---|
| 88 | pass
|
---|
[489] | 89 |
|
---|
| 90 |
|
---|
[570] | 91 | class MyList:
|
---|
| 92 | def __init__(self, data: List[Simple] ):
|
---|
| 93 | self.data=data
|
---|
| 94 | def getData(self)->List[Simple]:
|
---|
| 95 | return self.data
|
---|
| 96 |
|
---|
| 97 | class BasicDict:
|
---|
| 98 | def __init__(self, data: Dict[Basic,Basic] ):
|
---|
| 99 | self.data=data
|
---|
| 100 | def getData(self)->Dict[Basic,Basic]:
|
---|
| 101 | return self.data
|
---|
| 102 | def __repr__(self):
|
---|
| 103 | return "BasicDict:"+str(self.data)
|
---|
[568] | 104 | def __eq__(self, other):
|
---|
| 105 | return isinstance(other, self.__class__) and \
|
---|
[570] | 106 | self.data==other.data
|
---|
[490] | 107 |
|
---|
[570] | 108 |
|
---|
| 109 | class SimpleDict:
|
---|
| 110 | def __init__(self, data: Dict[Simple,Simple] ):
|
---|
| 111 | self.data=data
|
---|
| 112 | def getData(self)->Dict[Simple,Simple]:
|
---|
| 113 | return self.data
|
---|
| 114 | def __eq__(self, other):
|
---|
| 115 | return isinstance(other, self.__class__) and \
|
---|
| 116 | self.data==other.data
|
---|
| 117 | def __repr__(self):
|
---|
| 118 | return "SimpleDict:"+str(self.data)
|
---|
[490] | 119 |
|
---|
[570] | 120 |
|
---|
[489] | 121 | class DeserializerTest(unittest.TestCase):
|
---|
| 122 | '''
|
---|
| 123 | Test a lot of back-and-forth cases.
|
---|
| 124 | FIXME Can we make this a parameterized test?
|
---|
| 125 | '''
|
---|
| 126 | pyson=ObjectMapper()
|
---|
| 127 |
|
---|
| 128 | def testDeserialize(self):
|
---|
| 129 | objson= "$12"
|
---|
[490] | 130 | self.assertEqual(Simple(12), self.pyson.parse(objson, Simple))
|
---|
[489] | 131 |
|
---|
[490] | 132 | def testExternalDeserialize2(self):
|
---|
| 133 | objson= "$13"
|
---|
| 134 | self.assertEqual(13, self.pyson.parse(objson, Simple2))
|
---|
[568] | 135 |
|
---|
| 136 |
|
---|
| 137 | def testExternalDeserialize3(self):
|
---|
| 138 | objson= "$13"
|
---|
[569] | 139 | self.assertRaises(ValueError, lambda:self.pyson.parse(objson, Simple3))
|
---|
[568] | 140 |
|
---|
[570] | 141 | def testDeserializeMyList(self):
|
---|
| 142 | print(self.pyson.toJson(MyList([12,13])))
|
---|
| 143 |
|
---|
| 144 | # the json we provide is NOT the proper json but a STRING.
|
---|
| 145 | # This triggers a fallback mechanism that tries to parse the string as json.
|
---|
| 146 | objson={"data": ["$12", "$13"]}
|
---|
| 147 | res = self.pyson.parse(objson, MyList)
|
---|
| 148 | print(res)
|
---|
| 149 | self.assertEqual([Simple(12),Simple(13)], res.data)
|
---|
| 150 |
|
---|
| 151 |
|
---|
| 152 | def testSerializeBasicDict(self):
|
---|
| 153 | '''
|
---|
| 154 | Basic object keys. Special (de)serializer should kick in #190
|
---|
| 155 | '''
|
---|
| 156 | d= BasicDict( { Basic(1.):Basic(2.), Basic(3.): Basic(4.) } )
|
---|
| 157 | objson={"data": {"{\"v\": 1.0}": {"v": 2.0}, "{\"v\": 3.0}": {"v": 4.0}}}
|
---|
| 158 | dump=json.dumps(self.pyson.toJson(d));
|
---|
| 159 | print(dump)
|
---|
| 160 | # self.assertEqual(objson, dump);
|
---|
| 161 | res=self.pyson.parse(objson, BasicDict)
|
---|
| 162 | print("res="+str(res))
|
---|
| 163 | self.assertEqual(d, res)
|
---|
| 164 |
|
---|
| 165 |
|
---|
| 166 | def testSerializeSimpleDictCustomSerializer(self):
|
---|
| 167 | d= SimpleDict( { Simple(1):Simple(2), Simple(3): Simple(4) } )
|
---|
| 168 |
|
---|
| 169 | # The keys need extra quotes, they are deserialied by
|
---|
| 170 | # our special deserializer that parses the string as json,
|
---|
| 171 | # and json requires double quotes around its strings.
|
---|
| 172 | objson = {"data": {'"$1"': "$2", '"$3"': "$4"}}
|
---|
| 173 |
|
---|
| 174 | obj=self.pyson.toJson(d)
|
---|
| 175 | print(json.dumps(obj))
|
---|
| 176 | self.assertEqual(objson, obj)
|
---|
| 177 |
|
---|
| 178 | res = self.pyson.parse(objson, SimpleDict)
|
---|
| 179 | print("res="+str(res))
|
---|
| 180 | self.assertEqual(d, res)
|
---|
| 181 |
|
---|