本文整理汇总了Python中moderation.fields.SerializedObjectField类的典型用法代码示例。如果您正苦于以下问题:Python SerializedObjectField类的具体用法?Python SerializedObjectField怎么用?Python SerializedObjectField使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了SerializedObjectField类的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_serialize_of_object
def test_serialize_of_object(self):
"""Test if object is propertly serialized to json"""
json_field = SerializedObjectField()
self.assertEqual(json_field._serialize(self.profile),
'[{"pk": 1, "model": "test_app.userprofile", "fields": '\
'{"url": "http://www.google.com", "user": 1, '\
'"description": "Profile description"}}]',
)
示例2: test_deserialize
def test_deserialize(self):
value = '[{"pk": 1, "model": "test_app1.userprofile", "fields": '\
'{"url": "http://www.google.com", "user": 1, '\
'"description": "Profile description"}}]'
json_field = SerializedObjectField()
object = json_field._deserialize(value)
self.assertEqual(repr(object),
'<UserProfile: moderator - http://www.google.com>')
self.assertTrue(isinstance(object, UserProfile))
示例3: test_deserialize_proxy_model
def test_deserialize_proxy_model(self):
"Correctly restore a proxy model."
value = '[{"pk": 2, "model": "tests.proxyprofile", "fields": '\
'{"url": "http://example.com", "user": 2, '\
'"description": "I\'m a proxy."}}]'
json_field = SerializedObjectField()
profile = json_field._deserialize(value)
self.assertTrue(isinstance(profile, ProxyProfile))
self.assertEqual(profile.url, "http://example.com")
self.assertEqual(profile.description, "I\'m a proxy.")
self.assertEqual(profile.user_id, 2)
示例4: test_serialize_of_object
def test_serialize_of_object(self):
"""Test if object is properly serialized to json"""
json_field = SerializedObjectField()
serialized_str = json_field._serialize(self.profile)
self.assertIn('"pk": 1', serialized_str)
self.assertIn('"model": "tests.userprofile"', serialized_str)
self.assertIn('"fields": {', serialized_str)
self.assertIn('"url": "http://www.google.com"', serialized_str)
self.assertIn('"user": 1', serialized_str)
self.assertIn('"description": "Old description"', serialized_str)
示例5: test_deserialize_with_inheritance
def test_deserialize_with_inheritance(self):
value = '[{"pk": 2, "model": "test_app1.superuserprofile",'\
' "fields": {"super_power": "invisibility"}}, '\
'{"pk": 2, "model": "test_app1.userprofile", "fields":'\
' {"url": "http://www.test.com", "user": 2,'\
' "description": "Profile for new super user"}}]'
json_field = SerializedObjectField()
object = json_field._deserialize(value)
self.assertTrue(isinstance(object, SuperUserProfile))
self.assertEqual(repr(object),
'<SuperUserProfile: user1 - http://www.test.com - invisibility>')
示例6: test_serialize_proxy_model
def test_serialize_proxy_model(self):
"Handle proxy models in the serialization."
profile = ProxyProfile(description="I'm a proxy.",
url="http://example.com",
user=User.objects.get(username='user1'))
profile.save()
json_field = SerializedObjectField()
self.assertEqual(
json_field._serialize(profile),
'[{"pk": 2, "model": "tests.proxyprofile", "fields": '
'{"url": "http://example.com", "user": 2, '
'"description": "I\'m a proxy."}}]',)
示例7: test_serialize_proxy_model
def test_serialize_proxy_model(self):
"Handle proxy models in the serialization."
profile = ProxyProfile(description="I'm a proxy.",
url="http://example.com",
user=User.objects.get(username='user1'))
profile.save()
json_field = SerializedObjectField()
serialized_str = json_field._serialize(profile)
self.assertIn('"pk": 2', serialized_str)
self.assertIn('"model": "tests.proxyprofile"', serialized_str)
self.assertIn('"url": "http://example.com"', serialized_str)
self.assertIn('"user": 2', serialized_str)
self.assertIn('"description": "I\'m a proxy."', serialized_str)
self.assertIn('"fields": {', serialized_str)
示例8: test_serialize_of_many_objects
def test_serialize_of_many_objects(self):
"""Test if object is propertly serialized to json"""
profile = UserProfile(description='Profile for new user',
url='http://www.test.com',
user=User.objects.get(username='user1'))
profile.save()
json_field = SerializedObjectField()
self.assertEqual(json_field._serialize(UserProfile.objects.all()),
'[{"pk": 1, "model": "test_app.userprofile", '\
'"fields": {"url": "http://www.google.com",'\
' "user": 1, "description": "Profile description"}},'\
' {"pk": 2, "model": "test_app.userprofile", "fields":'\
' {"url": "http://www.test.com", "user": 2, '\
'"description": "Profile for new user"}}]')
示例9: test_serialize_with_inheritance
def test_serialize_with_inheritance(self):
"""Test if object is properly serialized to json"""
profile = SuperUserProfile(description='Profile for new super user',
url='http://www.test.com',
user=User.objects.get(username='user1'),
super_power='invisibility')
profile.save()
json_field = SerializedObjectField()
self.assertEqual(json_field._serialize(profile),
'[{"pk": 2, "model": "test_app1.superuserprofile",'\
' "fields": {"super_power": "invisibility"}}, '\
'{"pk": 2, "model": "test_app1.userprofile", "fields":'\
' {"url": "http://www.test.com", "user": 2,'\
' "description": "Profile for new super user"}}]')
示例10: test_deserialize_many_objects
def test_deserialize_many_objects(self):
value = '[{"pk": 1, "model": "test_app.userprofile", '\
'"fields": {"url": "http://www.google.com",'\
' "user": 1, "description": "Profile description"}},'\
' {"pk": 2, "model": "test_app.userprofile", "fields":'\
' {"url": "http://www.yahoo.com", "user": 2, '\
'"description": "Profile description 2"}}]'
json_field = SerializedObjectField()
objects = json_field._deserialize(value)
self.assertTrue(isinstance(objects, list))
self.assertTrue(isinstance(objects[0], UserProfile))
self.assertEqual(repr(objects[0]),
'<UserProfile: moderator - http://www.google.com>')
self.assertTrue(isinstance(objects[1], UserProfile))
self.assertEqual(repr(objects[1]),
'<UserProfile: user1 - http://www.yahoo.com>')
示例11: test_serialize_with_inheritance
def test_serialize_with_inheritance(self):
"""Test if object is properly serialized to json"""
profile = SuperUserProfile(description='Profile for new super user',
url='http://www.test.com',
user=User.objects.get(username='user1'),
super_power='invisibility')
profile.save()
json_field = SerializedObjectField()
serialized_str = json_field._serialize(profile)
self.assertIn('"pk": 2', serialized_str)
self.assertIn('"model": "tests.superuserprofile"', serialized_str)
self.assertIn('"fields": {"super_power": "invisibility"}',
serialized_str)
self.assertIn('"pk": 2', serialized_str)
self.assertIn('"model": "tests.userprofile"', serialized_str)
self.assertIn('"url": "http://www.test.com"', serialized_str)
self.assertIn('"user": 2', serialized_str)
self.assertIn('"description": "Profile for new super user"',
serialized_str)
self.assertIn('"fields": {', serialized_str)