本文整理汇总了Python中jsonpickle._samples.Thing.child方法的典型用法代码示例。如果您正苦于以下问题:Python Thing.child方法的具体用法?Python Thing.child怎么用?Python Thing.child使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类jsonpickle._samples.Thing
的用法示例。
在下文中一共展示了Thing.child方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_recursive
# 需要导入模块: from jsonpickle._samples import Thing [as 别名]
# 或者: from jsonpickle._samples.Thing import child [as 别名]
def test_recursive(self):
"""create a recursive structure and test that we can handle it
"""
parent = Thing('parent')
child = Thing('child')
child.sibling = Thing('sibling')
parent.self = parent
parent.child = child
parent.child.twin = child
parent.child.parent = parent
parent.child.sibling.parent = parent
cloned = jsonpickle.decode(jsonpickle.encode(parent))
self.assertEqual(parent.name,
cloned.name)
self.assertEqual(parent.child.name,
cloned.child.name)
self.assertEqual(parent.child.sibling.name,
cloned.child.sibling.name)
self.assertEqual(cloned,
cloned.child.parent)
self.assertEqual(cloned,
cloned.child.sibling.parent)
self.assertEqual(cloned,
cloned.child.twin.parent)
self.assertEqual(cloned.child,
cloned.child.twin)
示例2: test_list_item_reference
# 需要导入模块: from jsonpickle._samples import Thing [as 别名]
# 或者: from jsonpickle._samples.Thing import child [as 别名]
def test_list_item_reference(self):
thing = Thing('parent')
thing.child = Thing('child')
thing.child.refs = [thing]
encoded = jsonpickle.encode(thing)
decoded = jsonpickle.decode(encoded)
self.assertEqual(id(decoded.child.refs[0]), id(decoded))
示例3: test_class
# 需要导入模块: from jsonpickle._samples import Thing [as 别名]
# 或者: from jsonpickle._samples.Thing import child [as 别名]
def test_class(self):
inst = Thing('test name')
inst.child = Thing('child name')
flattened = self.pickler.flatten(inst)
self.assertEqual('test name', flattened['name'])
child = flattened['child']
self.assertEqual('child name', child['name'])
inflated = self.unpickler.restore(flattened)
self.assertEqual('test name', inflated.name)
self.assertTrue(type(inflated) is Thing)
self.assertEqual('child name', inflated.child.name)
self.assertTrue(type(inflated.child) is Thing)
示例4: test_references_in_number_keyed_dict
# 需要导入模块: from jsonpickle._samples import Thing [as 别名]
# 或者: from jsonpickle._samples.Thing import child [as 别名]
def test_references_in_number_keyed_dict(self):
"""
Make sure a dictionary with numbers as keys and objects as values
can make the round trip.
Because JSON must coerce integers to strings in dict keys, the sort
order may have a tendency to change between pickling and unpickling,
and this could affect the object references.
"""
one = Thing("one")
two = Thing("two")
twelve = Thing("twelve")
two.child = twelve
obj = {1: one, 2: two, 12: twelve}
self.assertNotEqual(list(sorted(obj.keys())), list(map(int, sorted(map(str, obj.keys())))))
flattened = self.pickler.flatten(obj)
inflated = self.unpickler.restore(flattened)
self.assertEqual(len(inflated), 3)
self.assertEqual(inflated["12"].name, "twelve")