2012-11-22 03:20:49 +04:00
|
|
|
from __future__ import unicode_literals
|
2013-01-25 17:58:19 +04:00
|
|
|
from django.contrib.contenttypes.models import ContentType
|
|
|
|
from django.contrib.contenttypes.generic import GenericRelation, GenericForeignKey
|
|
|
|
from django.db import models
|
2012-10-05 01:07:24 +04:00
|
|
|
from django.test import TestCase
|
|
|
|
from rest_framework import serializers
|
2014-02-18 14:42:17 +04:00
|
|
|
from rest_framework.compat import python_2_unicode_compatible
|
2014-01-30 17:27:46 +04:00
|
|
|
|
2013-01-25 17:58:19 +04:00
|
|
|
|
2014-01-30 17:27:46 +04:00
|
|
|
@python_2_unicode_compatible
|
2013-01-25 17:58:19 +04:00
|
|
|
class Tag(models.Model):
|
|
|
|
"""
|
|
|
|
Tags have a descriptive slug, and are attached to an arbitrary object.
|
|
|
|
"""
|
|
|
|
tag = models.SlugField()
|
|
|
|
content_type = models.ForeignKey(ContentType)
|
|
|
|
object_id = models.PositiveIntegerField()
|
2013-01-25 18:36:27 +04:00
|
|
|
tagged_item = GenericForeignKey('content_type', 'object_id')
|
2013-01-25 17:58:19 +04:00
|
|
|
|
2014-01-30 17:27:46 +04:00
|
|
|
def __str__(self):
|
2013-01-25 17:58:19 +04:00
|
|
|
return self.tag
|
|
|
|
|
|
|
|
|
2014-01-30 17:27:46 +04:00
|
|
|
@python_2_unicode_compatible
|
2013-01-25 17:58:19 +04:00
|
|
|
class Bookmark(models.Model):
|
|
|
|
"""
|
|
|
|
A URL bookmark that may have multiple tags attached.
|
|
|
|
"""
|
|
|
|
url = models.URLField()
|
|
|
|
tags = GenericRelation(Tag)
|
2012-10-05 01:07:24 +04:00
|
|
|
|
2014-01-30 17:27:46 +04:00
|
|
|
def __str__(self):
|
2013-01-25 18:36:27 +04:00
|
|
|
return 'Bookmark: %s' % self.url
|
|
|
|
|
|
|
|
|
2014-01-30 17:27:46 +04:00
|
|
|
@python_2_unicode_compatible
|
2013-01-25 18:36:27 +04:00
|
|
|
class Note(models.Model):
|
|
|
|
"""
|
|
|
|
A textual note that may have multiple tags attached.
|
|
|
|
"""
|
|
|
|
text = models.TextField()
|
|
|
|
tags = GenericRelation(Tag)
|
|
|
|
|
2014-01-30 17:27:46 +04:00
|
|
|
def __str__(self):
|
2013-01-25 18:36:27 +04:00
|
|
|
return 'Note: %s' % self.text
|
|
|
|
|
2012-10-05 01:07:24 +04:00
|
|
|
|
|
|
|
class TestGenericRelations(TestCase):
|
|
|
|
def setUp(self):
|
2013-01-25 17:58:19 +04:00
|
|
|
self.bookmark = Bookmark.objects.create(url='https://www.djangoproject.com/')
|
2013-01-25 18:36:27 +04:00
|
|
|
Tag.objects.create(tagged_item=self.bookmark, tag='django')
|
|
|
|
Tag.objects.create(tagged_item=self.bookmark, tag='python')
|
|
|
|
self.note = Note.objects.create(text='Remember the milk')
|
|
|
|
Tag.objects.create(tagged_item=self.note, tag='reminder')
|
2012-10-05 01:07:24 +04:00
|
|
|
|
2013-01-25 18:36:27 +04:00
|
|
|
def test_generic_relation(self):
|
2013-01-25 17:58:19 +04:00
|
|
|
"""
|
|
|
|
Test a relationship that spans a GenericRelation field.
|
2013-01-25 18:36:27 +04:00
|
|
|
IE. A reverse generic relationship.
|
2013-01-25 17:58:19 +04:00
|
|
|
"""
|
|
|
|
|
2012-10-05 01:07:24 +04:00
|
|
|
class BookmarkSerializer(serializers.ModelSerializer):
|
2013-02-07 13:14:58 +04:00
|
|
|
tags = serializers.RelatedField(many=True)
|
2012-10-05 01:07:24 +04:00
|
|
|
|
|
|
|
class Meta:
|
|
|
|
model = Bookmark
|
|
|
|
exclude = ('id',)
|
|
|
|
|
2012-11-05 14:53:20 +04:00
|
|
|
serializer = BookmarkSerializer(self.bookmark)
|
2012-10-05 01:07:24 +04:00
|
|
|
expected = {
|
2012-11-22 03:20:49 +04:00
|
|
|
'tags': ['django', 'python'],
|
|
|
|
'url': 'https://www.djangoproject.com/'
|
2012-10-05 01:07:24 +04:00
|
|
|
}
|
2013-02-28 01:15:00 +04:00
|
|
|
self.assertEqual(serializer.data, expected)
|
2013-01-25 18:36:27 +04:00
|
|
|
|
2013-12-24 08:27:40 +04:00
|
|
|
def test_generic_nested_relation(self):
|
|
|
|
"""
|
|
|
|
Test saving a GenericRelation field via a nested serializer.
|
|
|
|
"""
|
|
|
|
|
|
|
|
class TagSerializer(serializers.ModelSerializer):
|
|
|
|
class Meta:
|
|
|
|
model = Tag
|
|
|
|
exclude = ('content_type', 'object_id')
|
|
|
|
|
|
|
|
class BookmarkSerializer(serializers.ModelSerializer):
|
|
|
|
tags = TagSerializer()
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
model = Bookmark
|
|
|
|
exclude = ('id',)
|
|
|
|
|
|
|
|
data = {
|
|
|
|
'url': 'https://docs.djangoproject.com/',
|
|
|
|
'tags': [
|
|
|
|
{'tag': 'contenttypes'},
|
|
|
|
{'tag': 'genericrelations'},
|
|
|
|
]
|
|
|
|
}
|
|
|
|
serializer = BookmarkSerializer(data=data)
|
|
|
|
self.assertTrue(serializer.is_valid())
|
|
|
|
serializer.save()
|
|
|
|
self.assertEqual(serializer.object.tags.count(), 2)
|
|
|
|
|
2013-01-25 18:36:27 +04:00
|
|
|
def test_generic_fk(self):
|
|
|
|
"""
|
|
|
|
Test a relationship that spans a GenericForeignKey field.
|
|
|
|
IE. A forward generic relationship.
|
|
|
|
"""
|
|
|
|
|
|
|
|
class TagSerializer(serializers.ModelSerializer):
|
|
|
|
tagged_item = serializers.RelatedField()
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
model = Tag
|
|
|
|
exclude = ('id', 'content_type', 'object_id')
|
|
|
|
|
2013-02-13 00:07:35 +04:00
|
|
|
serializer = TagSerializer(Tag.objects.all(), many=True)
|
2013-01-25 18:36:27 +04:00
|
|
|
expected = [
|
|
|
|
{
|
2013-02-01 18:03:28 +04:00
|
|
|
'tag': 'django',
|
|
|
|
'tagged_item': 'Bookmark: https://www.djangoproject.com/'
|
2013-01-25 18:36:27 +04:00
|
|
|
},
|
|
|
|
{
|
2013-02-01 18:03:28 +04:00
|
|
|
'tag': 'python',
|
|
|
|
'tagged_item': 'Bookmark: https://www.djangoproject.com/'
|
2013-01-25 18:36:27 +04:00
|
|
|
},
|
|
|
|
{
|
2013-02-01 18:03:28 +04:00
|
|
|
'tag': 'reminder',
|
|
|
|
'tagged_item': 'Note: Remember the milk'
|
2013-01-25 18:36:27 +04:00
|
|
|
}
|
|
|
|
]
|
2013-02-28 01:15:00 +04:00
|
|
|
self.assertEqual(serializer.data, expected)
|
2014-04-13 20:26:15 +04:00
|
|
|
|
|
|
|
def test_restore_object_generic_fk(self):
|
|
|
|
"""
|
|
|
|
Ensure an object with a generic foreign key can be restored.
|
|
|
|
"""
|
|
|
|
|
|
|
|
class TagSerializer(serializers.ModelSerializer):
|
|
|
|
class Meta:
|
|
|
|
model = Tag
|
|
|
|
exclude = ('content_type', 'object_id')
|
|
|
|
|
|
|
|
serializer = TagSerializer()
|
|
|
|
|
|
|
|
bookmark = Bookmark(url='http://example.com')
|
|
|
|
attrs = {'tagged_item': bookmark, 'tag': 'example'}
|
|
|
|
|
|
|
|
tag = serializer.restore_object(attrs)
|
|
|
|
self.assertEqual(tag.tagged_item, bookmark)
|