2019-02-19 14:15:03 +03:00
|
|
|
import re
|
|
|
|
|
2018-05-11 09:50:08 +03:00
|
|
|
from django.shortcuts import render
|
|
|
|
|
|
|
|
|
2021-03-17 16:24:55 +03:00
|
|
|
def test_base_template_with_context():
|
|
|
|
context = {'request': True, 'csrf_token': 'TOKEN'}
|
|
|
|
result = render({}, 'rest_framework/base.html', context=context)
|
2022-11-29 19:10:32 +03:00
|
|
|
assert re.search(r'"csrfToken": "TOKEN"', result.content.decode())
|
2021-03-17 16:24:55 +03:00
|
|
|
|
|
|
|
|
2018-05-11 09:50:08 +03:00
|
|
|
def test_base_template_with_no_context():
|
|
|
|
# base.html should be renderable with no context,
|
|
|
|
# so it can be easily extended.
|
2019-02-19 14:15:03 +03:00
|
|
|
result = render({}, 'rest_framework/base.html')
|
|
|
|
# note that this response will not include a valid CSRF token
|
2022-11-29 19:10:32 +03:00
|
|
|
assert re.search(r'"csrfToken": ""', result.content.decode())
|