summaryrefslogtreecommitdiff
path: root/tests/validators/tests.py
Commit message (Expand)AuthorAgeFilesLines
* Fixed #34014 -- Fixed DecimalValidator validating 0 in positive exponent scie...Kamil Turek2022-09-171-0/+1
* Fixed #32559 -- Added 'step_size’ to numeric form fields.Kapil Bansal2022-05-121-0/+18
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-515/+568
* Refs #33476 -- Refactored problematic code before reformatting by Black.Mariusz Felisiak2022-02-031-2/+1
* Refs #31670 -- Removed whitelist argument and domain_whitelist attribute in E...Mariusz Felisiak2021-09-201-41/+1
* Refs #22123 -- Added more URLValidator test for invalid IPv6 literals.Mariusz Felisiak2021-08-061-0/+3
* Fixed #32959 -- Moved tests URLs to validators.tests.chrishna12021-07-281-27/+225
* Fixed CVE-2021-33571 -- Prevented leading zeros in IPv4 addresses.Mariusz Felisiak2021-06-021-0/+20
* Fixed #32713, Fixed CVE-2021-32052 -- Prevented newlines and tabs from being ...Mariusz Felisiak2021-05-061-1/+7
* Fixed typo in DecimalValidator tests.Claudio Catterina2020-07-161-1/+1
* Refs #31670 -- Renamed whitelist argument and attribute of EmailValidator.David Smith2020-06-181-2/+42
* Fixed #31548 -- Fixed URLValidator crash on non-strings.Yash Saini2020-05-081-0/+2
* Added URLValidator test for missing scheme.Yash Saini2020-05-081-0/+1
* Fixed #30651 -- Made __eq__() methods return NotImplemented for not implement...ElizabethU2019-10-011-1/+2
* Fixed #29860 -- Allowed BaseValidator to accept a callable limit_value.buzzi2018-10-221-0/+4
* Refactored validators tests to use subtests.Tom Forbes2018-08-181-45/+16
* Fixed #29007 -- Fixed DecimalValidator crash on NaN, SNan, Inf, and Infinity ...Fabio Bonelli2018-01-101-0/+8
* Fixed #28562 -- Fixed DecimalValidator handling of positive exponent scientif...Josh Schneier2017-09-271-0/+1
* Added tests for DecimalValidator.Josh Schneier2017-09-111-0/+12
* Fixed #28201 -- Added ProhibitNullCharactersValidator and used it on CharFiel...Alejandro Zamora2017-08-121-5/+27
* Used assertRaisesMessage() to test Django's error messages.Mads Jensen2017-07-291-1/+2
* Fixed #28165 -- Ignored case in FileExtensionValidator's allowed_extensions.Arne de Laat2017-06-071-0/+9
* Added FileExtensionValidator tests for uppercase and missing file extensions.Arne de Laat2017-06-071-1/+7
* Refs #23919 -- Removed str_prefix usageClaude Paroz2017-01-201-7/+6
* Refs #23919 -- Removed django.utils._os.upath()/npath()/abspathu() usage.Tim Graham2017-01-201-2/+1
* Refs #23919 -- Replaced io.open() with open().Aymeric Augustin2017-01-181-3/+2
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-181-3/+0
* Fixed E305 flake8 warnings.Ramin Farajpour Cami2016-11-141-0/+2
* Refs #27392 -- Removed "Tests that", "Ensures that", etc. from test docstrings.za2016-11-101-1/+1
* Fixed #26578 -- Prohibited non-ASCII digits in validate_ipv4_address.wim glenn2016-10-281-0/+1
* Refs #21548 -- Skipped tests that rely on pillow when it's not installedBaptiste Mispelon2016-07-021-1/+11
* Fixed #21548 -- Added FileExtensionValidator and validate_image_file_extension.Berker Peksag2016-06-301-4/+47
* Replaced use of TestCase.fail() with assertRaises().Tim Graham2016-06-281-5/+1
* Fixed #26107 -- Added option to int_list_validator() to allow negative integers.Akshesh2016-02-181-0/+5
* Fixed #25635 -- Made URLValidator allow '+' in scheme.Dheerendra Rathor2015-10-311-1/+2
* Fixed #24636 -- Added model field validation for decimal places and max digits.Iulia Chiriac2015-09-181-5/+24
* Fixed #16501 -- Added an allow_unicode parameter to SlugField.Edward Henderson2015-07-171-1/+22
* Fixed catastrophic backtracking in URLValidator.Shai Berger2015-07-081-0/+3
* Prevented newlines from being accepted in some validators.Tim Graham2015-07-081-1/+14
* Fixed #24349 -- Limited domain name labels to 63 characters in EmailValidatorAnoop Thomas Mathew2015-04-171-3/+8
* Fixed #24531 -- Improved CommaSeparatedIntegerField validation.Bertrand Bordage2015-03-251-4/+15
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-3/+2
* Refactored URLValidator tests by moving URLs to text files.Danilo Bargen2014-11-031-30/+18
* Fixed #16617 -- Added 'value' to BaseValidator params.Anubhav Joshi2014-07-261-1/+7
* Corrected domain max length for EmailValidator; refs #20631.Tim Graham2014-07-041-3/+3
* Fixed #20631 -- Increased the default EmailField max_length to 254.Tim Graham2014-07-041-0/+3
* Fixed #22579 -- Corrected validation for email to reject trailing slashErik Romijn2014-05-161-0/+2
* Fixed #22588 -- Fix RegexValidator __eq__David Szotten2014-05-081-0/+27
* Fix many many typos in comments throughout the codebaseAlex Gaynor2014-04-261-1/+1
* Fixed #22255 -- Added support for specifying re flags in RegexValidatorDejan Noveski2014-03-211-0/+12