2013-07-30 01:19:04 +08:00
|
|
|
from __future__ import unicode_literals
|
2011-10-14 02:04:12 +08:00
|
|
|
|
2010-10-12 02:17:37 +08:00
|
|
|
from datetime import datetime
|
|
|
|
from operator import attrgetter
|
|
|
|
|
|
|
|
from django.test import TestCase
|
|
|
|
|
2014-04-26 15:34:20 +08:00
|
|
|
from .models import Article, Author
|
2010-10-12 02:17:37 +08:00
|
|
|
|
|
|
|
|
|
|
|
class OrderingTests(TestCase):
|
2014-04-26 15:34:20 +08:00
|
|
|
def setUp(self):
|
|
|
|
self.a1 = Article.objects.create(
|
2010-10-12 02:17:37 +08:00
|
|
|
headline="Article 1", pub_date=datetime(2005, 7, 26)
|
|
|
|
)
|
2014-04-26 15:34:20 +08:00
|
|
|
self.a2 = Article.objects.create(
|
2010-10-12 02:17:37 +08:00
|
|
|
headline="Article 2", pub_date=datetime(2005, 7, 27)
|
|
|
|
)
|
2014-04-26 15:34:20 +08:00
|
|
|
self.a3 = Article.objects.create(
|
2010-10-12 02:17:37 +08:00
|
|
|
headline="Article 3", pub_date=datetime(2005, 7, 27)
|
|
|
|
)
|
2014-04-26 15:34:20 +08:00
|
|
|
self.a4 = Article.objects.create(
|
2010-10-12 02:17:37 +08:00
|
|
|
headline="Article 4", pub_date=datetime(2005, 7, 28)
|
|
|
|
)
|
|
|
|
|
2014-04-26 15:34:20 +08:00
|
|
|
def test_default_ordering(self):
|
|
|
|
"""
|
|
|
|
By default, Article.objects.all() orders by pub_date descending, then
|
|
|
|
headline ascending.
|
|
|
|
"""
|
2010-10-12 02:17:37 +08:00
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Article.objects.all(), [
|
|
|
|
"Article 4",
|
|
|
|
"Article 2",
|
|
|
|
"Article 3",
|
|
|
|
"Article 1",
|
|
|
|
],
|
|
|
|
attrgetter("headline")
|
|
|
|
)
|
|
|
|
|
2014-04-26 15:34:20 +08:00
|
|
|
# Getting a single item should work too:
|
|
|
|
self.assertEqual(Article.objects.all()[0], self.a4)
|
|
|
|
|
|
|
|
def test_default_ordering_override(self):
|
|
|
|
"""
|
|
|
|
Override ordering with order_by, which is in the same format as the
|
|
|
|
ordering attribute in models.
|
|
|
|
"""
|
2010-10-12 02:17:37 +08:00
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Article.objects.order_by("headline"), [
|
|
|
|
"Article 1",
|
|
|
|
"Article 2",
|
|
|
|
"Article 3",
|
|
|
|
"Article 4",
|
|
|
|
],
|
|
|
|
attrgetter("headline")
|
|
|
|
)
|
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Article.objects.order_by("pub_date", "-headline"), [
|
|
|
|
"Article 1",
|
|
|
|
"Article 3",
|
|
|
|
"Article 2",
|
|
|
|
"Article 4",
|
|
|
|
],
|
|
|
|
attrgetter("headline")
|
|
|
|
)
|
|
|
|
|
2014-04-26 15:34:20 +08:00
|
|
|
def test_order_by_override(self):
|
|
|
|
"""
|
|
|
|
Only the last order_by has any effect (since they each override any
|
|
|
|
previous ordering).
|
|
|
|
"""
|
2010-10-12 02:17:37 +08:00
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Article.objects.order_by("id"), [
|
|
|
|
"Article 1",
|
|
|
|
"Article 2",
|
|
|
|
"Article 3",
|
|
|
|
"Article 4",
|
|
|
|
],
|
|
|
|
attrgetter("headline")
|
|
|
|
)
|
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Article.objects.order_by("id").order_by("-headline"), [
|
|
|
|
"Article 4",
|
|
|
|
"Article 3",
|
|
|
|
"Article 2",
|
|
|
|
"Article 1",
|
|
|
|
],
|
|
|
|
attrgetter("headline")
|
|
|
|
)
|
|
|
|
|
2014-04-26 15:34:20 +08:00
|
|
|
def test_stop_slicing(self):
|
|
|
|
"""
|
|
|
|
Use the 'stop' part of slicing notation to limit the results.
|
|
|
|
"""
|
2010-10-12 02:17:37 +08:00
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Article.objects.order_by("headline")[:2], [
|
|
|
|
"Article 1",
|
|
|
|
"Article 2",
|
|
|
|
],
|
|
|
|
attrgetter("headline")
|
|
|
|
)
|
|
|
|
|
2014-04-26 15:34:20 +08:00
|
|
|
def test_stop_start_slicing(self):
|
|
|
|
"""
|
|
|
|
Use the 'stop' and 'start' parts of slicing notation to offset the
|
|
|
|
result list.
|
|
|
|
"""
|
2010-10-12 02:17:37 +08:00
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Article.objects.order_by("headline")[1:3], [
|
|
|
|
"Article 2",
|
|
|
|
"Article 3",
|
|
|
|
],
|
|
|
|
attrgetter("headline")
|
|
|
|
)
|
|
|
|
|
2014-04-26 15:34:20 +08:00
|
|
|
def test_random_ordering(self):
|
|
|
|
"""
|
|
|
|
Use '?' to order randomly.
|
|
|
|
"""
|
2010-10-12 02:17:37 +08:00
|
|
|
self.assertEqual(
|
|
|
|
len(list(Article.objects.order_by("?"))), 4
|
|
|
|
)
|
|
|
|
|
2014-04-26 15:34:20 +08:00
|
|
|
def test_reversed_ordering(self):
|
|
|
|
"""
|
|
|
|
Ordering can be reversed using the reverse() method on a queryset.
|
|
|
|
This allows you to extract things like "the last two items" (reverse
|
|
|
|
and then take the first two).
|
|
|
|
"""
|
2010-10-12 02:17:37 +08:00
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Article.objects.all().reverse()[:2], [
|
|
|
|
"Article 1",
|
|
|
|
"Article 3",
|
|
|
|
],
|
|
|
|
attrgetter("headline")
|
|
|
|
)
|
|
|
|
|
2014-04-26 15:34:20 +08:00
|
|
|
def test_extra_ordering(self):
|
|
|
|
"""
|
|
|
|
Ordering can be based on fields included from an 'extra' clause
|
|
|
|
"""
|
2010-10-12 02:17:37 +08:00
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Article.objects.extra(select={"foo": "pub_date"}, order_by=["foo", "headline"]), [
|
|
|
|
"Article 1",
|
|
|
|
"Article 2",
|
|
|
|
"Article 3",
|
|
|
|
"Article 4",
|
|
|
|
],
|
|
|
|
attrgetter("headline")
|
|
|
|
)
|
|
|
|
|
2014-04-26 15:34:20 +08:00
|
|
|
def test_extra_ordering_quoting(self):
|
|
|
|
"""
|
|
|
|
If the extra clause uses an SQL keyword for a name, it will be
|
|
|
|
protected by quoting.
|
|
|
|
"""
|
2010-10-12 02:17:37 +08:00
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Article.objects.extra(select={"order": "pub_date"}, order_by=["order", "headline"]), [
|
|
|
|
"Article 1",
|
|
|
|
"Article 2",
|
|
|
|
"Article 3",
|
|
|
|
"Article 4",
|
|
|
|
],
|
|
|
|
attrgetter("headline")
|
|
|
|
)
|
2012-02-05 03:56:40 +08:00
|
|
|
|
|
|
|
def test_order_by_pk(self):
|
|
|
|
"""
|
|
|
|
Ensure that 'pk' works as an ordering option in Meta.
|
|
|
|
Refs #8291.
|
|
|
|
"""
|
2014-04-26 15:34:20 +08:00
|
|
|
Author.objects.create(pk=1)
|
|
|
|
Author.objects.create(pk=2)
|
|
|
|
Author.objects.create(pk=3)
|
|
|
|
Author.objects.create(pk=4)
|
|
|
|
|
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Author.objects.all(), [
|
|
|
|
4, 3, 2, 1
|
|
|
|
],
|
|
|
|
attrgetter("pk")
|
2012-02-05 03:56:40 +08:00
|
|
|
)
|
|
|
|
|
2014-04-26 15:34:20 +08:00
|
|
|
def test_order_by_fk_attname(self):
|
|
|
|
"""
|
|
|
|
Ensure that ordering by a foreign key by its attribute name prevents
|
|
|
|
the query from inheriting it's related model ordering option.
|
|
|
|
Refs #19195.
|
|
|
|
"""
|
|
|
|
for i in range(1, 5):
|
|
|
|
author = Author.objects.create(pk=i)
|
|
|
|
article = getattr(self, "a%d" % (5 - i))
|
|
|
|
article.author = author
|
|
|
|
article.save(update_fields={'author'})
|
|
|
|
|
2012-02-05 03:56:40 +08:00
|
|
|
self.assertQuerysetEqual(
|
2014-04-26 15:34:20 +08:00
|
|
|
Article.objects.order_by('author_id'), [
|
2012-02-05 03:56:40 +08:00
|
|
|
"Article 4",
|
|
|
|
"Article 3",
|
|
|
|
"Article 2",
|
|
|
|
"Article 1",
|
|
|
|
],
|
|
|
|
attrgetter("headline")
|
|
|
|
)
|