From 244a5d0006cc831e35e87d2586bb3b6e9ec5926f Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Thu, 10 May 2007 13:48:18 +0000 Subject: [PATCH] Added the actual assertFormError changes, accidentally omitted from [5181]. git-svn-id: http://code.djangoproject.com/svn/django/trunk@5182 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/test/testcases.py | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/django/test/testcases.py b/django/test/testcases.py index fcf6ccec4d..788e215ca1 100644 --- a/django/test/testcases.py +++ b/django/test/testcases.py @@ -105,18 +105,21 @@ class TestCase(unittest.TestCase): for i,context in enumerate(contexts): if form in context: found_form = True - try: - for err in errors: - if field: + for err in errors: + if field: + if field in context[form].errors: self.assertTrue(err in context[form].errors[field], - "The field '%s' on form '%s' in context %d does not contain the error '%s' (actual errors: %s)" % - (field, form, i, err, list(context[form].errors[field]))) + "The field '%s' on form '%s' in context %d does not contain the error '%s' (actual errors: %s)" % + (field, form, i, err, list(context[form].errors[field]))) + elif field in context[form].fields: + self.fail("The field '%s' on form '%s' in context %d contains no errors" % + (field, form, i)) else: - self.assertTrue(err in context[form].non_field_errors(), - "The form '%s' in context %d does not contain the non-field error '%s' (actual errors: %s)" % - (form, i, err, list(context[form].non_field_errors()))) - except KeyError: - self.fail("The form '%s' in context %d does not contain the field '%s'" % (form, i, field)) + self.fail("The form '%s' in context %d does not contain the field '%s'" % (form, i, field)) + else: + self.assertTrue(err in context[form].non_field_errors(), + "The form '%s' in context %d does not contain the non-field error '%s' (actual errors: %s)" % + (form, i, err, list(context[form].non_field_errors()))) if not found_form: self.fail("The form '%s' was not used to render the response" % form)