From 082abce81e48fe9397cce096e13d5199c99adfe9 Mon Sep 17 00:00:00 2001 From: Loic Bistuer Date: Tue, 7 Oct 2014 00:09:21 +0700 Subject: [1.7.x] Fixed #23594 -- Fixed deepcopy on ErrorList. Thanks Troy Grosfield for the report and Tim Graham for the tests. Backport of ec2fd02bb3 from master --- tests/forms_tests/tests/test_util.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'tests/forms_tests') diff --git a/tests/forms_tests/tests/test_util.py b/tests/forms_tests/tests/test_util.py index 5f0b549bdb..c2dbc5ba8a 100644 --- a/tests/forms_tests/tests/test_util.py +++ b/tests/forms_tests/tests/test_util.py @@ -1,6 +1,8 @@ # -*- coding: utf-8 -*- from __future__ import unicode_literals +import copy + from django.core.exceptions import ValidationError from django.forms.utils import flatatt, ErrorDict, ErrorList from django.test import TestCase @@ -66,3 +68,24 @@ class FormsUtilTestCase(TestCase): '') self.assertHTMLEqual(str(ErrorDict({'name': mark_safe(example)})), '') + + def test_error_dict_copy(self): + e = ErrorDict() + e['__all__'] = ErrorList([ + ValidationError( + message='message %(i)s', + params={'i': 1}, + ), + ValidationError( + message='message %(i)s', + params={'i': 2}, + ), + ]) + + e_copy = copy.copy(e) + self.assertEqual(e, e_copy) + self.assertEqual(e.as_data(), e_copy.as_data()) + + e_deepcopy = copy.deepcopy(e) + self.assertEqual(e, e_deepcopy) + self.assertEqual(e.as_data(), e_copy.as_data()) -- cgit v1.3