summaryrefslogtreecommitdiff
path: root/django/test/client.py
AgeCommit message (Expand)Author
2023-02-17[4.2.x] Fixed #34342, Refs #33735 -- Fixed test client handling of async stre...Alexandre Spaeth
2023-02-01[4.2.x] Refs #33476 -- Applied Black's 2023 stable style.David Smith
2023-01-13Fixed #34240 -- Preserved headers of requests made with django.test.Client in...Mariusz Felisiak
2023-01-05Refs #33865 -- Improved implementation of FakePayload.Nick Pope
2022-11-14Fixed #34074 -- Added headers argument to RequestFactory and Client classes.David Wobrock
2022-11-10Updated documentation and comments for RFC updates.Nick Pope
2022-11-08Fixed #34063 -- Fixed reading request body with async request factory and cli...Scott Halgrim
2022-06-09Fixed #33755 -- Moved ASGI body-file cleanup into request class.Jonas Lundberg
2022-03-08Rewrote some references to "master".Adam Johnson
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2022-02-03Refs #33476 -- Refactored problematic code before reformatting by Black.Mariusz Felisiak
2022-01-07Fixed #28628 -- Changed \d to [0-9] in regexes where appropriate.Ad Timmering
2021-10-18Refs #32956 -- Changed docs to treat the acronym HTTP phonetically.David Smith
2021-09-24Fixed #33132 -- Fixed test client handling of querystring only redirects.Jaap Roes
2021-07-29Fixed 32956 -- Lowercased spelling of "web" and "web framework" where appropr...David Smith
2021-07-15Fixed #32929 -- Fixed handling query strings in AsyncRequestFactory.pochangl
2021-06-23Fixed #32790 -- Ensured test Client handles redirects to domain indexes witho...tomhamiltonstubber
2021-02-23Fixed #32470 -- Fixed ResolverMatch instance on test clients when request.url...Marc Gibbons
2020-11-04Fixed #32159 -- Ensured AsyncRequestFactory correctly sets headers.Carlton Gibson
2020-11-03Fixed #32162 -- Fixed setting Content-Length header in AsyncRequestFactory.Patrick Arminio
2020-10-27Fixed #32128 -- Added asgiref 3.3 compatibility.Carlton Gibson
2020-08-14Added missing items to django.test.client.__all__ and django.test.utils.__all__.Mads Jensen
2020-07-30Bumped minimum isort version to 5.1.0.David Smith
2020-05-27Fixed #31494 -- Preserved query strings when following HTTP 307/308 redirects...Ahmad A. Hussein
2020-05-11Refs #30116 -- Simplified regex match group access with Match.__getitem__().Jon Dufresne
2020-03-18Fixed #31224 -- Added support for asynchronous views and middleware.Andrew Godwin
2019-11-19Removed unnecessary numeric indexes in format strings.Jon Dufresne
2019-10-29Fixed #30899 -- Lazily compiled import time regular expressions.Hasan Ramezani
2019-10-18Fixed #28337 -- Preserved extra headers of requests made with django.test.Cli...Patrick Jenkins
2019-08-11Fixed #30677 -- Improved error message for urlencode() and Client when None i...swatantra
2019-06-17Fixed typos in FakePayload docstring and SimplifiedURLTests test name.Min ho Kim
2019-06-07Fixed #30550 -- Fixed decoding of non-UTF-8 bytes objects in response.json().Jon Dufresne
2019-03-11Minimized try block in Client.request().Jon Dufresne
2019-03-10Refs #18807 -- Removed unused exception handler from Client.request().Jon Dufresne
2019-02-20Fixed #18707 -- Added support for the test client to return 500 responses.Jon Dufresne
2019-01-25Fixed grammar in FakePayload exception message.Jon Dufresne
2018-12-27Fixed #30024 -- Made urlencode() and Client raise TypeError when None is pass...Jon Dufresne
2018-09-26Refs #29784 -- Switched to https:// links where available.Jon Dufresne
2018-08-25Fixed #29687 -- Allowed the test client to serialize list/tuple as JSON.Dan Palmer
2018-08-15Fixed #29662 -- Allowed test client to accept structured suffix JSON content ...Marnanel Thurman
2018-07-21Fixed #29576 -- Corrected the test client's HTTP_COOKIE header.Thng Kai Yuan
2018-07-09Fixed #29553 -- Made test client set Content-Length header to a string rather...Tim Graham
2018-06-27Fixed #29520 -- Fixed test client crash when posting bytes.Tim Graham
2018-02-12Refs #27795 -- Removed force_bytes() in django.test.client where possible.Tim Graham
2018-02-06Fixed #29082 -- Allowed the test client to encode JSON request data.Nick Sarbicki
2018-02-06Fixed #27999 -- Added test client support for HTTP 307 and 308 redirects.Tom
2018-01-03Fixed #28982 -- Simplified code with and/or.Дилян Палаузов
2017-12-11Fixed #28909 -- Simplified code using tuple/list/set/dict unpacking.Nick Pope
2017-11-28Fixed #28837 -- Fixed test client crash if an exception with more than one ar...Nicolas Delaby
2017-09-06Refs #23919 -- Replaced usage of django.utils.functional.curry() with functoo...Sergey Fedoseev