When debugging tests you frequently need to inspect response content, making a pdb. set_trace() breakpoint and printing response.content
but html isn't enough human readable (even for programmers :D) so, why not open it in your browser? Suposse you save this code in utils.py and you break your testcase as this:
response = self.client.get(self.url)
import pdb; pdb.set_trace()
Then:
(pdb) from utils import load_response_on_firefox
(pdb) load_response_on_firefox(response)
Ta-Da!
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | def dump_response_on_file(response, filepath=None):
"""Useful when debugging responses. Calls to this method should not be
committed."""
if not filepath:
from tempfile import mkstemp
_, filepath = mkstemp(text=True)
f = file(filepath, 'w')
f.write(response.content)
f.close()
return filepath
def load_response_on_firefox(response):
""" load html of a response for debugging purposes
Attention: Calls to this method should not be
committed.
"""
import subprocess
fpath = dump_response_on_file(response)
subprocess.call(['firefox', fpath])
|
More like this
- Form field with fixed value by roam 4 days, 14 hours ago
- New Snippet! by Antoliny0919 1 week, 4 days ago
- Add Toggle Switch Widget to Django Forms by OgliariNatan 3 months ago
- get_object_or_none by azwdevops 6 months, 3 weeks ago
- Mask sensitive data from logger by agusmakmun 8 months, 2 weeks ago
Comments
Please login first before commenting.