summaryrefslogtreecommitdiff
path: root/tests/forms_tests
diff options
context:
space:
mode:
authorChris Jerdonek <chris.jerdonek@gmail.com>2021-07-13 22:15:13 -0400
committerCarlton Gibson <carlton.gibson@noumenal.es>2021-07-16 15:51:20 +0200
commit0dc25526d8daaaa59968d4b1b597968e197f040c (patch)
treebde70ecd2cf8000c08553274903ac42bad86bd00 /tests/forms_tests
parent788441c6ab4e0167aadc155a4362a87694e38aa5 (diff)
Fixed #32924 -- Changed BaseForm.get_initial_for_field() to remove microseconds when needed.
Diffstat (limited to 'tests/forms_tests')
-rw-r--r--tests/forms_tests/tests/test_forms.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/forms_tests/tests/test_forms.py b/tests/forms_tests/tests/test_forms.py
index b4fb5737af..f3ee64ceda 100644
--- a/tests/forms_tests/tests/test_forms.py
+++ b/tests/forms_tests/tests/test_forms.py
@@ -1983,11 +1983,15 @@ Password: <input type="password" name="password" required></li>
)
def test_get_initial_for_field(self):
+ now = datetime.datetime(2006, 10, 25, 14, 30, 45, 123456)
+
class PersonForm(Form):
first_name = CharField(initial='John')
last_name = CharField(initial='Doe')
age = IntegerField()
occupation = CharField(initial=lambda: 'Unknown')
+ dt_fixed = DateTimeField(initial=now)
+ dt_callable = DateTimeField(initial=lambda: now)
form = PersonForm(initial={'first_name': 'Jane'})
cases = [
@@ -1997,6 +2001,9 @@ Password: <input type="password" name="password" required></li>
('first_name', 'Jane'),
# Callables are evaluated.
('occupation', 'Unknown'),
+ # Microseconds are removed from datetimes.
+ ('dt_fixed', datetime.datetime(2006, 10, 25, 14, 30, 45)),
+ ('dt_callable', datetime.datetime(2006, 10, 25, 14, 30, 45)),
]
for field_name, expected in cases:
with self.subTest(field_name=field_name):
@@ -2104,6 +2111,8 @@ Password: <input type="password" name="password" required></li>
supports_microseconds = False
class DateTimeForm(Form):
+ # Test a non-callable.
+ fixed = DateTimeField(initial=now)
auto_timestamp = DateTimeField(initial=delayed_now)
auto_time_only = TimeField(initial=delayed_now_time)
supports_microseconds = DateTimeField(initial=delayed_now, widget=TextInput)
@@ -2113,6 +2122,7 @@ Password: <input type="password" name="password" required></li>
unbound = DateTimeForm()
cases = [
+ ('fixed', now_no_ms),
('auto_timestamp', now_no_ms),
('auto_time_only', now_no_ms.time()),
('supports_microseconds', now),
@@ -2124,6 +2134,10 @@ Password: <input type="password" name="password" required></li>
with self.subTest(field_name=field_name):
actual = unbound[field_name].value()
self.assertEqual(actual, expected)
+ # Also check get_initial_for_field().
+ field = unbound.fields[field_name]
+ actual = unbound.get_initial_for_field(field, field_name)
+ self.assertEqual(actual, expected)
def get_datetime_form_with_callable_initial(self, disabled, microseconds=0):
class FakeTime: