How to assert django uses particular template in pytest

6k views Asked by At

In the unittest style, I can test that a page uses a particular template by calling assertTemplateUsed. This is useful, for example, when Django inserts values through a template, so that I can't just test string equality.

How should I write the equivalent statement in pytest?

I've been looking in pytest-django but don't see how to do it.

3

There are 3 answers

3
jnns On BEST ANSWER

As phd stated in a comment, use the following to assert that a template file is actually used in a view:

response = client.get(article.get_absolute_url())
assert 'article_detail.html' in (t.name for t in response.templates)

Update: Since v3.8.0 (2020-01-14) pytest-django makes all of the assertions in Django's TestCase available in pytest_django.asserts. See Stan Redoute's answer for an example.

0
Agustin On

If I understand clearly, you want to test if Django renders the data that you pass to the template correctly. If this is the case, then the concepts are wrong, you should test the data gathered in your view first, and then make sure it calls the template. Testing that the template contains the correct data would be testing Django framework itself.

0
Stan Reduta On

To assert whether given template was used to render specific view you can (and even should) use helpers provided by pytest-django:

import pytest
from pytest_django.asserts import assertTemplateUsed

...

def test_should_use_correct_template_to_render_a_view(client):
    response = client.get('.../your-url/')
    assertTemplateUsed(response, 'template_name.html')

pytest-django even uses this exact assertion as an example in documentation.