-
Notifications
You must be signed in to change notification settings - Fork 211
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Join style queries for dict, set, list, and embedded fields #178
Open
Molanda
wants to merge
15
commits into
django-nonrel:master
Choose a base branch
from
Molanda:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
5482782
First pass at a DictField query
Molanda 54cb134
Fixed saving after a DictField query
Molanda 13712de
Added additional field types to dot lookup
Molanda d1ec474
Updated authors
Molanda 2f12db1
Added tests for dot queries
Molanda 8897832
Added comments about Q and EmbeddedModelField
Molanda 5db46cb
Added join style query support for Q() filters
Molanda 873dbb6
Following through the models to get the correct db_columns
Molanda cb9538b
Fixed querying on a foreign key within an embedded model
Molanda 6a73282
Skipping foreign field test for now until I can test on 1.6
Molanda bd36570
Better foreign field handling and added back test for django < 1.6
Molanda 0f1707b
Recommended changes
Molanda bb8586b
Fixed ForeignKey issue with 1.6
Molanda a8e1ec6
Matching Django's method to add internal fields
Molanda 9c20733
Fixed confusion between contains and icontains
Molanda File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
from django.db import models | ||
from djangotoolbox.fields import ListField, DictField, EmbeddedModelField | ||
from django_mongodb_engine.contrib import MongoDBManager | ||
|
||
|
||
class DotQueryForeignModel(models.Model): | ||
objects = MongoDBManager() | ||
|
||
f_char = models.CharField(max_length=200, db_column='dbc_char') | ||
|
||
|
||
class DotQueryEmbeddedModel(models.Model): | ||
objects = MongoDBManager() | ||
|
||
f_int = models.IntegerField(db_column='dbc_int') | ||
f_foreign = models.ForeignKey( | ||
DotQueryForeignModel, | ||
null=True, | ||
blank=True, | ||
db_column='dbc_foreign' | ||
) | ||
|
||
|
||
class DotQueryTestModel(models.Model): | ||
objects = MongoDBManager() | ||
|
||
f_id = models.IntegerField() | ||
f_dict = DictField(db_column='dbc_dict') | ||
f_list = ListField(db_column='dbc_list') | ||
f_embedded = EmbeddedModelField( | ||
DotQueryEmbeddedModel, | ||
db_column='dbc_embedded', | ||
) | ||
f_embedded_list = ListField( | ||
EmbeddedModelField( | ||
DotQueryEmbeddedModel, | ||
db_column='dbc_embedded', | ||
), | ||
db_column='dbc_embedded_list', | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
from __future__ import with_statement | ||
from django.db.models import Q | ||
from models import * | ||
from utils import * | ||
|
||
|
||
class DotQueryTests(TestCase): | ||
"""Tests for querying on foo.bar using join syntax.""" | ||
|
||
def setUp(self): | ||
fm = DotQueryForeignModel.objects.create( | ||
f_char='hello', | ||
) | ||
DotQueryTestModel.objects.create( | ||
f_id=51, | ||
f_dict={'numbers': [1, 2, 3], 'letters': 'abc'}, | ||
f_list=[{'color': 'red'}, {'color': 'blue'}], | ||
f_embedded=DotQueryEmbeddedModel(f_int=10, f_foreign=fm), | ||
f_embedded_list=[ | ||
DotQueryEmbeddedModel(f_int=100), | ||
DotQueryEmbeddedModel(f_int=101), | ||
], | ||
) | ||
DotQueryTestModel.objects.create( | ||
f_id=52, | ||
f_dict={'numbers': [2, 3], 'letters': 'bc'}, | ||
f_list=[{'color': 'red'}, {'color': 'green'}], | ||
f_embedded=DotQueryEmbeddedModel(f_int=11), | ||
f_embedded_list=[ | ||
DotQueryEmbeddedModel(f_int=110, f_foreign=fm), | ||
DotQueryEmbeddedModel(f_int=111, f_foreign=fm), | ||
], | ||
) | ||
DotQueryTestModel.objects.create( | ||
f_id=53, | ||
f_dict={'numbers': [3, 4], 'letters': 'cd'}, | ||
f_list=[{'color': 'yellow'}, {'color': 'orange'}], | ||
f_embedded=DotQueryEmbeddedModel(f_int=12), | ||
f_embedded_list=[ | ||
DotQueryEmbeddedModel(f_int=120), | ||
DotQueryEmbeddedModel(f_int=121), | ||
], | ||
) | ||
|
||
def tearDown(self): | ||
DotQueryTestModel.objects.all().delete() | ||
DotQueryForeignModel.objects.all().delete() | ||
|
||
def test_dict_queries(self): | ||
qs = DotQueryTestModel.objects.filter(f_dict__numbers=2) | ||
self.assertEqual(qs.count(), 2) | ||
self.assertEqual(qs[0].f_id, 51) | ||
self.assertEqual(qs[1].f_id, 52) | ||
qs = DotQueryTestModel.objects.filter(f_dict__letters__contains='b') | ||
self.assertEqual(qs.count(), 2) | ||
self.assertEqual(qs[0].f_id, 51) | ||
self.assertEqual(qs[1].f_id, 52) | ||
qs = DotQueryTestModel.objects.exclude(f_dict__letters__contains='b') | ||
self.assertEqual(qs.count(), 1) | ||
self.assertEqual(qs[0].f_id, 53) | ||
qs = DotQueryTestModel.objects.exclude(f_dict__letters__icontains='B') | ||
self.assertEqual(qs.count(), 1) | ||
self.assertEqual(qs[0].f_id, 53) | ||
|
||
def test_list_queries(self): | ||
qs = DotQueryTestModel.objects.filter(f_list__color='red') | ||
qs = qs.exclude(f_list__color='green') | ||
qs = qs.exclude(f_list__color='purple') | ||
self.assertEqual(qs.count(), 1) | ||
self.assertEqual(qs[0].f_id, 51) | ||
|
||
def test_embedded_queries(self): | ||
qs = DotQueryTestModel.objects.exclude(f_embedded__f_int__in=[10, 12]) | ||
self.assertEqual(qs.count(), 1) | ||
self.assertEqual(qs[0].f_id, 52) | ||
|
||
def test_embedded_list_queries(self): | ||
qs = DotQueryTestModel.objects.get(f_embedded_list__f_int=120) | ||
self.assertEqual(qs.f_id, 53) | ||
|
||
def test_foreign_queries(self): | ||
fm = DotQueryForeignModel.objects.get(f_char='hello') | ||
qs = DotQueryTestModel.objects.get(f_embedded__f_foreign=fm) | ||
self.assertEqual(qs.f_id, 51) | ||
qs = DotQueryTestModel.objects.get(f_embedded_list__f_foreign=fm) | ||
self.assertEqual(qs.f_id, 52) | ||
qs = DotQueryTestModel.objects.get(f_embedded__f_foreign__pk=fm.pk) | ||
self.assertEqual(qs.f_id, 51) | ||
qs = DotQueryTestModel.objects.get(f_embedded_list__f_foreign__pk__exact=fm.pk) | ||
self.assertEqual(qs.f_id, 52) | ||
|
||
def test_q_queries(self): | ||
q = Q(f_dict__numbers=1) | Q(f_dict__numbers=4) | ||
q = q & Q(f_dict__numbers=3) | ||
qs = DotQueryTestModel.objects.filter(q) | ||
self.assertEqual(qs.count(), 2) | ||
self.assertEqual(qs[0].f_id, 51) | ||
self.assertEqual(qs[1].f_id, 53) | ||
|
||
def test_save_after_query(self): | ||
qs = DotQueryTestModel.objects.get(f_dict__letters='cd') | ||
self.assertEqual(qs.f_id, 53) | ||
qs.f_id = 1053 | ||
qs.clean() | ||
qs.save() | ||
qs = DotQueryTestModel.objects.get(f_dict__letters='cd') | ||
self.assertEqual(qs.f_id, 1053) | ||
qs.f_id = 53 | ||
qs.clean() | ||
qs.save() | ||
qs = DotQueryTestModel.objects.get(f_dict__letters='cd') | ||
self.assertEqual(qs.f_id, 53) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
from django.conf import settings | ||
from django.db import connections | ||
from django.db.models import Model | ||
from django.test import TestCase | ||
from django.utils.unittest import skip | ||
|
||
|
||
class TestCase(TestCase): | ||
|
||
def setUp(self): | ||
super(TestCase, self).setUp() | ||
if getattr(settings, 'TEST_DEBUG', False): | ||
settings.DEBUG = True | ||
|
||
def assertEqualLists(self, a, b): | ||
self.assertEqual(list(a), list(b)) | ||
|
||
|
||
def skip_all_except(*tests): | ||
|
||
class meta(type): | ||
|
||
def __new__(cls, name, bases, dict): | ||
for attr in dict.keys(): | ||
if attr.startswith('test_') and attr not in tests: | ||
del dict[attr] | ||
return type.__new__(cls, name, bases, dict) | ||
|
||
return meta | ||
|
||
|
||
def get_collection(model_or_name): | ||
if isinstance(model_or_name, type) and issubclass(model_or_name, Model): | ||
model_or_name = model_or_name._meta.db_table | ||
return connections['default'].get_collection(model_or_name) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,4 +17,5 @@ | |
'aggregations', | ||
'contrib', | ||
'storage', | ||
'dotquery', | ||
] |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
None of the code in this file seems to be used anywhere. Am I missing something?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I copied utils.py from the other tests. It's in aggregations, contrib, embedded, etc... It appears that it sets up a custom version of TestCase with some extra debugging support (settings.DEBUG = True). I didn't go deeply into what it does, but wanted to model my tests after the existing ones.