summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2010-07-20 19:33:32 +0000
committerAlex Gaynor <alex.gaynor@gmail.com>2010-07-20 19:33:32 +0000
commit9944d8d5efbe514e8de1d9adcc316a61fded3b65 (patch)
tree6ba9d2bcf1b77b8b3081aac5e0be055a6e7db4e6 /tests
parent9c6e1c89c595de5b6bd3180d59faf944a3093d6d (diff)
[soc2010/query-refactor] Added a ListField, currently only works on MongoDB.
git-svn-id: http://code.djangoproject.com/svn/django/branches/soc2010/query-refactor@13441 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests')
-rw-r--r--tests/regressiontests/mongodb/models.py12
-rw-r--r--tests/regressiontests/mongodb/tests.py72
2 files changed, 74 insertions, 10 deletions
diff --git a/tests/regressiontests/mongodb/models.py b/tests/regressiontests/mongodb/models.py
index 274c1936a1..f0d950dcbb 100644
--- a/tests/regressiontests/mongodb/models.py
+++ b/tests/regressiontests/mongodb/models.py
@@ -19,3 +19,15 @@ class Group(models.Model):
name = models.CharField(max_length=255)
year_formed = models.IntegerField(null=True)
+
+class Post(models.Model):
+ id = models.NativeAutoField(primary_key=True)
+ title = models.CharField(max_length=255)
+
+ tags = models.ListField(
+ models.CharField(max_length=255)
+ )
+
+ magic_numbers = models.ListField(
+ models.IntegerField()
+ )
diff --git a/tests/regressiontests/mongodb/tests.py b/tests/regressiontests/mongodb/tests.py
index 42a45621e0..81b780b8ff 100644
--- a/tests/regressiontests/mongodb/tests.py
+++ b/tests/regressiontests/mongodb/tests.py
@@ -2,10 +2,18 @@ from django.db import connection, UnsupportedDatabaseOperation
from django.db.models import Count, Sum, F, Q
from django.test import TestCase
-from models import Artist, Group
+from models import Artist, Group, Post
class MongoTestCase(TestCase):
+ def assert_unsupported(self, obj):
+ if callable(obj):
+ # Queryset wrapped in a function (for aggregates and such)
+ self.assertRaises(UnsupportedDatabaseOperation, obj)
+ else:
+ # Just a queryset that blows up on evaluation
+ self.assertRaises(UnsupportedDatabaseOperation, list, obj)
+
def test_create(self):
b = Artist.objects.create(name="Bruce Springsteen", good=True)
self.assertTrue(b.pk is not None)
@@ -359,15 +367,7 @@ class MongoTestCase(TestCase):
# Ensure that closing a connection that was never established doesn't
# blow up.
connection.close()
-
- def assert_unsupported(self, obj):
- if callable(obj):
- # Queryset wrapped in a function (for aggregates and such)
- self.assertRaises(UnsupportedDatabaseOperation, obj)
- else:
- # Just a queryset that blows up on evaluation
- self.assertRaises(UnsupportedDatabaseOperation, list, obj)
-
+
def test_unsupported_ops(self):
self.assert_unsupported(
Artist.objects.filter(current_group__name="The Beatles")
@@ -396,3 +396,55 @@ class MongoTestCase(TestCase):
self.assert_unsupported(
Artist.objects.filter(Q(pk=0) | Q(pk=1))
)
+
+ def test_list_field(self):
+ p = Post.objects.create(
+ title="Django ORM grows MongoDB support",
+ tags=["python", "django", "mongodb", "web"]
+ )
+
+ self.assertEqual(p.tags, ["python", "django", "mongodb", "web"])
+
+ p = Post.objects.get(pk=p.pk)
+ self.assertEqual(p.tags, ["python", "django", "mongodb", "web"])
+
+ p = Post.objects.create(
+ title="Rails 3.0 Released",
+ tags=["ruby", "rails", "release", "web"],
+ )
+
+ self.assertQuerysetEqual(
+ Post.objects.filter(tags="web"), [
+ "Django ORM grows MongoDB support",
+ "Rails 3.0 Released",
+ ],
+ lambda p: p.title,
+ )
+
+ self.assertQuerysetEqual(
+ Post.objects.filter(tags="python"), [
+ "Django ORM grows MongoDB support",
+ ],
+ lambda p: p.title
+ )
+
+ self.assertRaises(ValueError,
+ lambda: Post.objects.create(magic_numbers=["a"])
+ )
+
+ p = Post.objects.create(
+ title="Simon the Wizard",
+ magic_numbers=["42"]
+ )
+ self.assertQuerysetEqual(
+ Post.objects.filter(magic_numbers=42), [
+ "Simon the Wizard",
+ ],
+ lambda p: p.title,
+ )
+ self.assertQuerysetEqual(
+ Post.objects.filter(magic_numbers="42"), [
+ "Simon the Wizard",
+ ],
+ lambda p: p.title,
+ )