2013-07-30 01:19:04 +08:00
|
|
|
from __future__ import unicode_literals
|
2011-10-14 05:34:56 +08:00
|
|
|
|
2010-10-14 09:10:57 +08:00
|
|
|
from django.core.exceptions import FieldError
|
|
|
|
from django.test import TestCase
|
2012-09-08 01:17:09 +08:00
|
|
|
from django.utils import six
|
2010-10-14 09:10:57 +08:00
|
|
|
|
2011-10-14 05:34:56 +08:00
|
|
|
from .models import (SelfRefer, Tag, TagCollection, Entry, SelfReferChild,
|
2014-03-31 03:11:05 +08:00
|
|
|
SelfReferChildSibling, Worksheet, RegressionModelSplit)
|
2010-10-14 09:10:57 +08:00
|
|
|
|
|
|
|
|
|
|
|
class M2MRegressionTests(TestCase):
|
|
|
|
def test_multiple_m2m(self):
|
|
|
|
# Multiple m2m references to model must be distinguished when
|
|
|
|
# accessing the relations through an instance attribute.
|
|
|
|
|
|
|
|
s1 = SelfRefer.objects.create(name='s1')
|
|
|
|
s2 = SelfRefer.objects.create(name='s2')
|
|
|
|
s3 = SelfRefer.objects.create(name='s3')
|
|
|
|
s1.references.add(s2)
|
|
|
|
s1.related.add(s3)
|
|
|
|
|
|
|
|
e1 = Entry.objects.create(name='e1')
|
|
|
|
t1 = Tag.objects.create(name='t1')
|
|
|
|
t2 = Tag.objects.create(name='t2')
|
|
|
|
|
|
|
|
e1.topics.add(t1)
|
|
|
|
e1.related.add(t2)
|
|
|
|
|
|
|
|
self.assertQuerysetEqual(s1.references.all(), ["<SelfRefer: s2>"])
|
|
|
|
self.assertQuerysetEqual(s1.related.all(), ["<SelfRefer: s3>"])
|
|
|
|
|
|
|
|
self.assertQuerysetEqual(e1.topics.all(), ["<Tag: t1>"])
|
|
|
|
self.assertQuerysetEqual(e1.related.all(), ["<Tag: t2>"])
|
|
|
|
|
|
|
|
def test_internal_related_name_not_in_error_msg(self):
|
|
|
|
# The secret internal related names for self-referential many-to-many
|
|
|
|
# fields shouldn't appear in the list when an error is made.
|
|
|
|
|
2013-12-09 01:20:06 +08:00
|
|
|
six.assertRaisesRegex(
|
|
|
|
self, FieldError,
|
2010-10-14 09:10:57 +08:00
|
|
|
"Choices are: id, name, references, related, selfreferchild, selfreferchildsibling$",
|
|
|
|
lambda: SelfRefer.objects.filter(porcupine='fred')
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_m2m_inheritance_symmetry(self):
|
|
|
|
# Test to ensure that the relationship between two inherited models
|
|
|
|
# with a self-referential m2m field maintains symmetry
|
|
|
|
|
|
|
|
sr_child = SelfReferChild(name="Hanna")
|
|
|
|
sr_child.save()
|
|
|
|
|
|
|
|
sr_sibling = SelfReferChildSibling(name="Beth")
|
|
|
|
sr_sibling.save()
|
|
|
|
sr_child.related.add(sr_sibling)
|
|
|
|
|
|
|
|
self.assertQuerysetEqual(sr_child.related.all(), ["<SelfRefer: Beth>"])
|
|
|
|
self.assertQuerysetEqual(sr_sibling.related.all(), ["<SelfRefer: Hanna>"])
|
|
|
|
|
|
|
|
def test_m2m_pk_field_type(self):
|
|
|
|
# Regression for #11311 - The primary key for models in a m2m relation
|
|
|
|
# doesn't have to be an AutoField
|
|
|
|
|
|
|
|
w = Worksheet(id='abc')
|
|
|
|
w.save()
|
|
|
|
w.delete()
|
|
|
|
|
|
|
|
def test_add_m2m_with_base_class(self):
|
|
|
|
# Regression for #11956 -- You can add an object to a m2m with the
|
|
|
|
# base class without causing integrity errors
|
|
|
|
|
|
|
|
t1 = Tag.objects.create(name='t1')
|
|
|
|
t2 = Tag.objects.create(name='t2')
|
|
|
|
|
|
|
|
c1 = TagCollection.objects.create(name='c1')
|
2012-09-08 01:17:09 +08:00
|
|
|
c1.tags = [t1, t2]
|
2010-10-14 09:10:57 +08:00
|
|
|
c1 = TagCollection.objects.get(name='c1')
|
|
|
|
|
2012-12-13 19:33:11 +08:00
|
|
|
self.assertQuerysetEqual(c1.tags.all(), ["<Tag: t1>", "<Tag: t2>"], ordered=False)
|
2010-10-14 09:10:57 +08:00
|
|
|
self.assertQuerysetEqual(t1.tag_collections.all(), ["<TagCollection: c1>"])
|
2011-09-30 18:41:25 +08:00
|
|
|
|
|
|
|
def test_manager_class_caching(self):
|
|
|
|
e1 = Entry.objects.create()
|
|
|
|
e2 = Entry.objects.create()
|
|
|
|
t1 = Tag.objects.create()
|
|
|
|
t2 = Tag.objects.create()
|
|
|
|
|
|
|
|
# Get same manager twice in a row:
|
|
|
|
self.assertTrue(t1.entry_set.__class__ is t1.entry_set.__class__)
|
|
|
|
self.assertTrue(e1.topics.__class__ is e1.topics.__class__)
|
|
|
|
|
|
|
|
# Get same manager for different instances
|
|
|
|
self.assertTrue(e1.topics.__class__ is e2.topics.__class__)
|
|
|
|
self.assertTrue(t1.entry_set.__class__ is t2.entry_set.__class__)
|
2012-11-05 05:43:54 +08:00
|
|
|
|
|
|
|
def test_m2m_abstract_split(self):
|
|
|
|
# Regression for #19236 - an abstract class with a 'split' method
|
|
|
|
# causes a TypeError in add_lazy_relation
|
|
|
|
m1 = RegressionModelSplit(name='1')
|
|
|
|
m1.save()
|