Create a Django request object that mocks a real one.
Project description
Django Request Mock
===================
Django Request Mock is an helper that allows you to generate synthetic request objects that mimic a real one, generated after a real request is being received by the framework.
Useful when coding in an HTTP isolated environment, which prevents you from accessing the request object, such as a cron method or a Celery task. This allows you to render templates and build absolute URIs from such contexts, for instance.
The request object is generated using your settings, and by default contains all the values of a request being sent to your website's default domain, using the SITE_URL configuration variable (can be of that form: https://example.com/)
## Configuration
* Ensure `SITE_URL` is defined in your **settings.py**, with a value such as 'https://example.com/'
* When you need to generate a request mock object, simply use the following code:
```python
from request_mock import request_mock
# Generate the mock object
# request_mock(base, path, user) where each argument is optional
request = request_mock()
# Can also be
request = request_mock(
base='https://other.org/',
path='/some/path/for/mock/request/',
user=User.objects.get(username='dummy.user')
)
```
* All done!
===================
Django Request Mock is an helper that allows you to generate synthetic request objects that mimic a real one, generated after a real request is being received by the framework.
Useful when coding in an HTTP isolated environment, which prevents you from accessing the request object, such as a cron method or a Celery task. This allows you to render templates and build absolute URIs from such contexts, for instance.
The request object is generated using your settings, and by default contains all the values of a request being sent to your website's default domain, using the SITE_URL configuration variable (can be of that form: https://example.com/)
## Configuration
* Ensure `SITE_URL` is defined in your **settings.py**, with a value such as 'https://example.com/'
* When you need to generate a request mock object, simply use the following code:
```python
from request_mock import request_mock
# Generate the mock object
# request_mock(base, path, user) where each argument is optional
request = request_mock()
# Can also be
request = request_mock(
base='https://other.org/',
path='/some/path/for/mock/request/',
user=User.objects.get(username='dummy.user')
)
```
* All done!
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-request-mock-0.1.4.tar.gz
.
File metadata
- Download URL: django-request-mock-0.1.4.tar.gz
- Upload date:
- Size: 2.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c9db369ee9ed004e8d468ed42d1db74ee8f452942c498d1e18e2cdf981faab99 |
|
MD5 | b6de95431a907d44d5f2e562ccf8a9fb |
|
BLAKE2b-256 | c1778e369e3f5c965c54e426d6ae2a8f9ef6c01cb90ec6641152340e8a48227c |