Add Extra Headers to Test Client Requests

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
"""
example of using the **extra kwarg param to add headers to the test client request
"""
from django.test.utils import setup_test_environment
setup_test_environment()
from django.test.client import Client
c = Client()

#example using a query string param
c.get('/some/path/', {'qs_param':'foo'}, **{'HTTP_USER_AGENT':'silly-human', 'REMOTE_ADDR':'127.0.0.1'})

#example without a query string param
c.get('/some/path/', **{'HTTP_USER_AGENT':'silly-human', 'REMOTE_ADDR':'127.0.0.1'})

More like this

  1. Effective content caching for mass-load site using redirect feature by nnseva 7 months ago
  2. django soaplib test client by erny 2 years, 10 months ago
  3. "Zoom in" on rendered HTML that the test client returns by peterbe 2 years, 9 months ago
  4. Simple Exception Response for AJAX debugging by newmaniese 3 years, 10 months ago
  5. SSL Middleware by sjzabel 4 years, 11 months ago

Comments

(Forgotten your password?)