diff options
| author | Joseph Kocherhans <joseph@jkocherhans.com> | 2010-01-12 14:58:24 +0000 |
|---|---|---|
| committer | Joseph Kocherhans <joseph@jkocherhans.com> | 2010-01-12 14:58:24 +0000 |
| commit | 223b2721aa501a0603502d9dae499b7f21ae788f (patch) | |
| tree | bd75e7f401d978c928383abb8d8acd53d3e5ee6f /tests/regressiontests | |
| parent | eb2cbb6db10c31123d6de07a9efe49c7e854cb86 (diff) | |
Fixed #12510. Changed ModelChoiceField to stop using some of its superclasses implementation. This could cause more than one query when generating choices. Thanks, Petr Marhoun and Honza Kral.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12211 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/regressiontests')
| -rw-r--r-- | tests/regressiontests/forms/models.py | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/tests/regressiontests/forms/models.py b/tests/regressiontests/forms/models.py index 3b47b50b00..de91ec67e7 100644 --- a/tests/regressiontests/forms/models.py +++ b/tests/regressiontests/forms/models.py @@ -3,11 +3,13 @@ import datetime import tempfile import shutil -from django.db import models +from django.db import models, connection +from django.conf import settings # Can't import as "forms" due to implementation details in the test suite (the # current file is called "forms" and is already imported). from django import forms as django_forms from django.core.files.storage import FileSystemStorage +from django.test import TestCase temp_storage_location = tempfile.mkdtemp() temp_storage = FileSystemStorage(location=temp_storage_location) @@ -41,6 +43,30 @@ class FileModel(models.Model): class FileForm(django_forms.Form): file1 = django_forms.FileField() +class Group(models.Model): + name = models.CharField(max_length=10) + + def __unicode__(self): + return u'%s' % self.name + +class TestTicket12510(TestCase): + ''' It is not necessary to generate choices for ModelChoiceField (regression test for #12510). ''' + def setUp(self): + self.groups = [Group.objects.create(name=name) for name in 'abc'] + self.old_debug = settings.DEBUG + # turn debug on to get access to connection.queries + settings.DEBUG = True + + def tearDown(self): + settings.DEBUG = self.old_debug + + def test_choices_not_fetched_when_not_rendering(self): + field = django_forms.ModelChoiceField(Group.objects.order_by('-name')) + self.assertEqual('a', field.clean(self.groups[0].pk).name) + # only one query is required to pull the model from DB + self.assertEqual(1, len(connection.queries)) + + __test__ = {'API_TESTS': """ >>> from django.forms.models import ModelForm >>> from django.core.files.uploadedfile import SimpleUploadedFile |
