#13140 closed (fixed)
Test client doesn't pass **extra to _handle_redirects
| Reported by: | David Novakovic | Owned by: | nobody |
|---|---|---|---|
| Component: | Testing framework | Version: | 1.1 |
| Severity: | Keywords: | client, test | |
| Cc: | Triage Stage: | Accepted | |
| Has patch: | no | Needs documentation: | no |
| Needs tests: | no | Patch needs improvement: | no |
| Easy pickings: | no | UI/UX: | no |
Description
Hey. This problem occurs when using the test client in follow=True mode.
When accessing a view that does a redirect, the extra param in Client.get and friends is not passed to _handle_redirects.
To reproduce simply hit a view that does a redirect like this:
client.get('/dashboard/', follow=True, HTTP_HOST="localhost")
In this case the HTTP_HOST param does not make it through to the _handle_redirects call.
Cheers
Change History (3)
comment:1 by , 16 years ago
| Triage Stage: | Unreviewed → Accepted |
|---|
comment:2 by , 15 years ago
| Resolution: | → fixed |
|---|---|
| Status: | new → closed |
comment:3 by , 15 years ago
Note:
See TracTickets
for help on using tickets.
(In [13620]) Fixed #13140 -- Ensure that request headers are preserved through redirect chains in the test client. Thanks to David Novakovic for the report.