2014-03-30 02:57:28 +08:00
|
|
|
from django.db import transaction
|
2016-12-31 22:04:09 +08:00
|
|
|
from django.test import TestCase
|
2011-10-14 02:04:12 +08:00
|
|
|
|
2015-05-09 18:57:13 +08:00
|
|
|
from .models import Article, InheritedArticleA, InheritedArticleB, Publication
|
2011-10-14 02:04:12 +08:00
|
|
|
|
2010-10-19 20:01:47 +08:00
|
|
|
|
|
|
|
class ManyToManyTests(TestCase):
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
# Create a couple of Publications.
|
2016-02-06 02:53:03 +08:00
|
|
|
self.p1 = Publication.objects.create(title='The Python Journal')
|
|
|
|
self.p2 = Publication.objects.create(title='Science News')
|
|
|
|
self.p3 = Publication.objects.create(title='Science Weekly')
|
2010-10-19 20:01:47 +08:00
|
|
|
self.p4 = Publication.objects.create(title='Highlights for Children')
|
|
|
|
|
2016-02-06 02:53:03 +08:00
|
|
|
self.a1 = Article.objects.create(headline='Django lets you build Web apps easily')
|
2010-10-19 20:01:47 +08:00
|
|
|
self.a1.publications.add(self.p1)
|
|
|
|
|
2016-02-06 02:53:03 +08:00
|
|
|
self.a2 = Article.objects.create(headline='NASA uses Python')
|
2010-10-19 20:01:47 +08:00
|
|
|
self.a2.publications.add(self.p1, self.p2, self.p3, self.p4)
|
|
|
|
|
|
|
|
self.a3 = Article.objects.create(headline='NASA finds intelligent life on Earth')
|
|
|
|
self.a3.publications.add(self.p2)
|
|
|
|
|
|
|
|
self.a4 = Article.objects.create(headline='Oxygen-free diet works wonders')
|
|
|
|
self.a4.publications.add(self.p2)
|
|
|
|
|
|
|
|
def test_add(self):
|
|
|
|
# Create an Article.
|
2016-02-06 02:53:03 +08:00
|
|
|
a5 = Article(headline='Django lets you reate Web apps easily')
|
2010-10-19 20:01:47 +08:00
|
|
|
# You can't associate it with a Publication until it's been saved.
|
2016-01-17 19:26:39 +08:00
|
|
|
with self.assertRaises(ValueError):
|
|
|
|
getattr(a5, 'publications')
|
2010-10-19 20:01:47 +08:00
|
|
|
# Save it!
|
|
|
|
a5.save()
|
|
|
|
# Associate the Article with a Publication.
|
|
|
|
a5.publications.add(self.p1)
|
2016-02-06 02:53:03 +08:00
|
|
|
self.assertQuerysetEqual(a5.publications.all(), ['<Publication: The Python Journal>'])
|
2010-10-19 20:01:47 +08:00
|
|
|
# Create another Article, and set it to appear in both Publications.
|
2016-02-06 02:53:03 +08:00
|
|
|
a6 = Article(headline='ESA uses Python')
|
2010-10-19 20:01:47 +08:00
|
|
|
a6.save()
|
|
|
|
a6.publications.add(self.p1, self.p2)
|
|
|
|
a6.publications.add(self.p3)
|
|
|
|
# Adding a second time is OK
|
|
|
|
a6.publications.add(self.p3)
|
2016-02-06 02:53:03 +08:00
|
|
|
self.assertQuerysetEqual(
|
|
|
|
a6.publications.all(),
|
2010-10-19 20:01:47 +08:00
|
|
|
[
|
|
|
|
'<Publication: Science News>',
|
|
|
|
'<Publication: Science Weekly>',
|
|
|
|
'<Publication: The Python Journal>',
|
2016-02-06 02:53:03 +08:00
|
|
|
]
|
|
|
|
)
|
2010-10-19 20:01:47 +08:00
|
|
|
|
|
|
|
# Adding an object of the wrong type raises TypeError
|
2016-02-06 02:53:03 +08:00
|
|
|
with self.assertRaisesMessage(TypeError, "'Publication' instance expected, got <Article"):
|
2014-03-30 02:57:28 +08:00
|
|
|
with transaction.atomic():
|
|
|
|
a6.publications.add(a5)
|
|
|
|
|
2010-10-19 20:01:47 +08:00
|
|
|
# Add a Publication directly via publications.add by using keyword arguments.
|
2013-10-19 20:31:38 +08:00
|
|
|
a6.publications.create(title='Highlights for Adults')
|
2016-02-06 02:53:03 +08:00
|
|
|
self.assertQuerysetEqual(
|
|
|
|
a6.publications.all(),
|
2010-10-19 20:01:47 +08:00
|
|
|
[
|
|
|
|
'<Publication: Highlights for Adults>',
|
|
|
|
'<Publication: Science News>',
|
|
|
|
'<Publication: Science Weekly>',
|
|
|
|
'<Publication: The Python Journal>',
|
2016-02-06 02:53:03 +08:00
|
|
|
]
|
|
|
|
)
|
2010-10-19 20:01:47 +08:00
|
|
|
|
|
|
|
def test_reverse_add(self):
|
|
|
|
# Adding via the 'other' end of an m2m
|
|
|
|
a5 = Article(headline='NASA finds intelligent life on Mars')
|
|
|
|
a5.save()
|
|
|
|
self.p2.article_set.add(a5)
|
2016-02-06 02:53:03 +08:00
|
|
|
self.assertQuerysetEqual(
|
|
|
|
self.p2.article_set.all(),
|
2010-10-19 20:01:47 +08:00
|
|
|
[
|
|
|
|
'<Article: NASA finds intelligent life on Earth>',
|
|
|
|
'<Article: NASA finds intelligent life on Mars>',
|
|
|
|
'<Article: NASA uses Python>',
|
|
|
|
'<Article: Oxygen-free diet works wonders>',
|
2016-02-06 02:53:03 +08:00
|
|
|
]
|
|
|
|
)
|
|
|
|
self.assertQuerysetEqual(a5.publications.all(), ['<Publication: Science News>'])
|
2010-10-19 20:01:47 +08:00
|
|
|
|
|
|
|
# Adding via the other end using keywords
|
2013-10-19 20:31:38 +08:00
|
|
|
self.p2.article_set.create(headline='Carbon-free diet works wonders')
|
2010-10-19 20:01:47 +08:00
|
|
|
self.assertQuerysetEqual(
|
|
|
|
self.p2.article_set.all(),
|
|
|
|
[
|
|
|
|
'<Article: Carbon-free diet works wonders>',
|
|
|
|
'<Article: NASA finds intelligent life on Earth>',
|
|
|
|
'<Article: NASA finds intelligent life on Mars>',
|
|
|
|
'<Article: NASA uses Python>',
|
|
|
|
'<Article: Oxygen-free diet works wonders>',
|
|
|
|
])
|
|
|
|
a6 = self.p2.article_set.all()[3]
|
2016-02-06 02:53:03 +08:00
|
|
|
self.assertQuerysetEqual(
|
|
|
|
a6.publications.all(),
|
2010-10-19 20:01:47 +08:00
|
|
|
[
|
|
|
|
'<Publication: Highlights for Children>',
|
|
|
|
'<Publication: Science News>',
|
|
|
|
'<Publication: Science Weekly>',
|
|
|
|
'<Publication: The Python Journal>',
|
2016-02-06 02:53:03 +08:00
|
|
|
]
|
|
|
|
)
|
2010-10-19 20:01:47 +08:00
|
|
|
|
|
|
|
def test_related_sets(self):
|
|
|
|
# Article objects have access to their related Publication objects.
|
2016-02-06 02:53:03 +08:00
|
|
|
self.assertQuerysetEqual(self.a1.publications.all(), ['<Publication: The Python Journal>'])
|
|
|
|
self.assertQuerysetEqual(
|
|
|
|
self.a2.publications.all(),
|
2010-10-19 20:01:47 +08:00
|
|
|
[
|
|
|
|
'<Publication: Highlights for Children>',
|
|
|
|
'<Publication: Science News>',
|
|
|
|
'<Publication: Science Weekly>',
|
|
|
|
'<Publication: The Python Journal>',
|
2016-02-06 02:53:03 +08:00
|
|
|
]
|
|
|
|
)
|
2010-10-19 20:01:47 +08:00
|
|
|
# Publication objects have access to their related Article objects.
|
2016-02-06 02:53:03 +08:00
|
|
|
self.assertQuerysetEqual(
|
|
|
|
self.p2.article_set.all(),
|
2010-10-19 20:01:47 +08:00
|
|
|
[
|
|
|
|
'<Article: NASA finds intelligent life on Earth>',
|
|
|
|
'<Article: NASA uses Python>',
|
|
|
|
'<Article: Oxygen-free diet works wonders>',
|
2016-02-06 02:53:03 +08:00
|
|
|
]
|
|
|
|
)
|
|
|
|
self.assertQuerysetEqual(
|
|
|
|
self.p1.article_set.all(),
|
2010-10-19 20:01:47 +08:00
|
|
|
[
|
|
|
|
'<Article: Django lets you build Web apps easily>',
|
|
|
|
'<Article: NASA uses Python>',
|
2016-02-06 02:53:03 +08:00
|
|
|
]
|
|
|
|
)
|
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Publication.objects.get(id=self.p4.id).article_set.all(),
|
|
|
|
['<Article: NASA uses Python>']
|
|
|
|
)
|
2010-10-19 20:01:47 +08:00
|
|
|
|
|
|
|
def test_selects(self):
|
|
|
|
# We can perform kwarg queries across m2m relationships
|
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Article.objects.filter(publications__id__exact=self.p1.id),
|
|
|
|
[
|
|
|
|
'<Article: Django lets you build Web apps easily>',
|
|
|
|
'<Article: NASA uses Python>',
|
|
|
|
])
|
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Article.objects.filter(publications__pk=self.p1.id),
|
|
|
|
[
|
|
|
|
'<Article: Django lets you build Web apps easily>',
|
|
|
|
'<Article: NASA uses Python>',
|
2016-02-06 02:53:03 +08:00
|
|
|
]
|
|
|
|
)
|
2010-10-19 20:01:47 +08:00
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Article.objects.filter(publications=self.p1.id),
|
|
|
|
[
|
|
|
|
'<Article: Django lets you build Web apps easily>',
|
|
|
|
'<Article: NASA uses Python>',
|
2016-02-06 02:53:03 +08:00
|
|
|
]
|
|
|
|
)
|
2010-10-19 20:01:47 +08:00
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Article.objects.filter(publications=self.p1),
|
|
|
|
[
|
|
|
|
'<Article: Django lets you build Web apps easily>',
|
|
|
|
'<Article: NASA uses Python>',
|
2016-02-06 02:53:03 +08:00
|
|
|
]
|
|
|
|
)
|
2010-10-19 20:01:47 +08:00
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Article.objects.filter(publications__title__startswith="Science"),
|
|
|
|
[
|
|
|
|
'<Article: NASA finds intelligent life on Earth>',
|
|
|
|
'<Article: NASA uses Python>',
|
|
|
|
'<Article: NASA uses Python>',
|
|
|
|
'<Article: Oxygen-free diet works wonders>',
|
2016-02-06 02:53:03 +08:00
|
|
|
]
|
|
|
|
)
|
2010-10-19 20:01:47 +08:00
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Article.objects.filter(publications__title__startswith="Science").distinct(),
|
|
|
|
[
|
|
|
|
'<Article: NASA finds intelligent life on Earth>',
|
|
|
|
'<Article: NASA uses Python>',
|
|
|
|
'<Article: Oxygen-free diet works wonders>',
|
2016-02-06 02:53:03 +08:00
|
|
|
]
|
|
|
|
)
|
2010-10-19 20:01:47 +08:00
|
|
|
|
|
|
|
# The count() function respects distinct() as well.
|
|
|
|
self.assertEqual(Article.objects.filter(publications__title__startswith="Science").count(), 4)
|
|
|
|
self.assertEqual(Article.objects.filter(publications__title__startswith="Science").distinct().count(), 3)
|
|
|
|
self.assertQuerysetEqual(
|
2013-10-27 03:15:03 +08:00
|
|
|
Article.objects.filter(publications__in=[self.p1.id, self.p2.id]).distinct(),
|
2010-10-19 20:01:47 +08:00
|
|
|
[
|
|
|
|
'<Article: Django lets you build Web apps easily>',
|
|
|
|
'<Article: NASA finds intelligent life on Earth>',
|
|
|
|
'<Article: NASA uses Python>',
|
|
|
|
'<Article: Oxygen-free diet works wonders>',
|
|
|
|
])
|
|
|
|
self.assertQuerysetEqual(
|
2013-10-27 03:15:03 +08:00
|
|
|
Article.objects.filter(publications__in=[self.p1.id, self.p2]).distinct(),
|
2010-10-19 20:01:47 +08:00
|
|
|
[
|
|
|
|
'<Article: Django lets you build Web apps easily>',
|
|
|
|
'<Article: NASA finds intelligent life on Earth>',
|
|
|
|
'<Article: NASA uses Python>',
|
|
|
|
'<Article: Oxygen-free diet works wonders>',
|
2016-02-06 02:53:03 +08:00
|
|
|
]
|
|
|
|
)
|
2010-10-19 20:01:47 +08:00
|
|
|
self.assertQuerysetEqual(
|
2013-10-27 03:15:03 +08:00
|
|
|
Article.objects.filter(publications__in=[self.p1, self.p2]).distinct(),
|
2010-10-19 20:01:47 +08:00
|
|
|
[
|
|
|
|
'<Article: Django lets you build Web apps easily>',
|
|
|
|
'<Article: NASA finds intelligent life on Earth>',
|
|
|
|
'<Article: NASA uses Python>',
|
|
|
|
'<Article: Oxygen-free diet works wonders>',
|
2016-02-06 02:53:03 +08:00
|
|
|
]
|
|
|
|
)
|
2010-10-19 20:01:47 +08:00
|
|
|
|
|
|
|
# Excluding a related item works as you would expect, too (although the SQL
|
|
|
|
# involved is a little complex).
|
2016-02-06 02:53:03 +08:00
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Article.objects.exclude(publications=self.p2),
|
|
|
|
['<Article: Django lets you build Web apps easily>']
|
|
|
|
)
|
2010-10-19 20:01:47 +08:00
|
|
|
|
|
|
|
def test_reverse_selects(self):
|
|
|
|
# Reverse m2m queries are supported (i.e., starting at the table that
|
|
|
|
# doesn't have a ManyToManyField).
|
2016-02-06 02:53:03 +08:00
|
|
|
python_journal = ['<Publication: The Python Journal>']
|
|
|
|
self.assertQuerysetEqual(Publication.objects.filter(id__exact=self.p1.id), python_journal)
|
|
|
|
self.assertQuerysetEqual(Publication.objects.filter(pk=self.p1.id), python_journal)
|
2010-10-19 20:01:47 +08:00
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Publication.objects.filter(article__headline__startswith="NASA"),
|
|
|
|
[
|
|
|
|
'<Publication: Highlights for Children>',
|
|
|
|
'<Publication: Science News>',
|
|
|
|
'<Publication: Science News>',
|
|
|
|
'<Publication: Science Weekly>',
|
|
|
|
'<Publication: The Python Journal>',
|
|
|
|
])
|
2016-02-06 02:53:03 +08:00
|
|
|
|
|
|
|
self.assertQuerysetEqual(Publication.objects.filter(article__id__exact=self.a1.id), python_journal)
|
|
|
|
self.assertQuerysetEqual(Publication.objects.filter(article__pk=self.a1.id), python_journal)
|
|
|
|
self.assertQuerysetEqual(Publication.objects.filter(article=self.a1.id), python_journal)
|
|
|
|
self.assertQuerysetEqual(Publication.objects.filter(article=self.a1), python_journal)
|
2010-10-19 20:01:47 +08:00
|
|
|
|
|
|
|
self.assertQuerysetEqual(
|
2013-10-27 03:15:03 +08:00
|
|
|
Publication.objects.filter(article__in=[self.a1.id, self.a2.id]).distinct(),
|
2010-10-19 20:01:47 +08:00
|
|
|
[
|
|
|
|
'<Publication: Highlights for Children>',
|
|
|
|
'<Publication: Science News>',
|
|
|
|
'<Publication: Science Weekly>',
|
|
|
|
'<Publication: The Python Journal>',
|
|
|
|
])
|
|
|
|
self.assertQuerysetEqual(
|
2013-10-27 03:15:03 +08:00
|
|
|
Publication.objects.filter(article__in=[self.a1.id, self.a2]).distinct(),
|
2010-10-19 20:01:47 +08:00
|
|
|
[
|
|
|
|
'<Publication: Highlights for Children>',
|
|
|
|
'<Publication: Science News>',
|
|
|
|
'<Publication: Science Weekly>',
|
|
|
|
'<Publication: The Python Journal>',
|
|
|
|
])
|
|
|
|
self.assertQuerysetEqual(
|
2013-10-27 03:15:03 +08:00
|
|
|
Publication.objects.filter(article__in=[self.a1, self.a2]).distinct(),
|
2010-10-19 20:01:47 +08:00
|
|
|
[
|
|
|
|
'<Publication: Highlights for Children>',
|
|
|
|
'<Publication: Science News>',
|
|
|
|
'<Publication: Science Weekly>',
|
|
|
|
'<Publication: The Python Journal>',
|
|
|
|
])
|
|
|
|
|
|
|
|
def test_delete(self):
|
|
|
|
# If we delete a Publication, its Articles won't be able to access it.
|
|
|
|
self.p1.delete()
|
2016-02-06 02:53:03 +08:00
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Publication.objects.all(),
|
2010-10-19 20:01:47 +08:00
|
|
|
[
|
|
|
|
'<Publication: Highlights for Children>',
|
|
|
|
'<Publication: Science News>',
|
|
|
|
'<Publication: Science Weekly>',
|
2016-02-06 02:53:03 +08:00
|
|
|
]
|
|
|
|
)
|
2010-10-19 20:01:47 +08:00
|
|
|
self.assertQuerysetEqual(self.a1.publications.all(), [])
|
|
|
|
# If we delete an Article, its Publications won't be able to access it.
|
|
|
|
self.a2.delete()
|
2016-02-06 02:53:03 +08:00
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Article.objects.all(),
|
2010-10-19 20:01:47 +08:00
|
|
|
[
|
|
|
|
'<Article: Django lets you build Web apps easily>',
|
|
|
|
'<Article: NASA finds intelligent life on Earth>',
|
|
|
|
'<Article: Oxygen-free diet works wonders>',
|
2016-02-06 02:53:03 +08:00
|
|
|
]
|
|
|
|
)
|
|
|
|
self.assertQuerysetEqual(
|
|
|
|
self.p2.article_set.all(),
|
2010-10-19 20:01:47 +08:00
|
|
|
[
|
|
|
|
'<Article: NASA finds intelligent life on Earth>',
|
|
|
|
'<Article: Oxygen-free diet works wonders>',
|
2016-02-06 02:53:03 +08:00
|
|
|
]
|
|
|
|
)
|
2010-10-19 20:01:47 +08:00
|
|
|
|
|
|
|
def test_bulk_delete(self):
|
|
|
|
# Bulk delete some Publications - references to deleted publications should go
|
|
|
|
Publication.objects.filter(title__startswith='Science').delete()
|
2016-02-06 02:53:03 +08:00
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Publication.objects.all(),
|
2010-10-19 20:01:47 +08:00
|
|
|
[
|
|
|
|
'<Publication: Highlights for Children>',
|
|
|
|
'<Publication: The Python Journal>',
|
2016-02-06 02:53:03 +08:00
|
|
|
]
|
|
|
|
)
|
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Article.objects.all(),
|
2010-10-19 20:01:47 +08:00
|
|
|
[
|
|
|
|
'<Article: Django lets you build Web apps easily>',
|
|
|
|
'<Article: NASA finds intelligent life on Earth>',
|
|
|
|
'<Article: NASA uses Python>',
|
|
|
|
'<Article: Oxygen-free diet works wonders>',
|
2016-02-06 02:53:03 +08:00
|
|
|
]
|
|
|
|
)
|
|
|
|
self.assertQuerysetEqual(
|
|
|
|
self.a2.publications.all(),
|
2010-10-19 20:01:47 +08:00
|
|
|
[
|
|
|
|
'<Publication: Highlights for Children>',
|
|
|
|
'<Publication: The Python Journal>',
|
2016-02-06 02:53:03 +08:00
|
|
|
]
|
|
|
|
)
|
2010-10-19 20:01:47 +08:00
|
|
|
|
|
|
|
# Bulk delete some articles - references to deleted objects should go
|
|
|
|
q = Article.objects.filter(headline__startswith='Django')
|
|
|
|
self.assertQuerysetEqual(q, ['<Article: Django lets you build Web apps easily>'])
|
|
|
|
q.delete()
|
|
|
|
# After the delete, the QuerySet cache needs to be cleared,
|
|
|
|
# and the referenced objects should be gone
|
|
|
|
self.assertQuerysetEqual(q, [])
|
2016-02-06 02:53:03 +08:00
|
|
|
self.assertQuerysetEqual(self.p1.article_set.all(), ['<Article: NASA uses Python>'])
|
2010-10-19 20:01:47 +08:00
|
|
|
|
|
|
|
def test_remove(self):
|
|
|
|
# Removing publication from an article:
|
2016-02-06 02:53:03 +08:00
|
|
|
self.assertQuerysetEqual(
|
|
|
|
self.p2.article_set.all(),
|
2010-10-19 20:01:47 +08:00
|
|
|
[
|
|
|
|
'<Article: NASA finds intelligent life on Earth>',
|
|
|
|
'<Article: NASA uses Python>',
|
|
|
|
'<Article: Oxygen-free diet works wonders>',
|
2016-02-06 02:53:03 +08:00
|
|
|
]
|
|
|
|
)
|
2010-10-19 20:01:47 +08:00
|
|
|
self.a4.publications.remove(self.p2)
|
2016-02-06 02:53:03 +08:00
|
|
|
self.assertQuerysetEqual(
|
|
|
|
self.p2.article_set.all(),
|
2010-10-19 20:01:47 +08:00
|
|
|
[
|
|
|
|
'<Article: NASA finds intelligent life on Earth>',
|
|
|
|
'<Article: NASA uses Python>',
|
2016-02-06 02:53:03 +08:00
|
|
|
]
|
|
|
|
)
|
2010-10-19 20:01:47 +08:00
|
|
|
self.assertQuerysetEqual(self.a4.publications.all(), [])
|
|
|
|
# And from the other end
|
|
|
|
self.p2.article_set.remove(self.a3)
|
2016-02-06 02:53:03 +08:00
|
|
|
self.assertQuerysetEqual(self.p2.article_set.all(), ['<Article: NASA uses Python>'])
|
2010-10-19 20:01:47 +08:00
|
|
|
self.assertQuerysetEqual(self.a3.publications.all(), [])
|
|
|
|
|
2015-01-30 02:15:27 +08:00
|
|
|
def test_set(self):
|
|
|
|
self.p2.article_set.set([self.a4, self.a3])
|
2016-02-06 02:53:03 +08:00
|
|
|
self.assertQuerysetEqual(
|
|
|
|
self.p2.article_set.all(),
|
2015-01-30 02:15:27 +08:00
|
|
|
[
|
|
|
|
'<Article: NASA finds intelligent life on Earth>',
|
|
|
|
'<Article: Oxygen-free diet works wonders>',
|
2016-02-06 02:53:03 +08:00
|
|
|
]
|
|
|
|
)
|
|
|
|
self.assertQuerysetEqual(self.a4.publications.all(), ['<Publication: Science News>'])
|
2015-01-30 02:15:27 +08:00
|
|
|
self.a4.publications.set([self.p3.id])
|
2016-02-06 02:53:03 +08:00
|
|
|
self.assertQuerysetEqual(self.p2.article_set.all(), ['<Article: NASA finds intelligent life on Earth>'])
|
|
|
|
self.assertQuerysetEqual(self.a4.publications.all(), ['<Publication: Science Weekly>'])
|
2015-01-30 02:15:27 +08:00
|
|
|
|
|
|
|
self.p2.article_set.set([])
|
|
|
|
self.assertQuerysetEqual(self.p2.article_set.all(), [])
|
|
|
|
self.a4.publications.set([])
|
|
|
|
self.assertQuerysetEqual(self.a4.publications.all(), [])
|
|
|
|
|
|
|
|
self.p2.article_set.set([self.a4, self.a3], clear=True)
|
2016-02-06 02:53:03 +08:00
|
|
|
self.assertQuerysetEqual(
|
|
|
|
self.p2.article_set.all(),
|
2015-01-30 02:15:27 +08:00
|
|
|
[
|
|
|
|
'<Article: NASA finds intelligent life on Earth>',
|
|
|
|
'<Article: Oxygen-free diet works wonders>',
|
2016-02-06 02:53:03 +08:00
|
|
|
]
|
|
|
|
)
|
|
|
|
self.assertQuerysetEqual(self.a4.publications.all(), ['<Publication: Science News>'])
|
2015-01-30 02:15:27 +08:00
|
|
|
self.a4.publications.set([self.p3.id], clear=True)
|
2016-02-06 02:53:03 +08:00
|
|
|
self.assertQuerysetEqual(self.p2.article_set.all(), ['<Article: NASA finds intelligent life on Earth>'])
|
|
|
|
self.assertQuerysetEqual(self.a4.publications.all(), ['<Publication: Science Weekly>'])
|
2015-01-30 02:15:27 +08:00
|
|
|
|
|
|
|
self.p2.article_set.set([], clear=True)
|
|
|
|
self.assertQuerysetEqual(self.p2.article_set.all(), [])
|
|
|
|
self.a4.publications.set([], clear=True)
|
|
|
|
self.assertQuerysetEqual(self.a4.publications.all(), [])
|
|
|
|
|
2016-12-31 22:04:09 +08:00
|
|
|
def test_assign_forward(self):
|
2015-10-09 05:17:10 +08:00
|
|
|
msg = (
|
2016-07-31 08:50:09 +08:00
|
|
|
"Direct assignment to the reverse side of a many-to-many set is "
|
2016-12-31 22:04:09 +08:00
|
|
|
"prohibited. Use article_set.set() instead."
|
2015-10-09 05:17:10 +08:00
|
|
|
)
|
2016-12-31 22:04:09 +08:00
|
|
|
with self.assertRaisesMessage(TypeError, msg):
|
2015-10-09 05:17:10 +08:00
|
|
|
self.p2.article_set = [self.a4, self.a3]
|
|
|
|
|
2016-12-31 22:04:09 +08:00
|
|
|
def test_assign_reverse(self):
|
2016-07-31 08:50:09 +08:00
|
|
|
msg = (
|
|
|
|
"Direct assignment to the forward side of a many-to-many "
|
2016-12-31 22:04:09 +08:00
|
|
|
"set is prohibited. Use publications.set() instead."
|
2016-07-31 08:50:09 +08:00
|
|
|
)
|
2016-12-31 22:04:09 +08:00
|
|
|
with self.assertRaisesMessage(TypeError, msg):
|
2016-07-31 08:50:09 +08:00
|
|
|
self.a1.publications = [self.p1, self.p2]
|
|
|
|
|
2015-10-09 05:17:10 +08:00
|
|
|
def test_assign(self):
|
|
|
|
# Relation sets can be assigned using set().
|
|
|
|
self.p2.article_set.set([self.a4, self.a3])
|
|
|
|
self.assertQuerysetEqual(
|
|
|
|
self.p2.article_set.all(), [
|
|
|
|
'<Article: NASA finds intelligent life on Earth>',
|
|
|
|
'<Article: Oxygen-free diet works wonders>',
|
|
|
|
]
|
|
|
|
)
|
|
|
|
self.assertQuerysetEqual(self.a4.publications.all(), ['<Publication: Science News>'])
|
|
|
|
self.a4.publications.set([self.p3.id])
|
|
|
|
self.assertQuerysetEqual(self.p2.article_set.all(), ['<Article: NASA finds intelligent life on Earth>'])
|
|
|
|
self.assertQuerysetEqual(self.a4.publications.all(), ['<Publication: Science Weekly>'])
|
|
|
|
|
|
|
|
# An alternate to calling clear() is to set an empty set.
|
|
|
|
self.p2.article_set.set([])
|
|
|
|
self.assertQuerysetEqual(self.p2.article_set.all(), [])
|
|
|
|
self.a4.publications.set([])
|
|
|
|
self.assertQuerysetEqual(self.a4.publications.all(), [])
|
|
|
|
|
2010-10-19 20:01:47 +08:00
|
|
|
def test_assign_ids(self):
|
|
|
|
# Relation sets can also be set using primary key values
|
2015-10-09 05:17:10 +08:00
|
|
|
self.p2.article_set.set([self.a4.id, self.a3.id])
|
2016-02-06 02:53:03 +08:00
|
|
|
self.assertQuerysetEqual(
|
|
|
|
self.p2.article_set.all(),
|
2010-10-19 20:01:47 +08:00
|
|
|
[
|
|
|
|
'<Article: NASA finds intelligent life on Earth>',
|
|
|
|
'<Article: Oxygen-free diet works wonders>',
|
2016-02-06 02:53:03 +08:00
|
|
|
]
|
|
|
|
)
|
|
|
|
self.assertQuerysetEqual(self.a4.publications.all(), ['<Publication: Science News>'])
|
2015-10-09 05:17:10 +08:00
|
|
|
self.a4.publications.set([self.p3.id])
|
2016-02-06 02:53:03 +08:00
|
|
|
self.assertQuerysetEqual(self.p2.article_set.all(), ['<Article: NASA finds intelligent life on Earth>'])
|
|
|
|
self.assertQuerysetEqual(self.a4.publications.all(), ['<Publication: Science Weekly>'])
|
2010-10-19 20:01:47 +08:00
|
|
|
|
2014-03-27 19:32:48 +08:00
|
|
|
def test_forward_assign_with_queryset(self):
|
2016-10-27 15:53:39 +08:00
|
|
|
# Querysets used in m2m assignments are pre-evaluated so their value
|
|
|
|
# isn't affected by the clearing operation in ManyRelatedManager.set()
|
|
|
|
# (#19816).
|
2015-10-09 05:17:10 +08:00
|
|
|
self.a1.publications.set([self.p1, self.p2])
|
2014-03-27 19:32:48 +08:00
|
|
|
|
2014-03-30 19:48:27 +08:00
|
|
|
qs = self.a1.publications.filter(title='The Python Journal')
|
2015-10-09 05:17:10 +08:00
|
|
|
self.a1.publications.set(qs)
|
2014-03-27 19:32:48 +08:00
|
|
|
|
|
|
|
self.assertEqual(1, self.a1.publications.count())
|
|
|
|
self.assertEqual(1, qs.count())
|
|
|
|
|
|
|
|
def test_reverse_assign_with_queryset(self):
|
2016-10-27 15:53:39 +08:00
|
|
|
# Querysets used in M2M assignments are pre-evaluated so their value
|
|
|
|
# isn't affected by the clearing operation in ManyRelatedManager.set()
|
|
|
|
# (#19816).
|
2015-10-09 05:17:10 +08:00
|
|
|
self.p1.article_set.set([self.a1, self.a2])
|
2014-03-27 19:32:48 +08:00
|
|
|
|
2014-03-30 19:48:27 +08:00
|
|
|
qs = self.p1.article_set.filter(headline='Django lets you build Web apps easily')
|
2015-10-09 05:17:10 +08:00
|
|
|
self.p1.article_set.set(qs)
|
2014-03-27 19:32:48 +08:00
|
|
|
|
|
|
|
self.assertEqual(1, self.p1.article_set.count())
|
|
|
|
self.assertEqual(1, qs.count())
|
|
|
|
|
2010-10-19 20:01:47 +08:00
|
|
|
def test_clear(self):
|
|
|
|
# Relation sets can be cleared:
|
|
|
|
self.p2.article_set.clear()
|
|
|
|
self.assertQuerysetEqual(self.p2.article_set.all(), [])
|
|
|
|
self.assertQuerysetEqual(self.a4.publications.all(), [])
|
|
|
|
|
|
|
|
# And you can clear from the other end
|
|
|
|
self.p2.article_set.add(self.a3, self.a4)
|
2016-02-06 02:53:03 +08:00
|
|
|
self.assertQuerysetEqual(
|
|
|
|
self.p2.article_set.all(),
|
2010-10-19 20:01:47 +08:00
|
|
|
[
|
|
|
|
'<Article: NASA finds intelligent life on Earth>',
|
|
|
|
'<Article: Oxygen-free diet works wonders>',
|
2016-02-06 02:53:03 +08:00
|
|
|
]
|
|
|
|
)
|
|
|
|
self.assertQuerysetEqual(self.a4.publications.all(), ['<Publication: Science News>'])
|
2010-10-19 20:01:47 +08:00
|
|
|
self.a4.publications.clear()
|
|
|
|
self.assertQuerysetEqual(self.a4.publications.all(), [])
|
2016-02-06 02:53:03 +08:00
|
|
|
self.assertQuerysetEqual(self.p2.article_set.all(), ['<Article: NASA finds intelligent life on Earth>'])
|
2015-05-09 18:57:13 +08:00
|
|
|
|
2016-06-05 20:15:00 +08:00
|
|
|
def test_clear_after_prefetch(self):
|
|
|
|
a4 = Article.objects.prefetch_related('publications').get(id=self.a4.id)
|
|
|
|
self.assertQuerysetEqual(a4.publications.all(), ['<Publication: Science News>'])
|
|
|
|
a4.publications.clear()
|
|
|
|
self.assertQuerysetEqual(a4.publications.all(), [])
|
|
|
|
|
|
|
|
def test_remove_after_prefetch(self):
|
|
|
|
a4 = Article.objects.prefetch_related('publications').get(id=self.a4.id)
|
|
|
|
self.assertQuerysetEqual(a4.publications.all(), ['<Publication: Science News>'])
|
|
|
|
a4.publications.remove(self.p2)
|
|
|
|
self.assertQuerysetEqual(a4.publications.all(), [])
|
|
|
|
|
|
|
|
def test_add_after_prefetch(self):
|
|
|
|
a4 = Article.objects.prefetch_related('publications').get(id=self.a4.id)
|
|
|
|
self.assertEqual(a4.publications.count(), 1)
|
|
|
|
a4.publications.add(self.p1)
|
|
|
|
self.assertEqual(a4.publications.count(), 2)
|
|
|
|
|
|
|
|
def test_set_after_prefetch(self):
|
|
|
|
a4 = Article.objects.prefetch_related('publications').get(id=self.a4.id)
|
|
|
|
self.assertEqual(a4.publications.count(), 1)
|
|
|
|
a4.publications.set([self.p2, self.p1])
|
|
|
|
self.assertEqual(a4.publications.count(), 2)
|
|
|
|
a4.publications.set([self.p1])
|
|
|
|
self.assertEqual(a4.publications.count(), 1)
|
|
|
|
|
|
|
|
def test_add_then_remove_after_prefetch(self):
|
|
|
|
a4 = Article.objects.prefetch_related('publications').get(id=self.a4.id)
|
|
|
|
self.assertEqual(a4.publications.count(), 1)
|
|
|
|
a4.publications.add(self.p1)
|
|
|
|
self.assertEqual(a4.publications.count(), 2)
|
|
|
|
a4.publications.remove(self.p1)
|
|
|
|
self.assertQuerysetEqual(a4.publications.all(), ['<Publication: Science News>'])
|
|
|
|
|
2015-05-09 18:57:13 +08:00
|
|
|
def test_inherited_models_selects(self):
|
|
|
|
"""
|
|
|
|
#24156 - Objects from child models where the parent's m2m field uses
|
|
|
|
related_name='+' should be retrieved correctly.
|
|
|
|
"""
|
|
|
|
a = InheritedArticleA.objects.create()
|
|
|
|
b = InheritedArticleB.objects.create()
|
|
|
|
a.publications.add(self.p1, self.p2)
|
2016-02-06 02:53:03 +08:00
|
|
|
self.assertQuerysetEqual(
|
|
|
|
a.publications.all(),
|
2015-05-09 18:57:13 +08:00
|
|
|
[
|
|
|
|
'<Publication: Science News>',
|
|
|
|
'<Publication: The Python Journal>',
|
|
|
|
])
|
|
|
|
self.assertQuerysetEqual(b.publications.all(), [])
|
|
|
|
b.publications.add(self.p3)
|
2016-02-06 02:53:03 +08:00
|
|
|
self.assertQuerysetEqual(
|
|
|
|
a.publications.all(),
|
2015-05-09 18:57:13 +08:00
|
|
|
[
|
|
|
|
'<Publication: Science News>',
|
|
|
|
'<Publication: The Python Journal>',
|
2016-02-06 02:53:03 +08:00
|
|
|
]
|
|
|
|
)
|
|
|
|
self.assertQuerysetEqual(b.publications.all(), ['<Publication: Science Weekly>'])
|