2013-07-30 01:19:04 +08:00
|
|
|
from __future__ import unicode_literals
|
2011-10-14 05:34:56 +08:00
|
|
|
|
2009-04-01 03:55:20 +08:00
|
|
|
from django.forms.models import inlineformset_factory
|
2013-11-21 04:34:29 +08:00
|
|
|
from django.test import TestCase, skipUnlessDBFeature
|
2012-07-20 20:48:51 +08:00
|
|
|
from django.utils import six
|
2010-12-04 15:28:12 +08:00
|
|
|
|
2011-10-14 05:34:56 +08:00
|
|
|
from .models import Poet, Poem, School, Parent, Child
|
2009-04-01 03:55:20 +08:00
|
|
|
|
2010-10-14 09:40:20 +08:00
|
|
|
|
2009-04-01 03:55:20 +08:00
|
|
|
class DeletionTests(TestCase):
|
2010-10-14 09:40:20 +08:00
|
|
|
|
2009-04-01 03:55:20 +08:00
|
|
|
def test_deletion(self):
|
2013-02-22 05:56:55 +08:00
|
|
|
PoemFormSet = inlineformset_factory(Poet, Poem, can_delete=True, fields="__all__")
|
2009-04-01 03:55:20 +08:00
|
|
|
poet = Poet.objects.create(name='test')
|
2009-04-02 06:16:34 +08:00
|
|
|
poem = poet.poem_set.create(name='test poem')
|
2009-04-01 03:55:20 +08:00
|
|
|
data = {
|
2012-06-08 00:08:47 +08:00
|
|
|
'poem_set-TOTAL_FORMS': '1',
|
|
|
|
'poem_set-INITIAL_FORMS': '1',
|
|
|
|
'poem_set-MAX_NUM_FORMS': '0',
|
2009-04-02 06:16:34 +08:00
|
|
|
'poem_set-0-id': str(poem.pk),
|
|
|
|
'poem_set-0-poet': str(poet.pk),
|
2012-06-08 00:08:47 +08:00
|
|
|
'poem_set-0-name': 'test',
|
|
|
|
'poem_set-0-DELETE': 'on',
|
2009-04-01 03:55:20 +08:00
|
|
|
}
|
|
|
|
formset = PoemFormSet(data, instance=poet)
|
|
|
|
formset.save()
|
2010-12-04 15:28:12 +08:00
|
|
|
self.assertTrue(formset.is_valid())
|
2009-04-01 03:55:20 +08:00
|
|
|
self.assertEqual(Poem.objects.count(), 0)
|
|
|
|
|
|
|
|
def test_add_form_deletion_when_invalid(self):
|
|
|
|
"""
|
|
|
|
Make sure that an add form that is filled out, but marked for deletion
|
|
|
|
doesn't cause validation errors.
|
|
|
|
"""
|
2013-02-22 05:56:55 +08:00
|
|
|
PoemFormSet = inlineformset_factory(Poet, Poem, can_delete=True, fields="__all__")
|
2009-04-01 03:55:20 +08:00
|
|
|
poet = Poet.objects.create(name='test')
|
|
|
|
data = {
|
2012-06-08 00:08:47 +08:00
|
|
|
'poem_set-TOTAL_FORMS': '1',
|
|
|
|
'poem_set-INITIAL_FORMS': '0',
|
|
|
|
'poem_set-MAX_NUM_FORMS': '0',
|
|
|
|
'poem_set-0-id': '',
|
|
|
|
'poem_set-0-poem': '1',
|
|
|
|
'poem_set-0-name': 'x' * 1000,
|
2009-04-01 03:55:20 +08:00
|
|
|
}
|
|
|
|
formset = PoemFormSet(data, instance=poet)
|
|
|
|
# Make sure this form doesn't pass validation.
|
|
|
|
self.assertEqual(formset.is_valid(), False)
|
|
|
|
self.assertEqual(Poem.objects.count(), 0)
|
|
|
|
|
|
|
|
# Then make sure that it *does* pass validation and delete the object,
|
|
|
|
# even though the data isn't actually valid.
|
|
|
|
data['poem_set-0-DELETE'] = 'on'
|
|
|
|
formset = PoemFormSet(data, instance=poet)
|
|
|
|
self.assertEqual(formset.is_valid(), True)
|
|
|
|
formset.save()
|
|
|
|
self.assertEqual(Poem.objects.count(), 0)
|
|
|
|
|
|
|
|
def test_change_form_deletion_when_invalid(self):
|
|
|
|
"""
|
|
|
|
Make sure that a change form that is filled out, but marked for deletion
|
|
|
|
doesn't cause validation errors.
|
|
|
|
"""
|
2013-02-22 05:56:55 +08:00
|
|
|
PoemFormSet = inlineformset_factory(Poet, Poem, can_delete=True, fields="__all__")
|
2009-04-01 03:55:20 +08:00
|
|
|
poet = Poet.objects.create(name='test')
|
2011-03-09 08:39:35 +08:00
|
|
|
poem = poet.poem_set.create(name='test poem')
|
2009-04-01 03:55:20 +08:00
|
|
|
data = {
|
2012-06-08 00:08:47 +08:00
|
|
|
'poem_set-TOTAL_FORMS': '1',
|
|
|
|
'poem_set-INITIAL_FORMS': '1',
|
|
|
|
'poem_set-MAX_NUM_FORMS': '0',
|
2012-07-20 20:48:51 +08:00
|
|
|
'poem_set-0-id': six.text_type(poem.id),
|
|
|
|
'poem_set-0-poem': six.text_type(poem.id),
|
2012-06-08 00:08:47 +08:00
|
|
|
'poem_set-0-name': 'x' * 1000,
|
2009-04-01 03:55:20 +08:00
|
|
|
}
|
|
|
|
formset = PoemFormSet(data, instance=poet)
|
|
|
|
# Make sure this form doesn't pass validation.
|
|
|
|
self.assertEqual(formset.is_valid(), False)
|
|
|
|
self.assertEqual(Poem.objects.count(), 1)
|
|
|
|
|
|
|
|
# Then make sure that it *does* pass validation and delete the object,
|
|
|
|
# even though the data isn't actually valid.
|
|
|
|
data['poem_set-0-DELETE'] = 'on'
|
|
|
|
formset = PoemFormSet(data, instance=poet)
|
|
|
|
self.assertEqual(formset.is_valid(), True)
|
|
|
|
formset.save()
|
|
|
|
self.assertEqual(Poem.objects.count(), 0)
|
2009-05-08 17:59:46 +08:00
|
|
|
|
|
|
|
def test_save_new(self):
|
|
|
|
"""
|
|
|
|
Make sure inlineformsets respect commit=False
|
|
|
|
regression for #10750
|
|
|
|
"""
|
|
|
|
# exclude some required field from the forms
|
2010-01-12 10:29:45 +08:00
|
|
|
ChildFormSet = inlineformset_factory(School, Child, exclude=['father', 'mother'])
|
2012-06-08 00:08:47 +08:00
|
|
|
school = School.objects.create(name='test')
|
|
|
|
mother = Parent.objects.create(name='mother')
|
|
|
|
father = Parent.objects.create(name='father')
|
2009-05-08 17:59:46 +08:00
|
|
|
data = {
|
2012-06-08 00:08:47 +08:00
|
|
|
'child_set-TOTAL_FORMS': '1',
|
|
|
|
'child_set-INITIAL_FORMS': '0',
|
|
|
|
'child_set-MAX_NUM_FORMS': '0',
|
|
|
|
'child_set-0-name': 'child',
|
2009-05-08 17:59:46 +08:00
|
|
|
}
|
|
|
|
formset = ChildFormSet(data, instance=school)
|
|
|
|
self.assertEqual(formset.is_valid(), True)
|
|
|
|
objects = formset.save(commit=False)
|
2010-01-12 10:29:45 +08:00
|
|
|
for obj in objects:
|
|
|
|
obj.mother = mother
|
|
|
|
obj.father = father
|
|
|
|
obj.save()
|
2009-05-08 17:59:46 +08:00
|
|
|
self.assertEqual(school.child_set.count(), 1)
|
|
|
|
|
2010-10-14 09:40:20 +08:00
|
|
|
|
|
|
|
class InlineFormsetFactoryTest(TestCase):
|
|
|
|
def test_inline_formset_factory(self):
|
|
|
|
"""
|
|
|
|
These should both work without a problem.
|
|
|
|
"""
|
2013-02-22 05:56:55 +08:00
|
|
|
inlineformset_factory(Parent, Child, fk_name='mother', fields="__all__")
|
|
|
|
inlineformset_factory(Parent, Child, fk_name='father', fields="__all__")
|
2010-10-14 09:40:20 +08:00
|
|
|
|
|
|
|
def test_exception_on_unspecified_foreign_key(self):
|
|
|
|
"""
|
|
|
|
Child has two ForeignKeys to Parent, so if we don't specify which one
|
|
|
|
to use for the inline formset, we should get an exception.
|
|
|
|
"""
|
2013-12-09 01:20:06 +08:00
|
|
|
six.assertRaisesRegex(
|
2014-01-20 10:45:21 +08:00
|
|
|
self,
|
|
|
|
ValueError,
|
|
|
|
"'inline_formsets.Child' has more than one ForeignKey to 'inline_formsets.Parent'.",
|
2010-10-14 09:40:20 +08:00
|
|
|
inlineformset_factory, Parent, Child
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_fk_name_not_foreign_key_field_from_child(self):
|
|
|
|
"""
|
|
|
|
If we specify fk_name, but it isn't a ForeignKey from the child model
|
|
|
|
to the parent model, we should get an exception.
|
|
|
|
"""
|
2013-12-09 01:20:06 +08:00
|
|
|
self.assertRaises(
|
|
|
|
Exception,
|
2013-02-26 20:19:18 +08:00
|
|
|
"fk_name 'school' is not a ForeignKey to <class 'inline_formsets.models.Parent'>",
|
2010-10-14 09:40:20 +08:00
|
|
|
inlineformset_factory, Parent, Child, fk_name='school'
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_non_foreign_key_field(self):
|
|
|
|
"""
|
|
|
|
If the field specified in fk_name is not a ForeignKey, we should get an
|
|
|
|
exception.
|
|
|
|
"""
|
2013-12-09 01:20:06 +08:00
|
|
|
six.assertRaisesRegex(
|
2014-01-20 10:45:21 +08:00
|
|
|
self, ValueError,
|
|
|
|
"'inline_formsets.Child' has no field named 'test'.",
|
2010-10-14 09:40:20 +08:00
|
|
|
inlineformset_factory, Parent, Child, fk_name='test'
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_any_iterable_allowed_as_argument_to_exclude(self):
|
|
|
|
# Regression test for #9171.
|
|
|
|
inlineformset_factory(
|
|
|
|
Parent, Child, exclude=['school'], fk_name='mother'
|
|
|
|
)
|
|
|
|
|
|
|
|
inlineformset_factory(
|
|
|
|
Parent, Child, exclude=('school',), fk_name='mother'
|
|
|
|
)
|
2013-11-21 04:34:29 +08:00
|
|
|
|
2013-11-24 21:12:22 +08:00
|
|
|
@skipUnlessDBFeature('allows_auto_pk_0')
|
2013-11-21 04:34:29 +08:00
|
|
|
def test_zero_primary_key(self):
|
|
|
|
# Regression test for #21472
|
|
|
|
poet = Poet.objects.create(id=0, name='test')
|
2013-11-23 01:10:18 +08:00
|
|
|
poet.poem_set.create(name='test poem')
|
2013-11-21 04:34:29 +08:00
|
|
|
PoemFormSet = inlineformset_factory(Poet, Poem, fields="__all__", extra=0)
|
|
|
|
formset = PoemFormSet(None, instance=poet)
|
|
|
|
self.assertEqual(len(formset.forms), 1)
|