tools.txt 82 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073
  1. =============
  2. Testing tools
  3. =============
  4. .. currentmodule:: django.test
  5. Django provides a small set of tools that come in handy when writing tests.
  6. .. _test-client:
  7. The test client
  8. ===============
  9. The test client is a Python class that acts as a dummy web browser, allowing
  10. you to test your views and interact with your Django-powered application
  11. programmatically.
  12. Some of the things you can do with the test client are:
  13. * Simulate GET and POST requests on a URL and observe the response --
  14. everything from low-level HTTP (result headers and status codes) to
  15. page content.
  16. * See the chain of redirects (if any) and check the URL and status code at
  17. each step.
  18. * Test that a given request is rendered by a given Django template, with
  19. a template context that contains certain values.
  20. Note that the test client is not intended to be a replacement for Selenium_ or
  21. other "in-browser" frameworks. Django's test client has a different focus. In
  22. short:
  23. * Use Django's test client to establish that the correct template is being
  24. rendered and that the template is passed the correct context data.
  25. * Use in-browser frameworks like Selenium_ to test *rendered* HTML and the
  26. *behavior* of web pages, namely JavaScript functionality. Django also
  27. provides special support for those frameworks; see the section on
  28. :class:`~django.test.LiveServerTestCase` for more details.
  29. A comprehensive test suite should use a combination of both test types.
  30. Overview and a quick example
  31. ----------------------------
  32. To use the test client, instantiate ``django.test.Client`` and retrieve
  33. web pages::
  34. >>> from django.test import Client
  35. >>> c = Client()
  36. >>> response = c.post('/login/', {'username': 'john', 'password': 'smith'})
  37. >>> response.status_code
  38. 200
  39. >>> response = c.get('/customer/details/')
  40. >>> response.content
  41. b'<!DOCTYPE html...'
  42. As this example suggests, you can instantiate ``Client`` from within a session
  43. of the Python interactive interpreter.
  44. Note a few important things about how the test client works:
  45. * The test client does *not* require the web server to be running. In fact,
  46. it will run just fine with no web server running at all! That's because
  47. it avoids the overhead of HTTP and deals directly with the Django
  48. framework. This helps make the unit tests run quickly.
  49. * When retrieving pages, remember to specify the *path* of the URL, not the
  50. whole domain. For example, this is correct::
  51. >>> c.get('/login/')
  52. This is incorrect::
  53. >>> c.get('https://www.example.com/login/')
  54. The test client is not capable of retrieving web pages that are not
  55. powered by your Django project. If you need to retrieve other web pages,
  56. use a Python standard library module such as :mod:`urllib`.
  57. * To resolve URLs, the test client uses whatever URLconf is pointed-to by
  58. your :setting:`ROOT_URLCONF` setting.
  59. * Although the above example would work in the Python interactive
  60. interpreter, some of the test client's functionality, notably the
  61. template-related functionality, is only available *while tests are
  62. running*.
  63. The reason for this is that Django's test runner performs a bit of black
  64. magic in order to determine which template was loaded by a given view.
  65. This black magic (essentially a patching of Django's template system in
  66. memory) only happens during test running.
  67. * By default, the test client will disable any CSRF checks
  68. performed by your site.
  69. If, for some reason, you *want* the test client to perform CSRF
  70. checks, you can create an instance of the test client that
  71. enforces CSRF checks. To do this, pass in the
  72. ``enforce_csrf_checks`` argument when you construct your
  73. client::
  74. >>> from django.test import Client
  75. >>> csrf_client = Client(enforce_csrf_checks=True)
  76. Making requests
  77. ---------------
  78. Use the ``django.test.Client`` class to make requests.
  79. .. class:: Client(enforce_csrf_checks=False, json_encoder=DjangoJSONEncoder, **defaults)
  80. It requires no arguments at time of construction. However, you can use
  81. keyword arguments to specify some default headers. For example, this will
  82. send a ``User-Agent`` HTTP header in each request::
  83. >>> c = Client(HTTP_USER_AGENT='Mozilla/5.0')
  84. The values from the ``extra`` keyword arguments passed to
  85. :meth:`~django.test.Client.get()`,
  86. :meth:`~django.test.Client.post()`, etc. have precedence over
  87. the defaults passed to the class constructor.
  88. The ``enforce_csrf_checks`` argument can be used to test CSRF
  89. protection (see above).
  90. The ``json_encoder`` argument allows setting a custom JSON encoder for
  91. the JSON serialization that's described in :meth:`post`.
  92. The ``raise_request_exception`` argument allows controlling whether or not
  93. exceptions raised during the request should also be raised in the test.
  94. Defaults to ``True``.
  95. Once you have a ``Client`` instance, you can call any of the following
  96. methods:
  97. .. method:: Client.get(path, data=None, follow=False, secure=False, **extra)
  98. Makes a GET request on the provided ``path`` and returns a ``Response``
  99. object, which is documented below.
  100. The key-value pairs in the ``data`` dictionary are used to create a GET
  101. data payload. For example::
  102. >>> c = Client()
  103. >>> c.get('/customers/details/', {'name': 'fred', 'age': 7})
  104. ...will result in the evaluation of a GET request equivalent to::
  105. /customers/details/?name=fred&age=7
  106. The ``extra`` keyword arguments parameter can be used to specify
  107. headers to be sent in the request. For example::
  108. >>> c = Client()
  109. >>> c.get('/customers/details/', {'name': 'fred', 'age': 7},
  110. ... HTTP_ACCEPT='application/json')
  111. ...will send the HTTP header ``HTTP_ACCEPT`` to the details view, which
  112. is a good way to test code paths that use the
  113. :meth:`django.http.HttpRequest.accepts()` method.
  114. .. admonition:: CGI specification
  115. The headers sent via ``**extra`` should follow CGI_ specification.
  116. For example, emulating a different "Host" header as sent in the
  117. HTTP request from the browser to the server should be passed
  118. as ``HTTP_HOST``.
  119. .. _CGI: https://www.w3.org/CGI/
  120. If you already have the GET arguments in URL-encoded form, you can
  121. use that encoding instead of using the data argument. For example,
  122. the previous GET request could also be posed as::
  123. >>> c = Client()
  124. >>> c.get('/customers/details/?name=fred&age=7')
  125. If you provide a URL with both an encoded GET data and a data argument,
  126. the data argument will take precedence.
  127. If you set ``follow`` to ``True`` the client will follow any redirects
  128. and a ``redirect_chain`` attribute will be set in the response object
  129. containing tuples of the intermediate urls and status codes.
  130. If you had a URL ``/redirect_me/`` that redirected to ``/next/``, that
  131. redirected to ``/final/``, this is what you'd see::
  132. >>> response = c.get('/redirect_me/', follow=True)
  133. >>> response.redirect_chain
  134. [('http://testserver/next/', 302), ('http://testserver/final/', 302)]
  135. If you set ``secure`` to ``True`` the client will emulate an HTTPS
  136. request.
  137. .. method:: Client.post(path, data=None, content_type=MULTIPART_CONTENT, follow=False, secure=False, **extra)
  138. Makes a POST request on the provided ``path`` and returns a
  139. ``Response`` object, which is documented below.
  140. The key-value pairs in the ``data`` dictionary are used to submit POST
  141. data. For example::
  142. >>> c = Client()
  143. >>> c.post('/login/', {'name': 'fred', 'passwd': 'secret'})
  144. ...will result in the evaluation of a POST request to this URL::
  145. /login/
  146. ...with this POST data::
  147. name=fred&passwd=secret
  148. If you provide ``content_type`` as :mimetype:`application/json`, the
  149. ``data`` is serialized using :func:`json.dumps` if it's a dict, list,
  150. or tuple. Serialization is performed with
  151. :class:`~django.core.serializers.json.DjangoJSONEncoder` by default,
  152. and can be overridden by providing a ``json_encoder`` argument to
  153. :class:`Client`. This serialization also happens for :meth:`put`,
  154. :meth:`patch`, and :meth:`delete` requests.
  155. If you provide any other ``content_type`` (e.g. :mimetype:`text/xml`
  156. for an XML payload), the contents of ``data`` are sent as-is in the
  157. POST request, using ``content_type`` in the HTTP ``Content-Type``
  158. header.
  159. If you don't provide a value for ``content_type``, the values in
  160. ``data`` will be transmitted with a content type of
  161. :mimetype:`multipart/form-data`. In this case, the key-value pairs in
  162. ``data`` will be encoded as a multipart message and used to create the
  163. POST data payload.
  164. To submit multiple values for a given key -- for example, to specify
  165. the selections for a ``<select multiple>`` -- provide the values as a
  166. list or tuple for the required key. For example, this value of ``data``
  167. would submit three selected values for the field named ``choices``::
  168. {'choices': ('a', 'b', 'd')}
  169. Submitting files is a special case. To POST a file, you need only
  170. provide the file field name as a key, and a file handle to the file you
  171. wish to upload as a value. For example, if your form has fields
  172. ``name`` and ``attachment``, the latter a
  173. :class:`~django.forms.FileField`::
  174. >>> c = Client()
  175. >>> with open('wishlist.doc', 'rb') as fp:
  176. ... c.post('/customers/wishes/', {'name': 'fred', 'attachment': fp})
  177. You may also provide any file-like object (e.g., :class:`~io.StringIO` or
  178. :class:`~io.BytesIO`) as a file handle. If you're uploading to an
  179. :class:`~django.db.models.ImageField`, the object needs a ``name``
  180. attribute that passes the
  181. :data:`~django.core.validators.validate_image_file_extension` validator.
  182. For example::
  183. >>> from io import BytesIO
  184. >>> img = BytesIO(b'mybinarydata')
  185. >>> img.name = 'myimage.jpg'
  186. Note that if you wish to use the same file handle for multiple
  187. ``post()`` calls then you will need to manually reset the file
  188. pointer between posts. The easiest way to do this is to
  189. manually close the file after it has been provided to
  190. ``post()``, as demonstrated above.
  191. You should also ensure that the file is opened in a way that
  192. allows the data to be read. If your file contains binary data
  193. such as an image, this means you will need to open the file in
  194. ``rb`` (read binary) mode.
  195. The ``extra`` argument acts the same as for :meth:`Client.get`.
  196. If the URL you request with a POST contains encoded parameters, these
  197. parameters will be made available in the request.GET data. For example,
  198. if you were to make the request::
  199. >>> c.post('/login/?visitor=true', {'name': 'fred', 'passwd': 'secret'})
  200. ... the view handling this request could interrogate request.POST
  201. to retrieve the username and password, and could interrogate request.GET
  202. to determine if the user was a visitor.
  203. If you set ``follow`` to ``True`` the client will follow any redirects
  204. and a ``redirect_chain`` attribute will be set in the response object
  205. containing tuples of the intermediate urls and status codes.
  206. If you set ``secure`` to ``True`` the client will emulate an HTTPS
  207. request.
  208. .. method:: Client.head(path, data=None, follow=False, secure=False, **extra)
  209. Makes a HEAD request on the provided ``path`` and returns a
  210. ``Response`` object. This method works just like :meth:`Client.get`,
  211. including the ``follow``, ``secure`` and ``extra`` arguments, except
  212. it does not return a message body.
  213. .. method:: Client.options(path, data='', content_type='application/octet-stream', follow=False, secure=False, **extra)
  214. Makes an OPTIONS request on the provided ``path`` and returns a
  215. ``Response`` object. Useful for testing RESTful interfaces.
  216. When ``data`` is provided, it is used as the request body, and
  217. a ``Content-Type`` header is set to ``content_type``.
  218. The ``follow``, ``secure`` and ``extra`` arguments act the same as for
  219. :meth:`Client.get`.
  220. .. method:: Client.put(path, data='', content_type='application/octet-stream', follow=False, secure=False, **extra)
  221. Makes a PUT request on the provided ``path`` and returns a
  222. ``Response`` object. Useful for testing RESTful interfaces.
  223. When ``data`` is provided, it is used as the request body, and
  224. a ``Content-Type`` header is set to ``content_type``.
  225. The ``follow``, ``secure`` and ``extra`` arguments act the same as for
  226. :meth:`Client.get`.
  227. .. method:: Client.patch(path, data='', content_type='application/octet-stream', follow=False, secure=False, **extra)
  228. Makes a PATCH request on the provided ``path`` and returns a
  229. ``Response`` object. Useful for testing RESTful interfaces.
  230. The ``follow``, ``secure`` and ``extra`` arguments act the same as for
  231. :meth:`Client.get`.
  232. .. method:: Client.delete(path, data='', content_type='application/octet-stream', follow=False, secure=False, **extra)
  233. Makes a DELETE request on the provided ``path`` and returns a
  234. ``Response`` object. Useful for testing RESTful interfaces.
  235. When ``data`` is provided, it is used as the request body, and
  236. a ``Content-Type`` header is set to ``content_type``.
  237. The ``follow``, ``secure`` and ``extra`` arguments act the same as for
  238. :meth:`Client.get`.
  239. .. method:: Client.trace(path, follow=False, secure=False, **extra)
  240. Makes a TRACE request on the provided ``path`` and returns a
  241. ``Response`` object. Useful for simulating diagnostic probes.
  242. Unlike the other request methods, ``data`` is not provided as a keyword
  243. parameter in order to comply with :rfc:`7231#section-4.3.8`, which
  244. mandates that TRACE requests must not have a body.
  245. The ``follow``, ``secure``, and ``extra`` arguments act the same as for
  246. :meth:`Client.get`.
  247. .. method:: Client.login(**credentials)
  248. If your site uses Django's :doc:`authentication system</topics/auth/index>`
  249. and you deal with logging in users, you can use the test client's
  250. ``login()`` method to simulate the effect of a user logging into the
  251. site.
  252. After you call this method, the test client will have all the cookies
  253. and session data required to pass any login-based tests that may form
  254. part of a view.
  255. The format of the ``credentials`` argument depends on which
  256. :ref:`authentication backend <authentication-backends>` you're using
  257. (which is configured by your :setting:`AUTHENTICATION_BACKENDS`
  258. setting). If you're using the standard authentication backend provided
  259. by Django (``ModelBackend``), ``credentials`` should be the user's
  260. username and password, provided as keyword arguments::
  261. >>> c = Client()
  262. >>> c.login(username='fred', password='secret')
  263. # Now you can access a view that's only available to logged-in users.
  264. If you're using a different authentication backend, this method may
  265. require different credentials. It requires whichever credentials are
  266. required by your backend's ``authenticate()`` method.
  267. ``login()`` returns ``True`` if it the credentials were accepted and
  268. login was successful.
  269. Finally, you'll need to remember to create user accounts before you can
  270. use this method. As we explained above, the test runner is executed
  271. using a test database, which contains no users by default. As a result,
  272. user accounts that are valid on your production site will not work
  273. under test conditions. You'll need to create users as part of the test
  274. suite -- either manually (using the Django model API) or with a test
  275. fixture. Remember that if you want your test user to have a password,
  276. you can't set the user's password by setting the password attribute
  277. directly -- you must use the
  278. :meth:`~django.contrib.auth.models.User.set_password()` function to
  279. store a correctly hashed password. Alternatively, you can use the
  280. :meth:`~django.contrib.auth.models.UserManager.create_user` helper
  281. method to create a new user with a correctly hashed password.
  282. .. method:: Client.force_login(user, backend=None)
  283. If your site uses Django's :doc:`authentication
  284. system</topics/auth/index>`, you can use the ``force_login()`` method
  285. to simulate the effect of a user logging into the site. Use this method
  286. instead of :meth:`login` when a test requires a user be logged in and
  287. the details of how a user logged in aren't important.
  288. Unlike ``login()``, this method skips the authentication and
  289. verification steps: inactive users (:attr:`is_active=False
  290. <django.contrib.auth.models.User.is_active>`) are permitted to login
  291. and the user's credentials don't need to be provided.
  292. The user will have its ``backend`` attribute set to the value of the
  293. ``backend`` argument (which should be a dotted Python path string), or
  294. to ``settings.AUTHENTICATION_BACKENDS[0]`` if a value isn't provided.
  295. The :func:`~django.contrib.auth.authenticate` function called by
  296. :meth:`login` normally annotates the user like this.
  297. This method is faster than ``login()`` since the expensive
  298. password hashing algorithms are bypassed. Also, you can speed up
  299. ``login()`` by :ref:`using a weaker hasher while testing
  300. <speeding-up-tests-auth-hashers>`.
  301. .. method:: Client.logout()
  302. If your site uses Django's :doc:`authentication system</topics/auth/index>`,
  303. the ``logout()`` method can be used to simulate the effect of a user
  304. logging out of your site.
  305. After you call this method, the test client will have all the cookies
  306. and session data cleared to defaults. Subsequent requests will appear
  307. to come from an :class:`~django.contrib.auth.models.AnonymousUser`.
  308. Testing responses
  309. -----------------
  310. The ``get()`` and ``post()`` methods both return a ``Response`` object. This
  311. ``Response`` object is *not* the same as the ``HttpResponse`` object returned
  312. by Django views; the test response object has some additional data useful for
  313. test code to verify.
  314. Specifically, a ``Response`` object has the following attributes:
  315. .. class:: Response()
  316. .. attribute:: client
  317. The test client that was used to make the request that resulted in the
  318. response.
  319. .. attribute:: content
  320. The body of the response, as a bytestring. This is the final page
  321. content as rendered by the view, or any error message.
  322. .. attribute:: context
  323. The template ``Context`` instance that was used to render the template that
  324. produced the response content.
  325. If the rendered page used multiple templates, then ``context`` will be a
  326. list of ``Context`` objects, in the order in which they were rendered.
  327. Regardless of the number of templates used during rendering, you can
  328. retrieve context values using the ``[]`` operator. For example, the
  329. context variable ``name`` could be retrieved using::
  330. >>> response = client.get('/foo/')
  331. >>> response.context['name']
  332. 'Arthur'
  333. .. admonition:: Not using Django templates?
  334. This attribute is only populated when using the
  335. :class:`~django.template.backends.django.DjangoTemplates` backend.
  336. If you're using another template engine,
  337. :attr:`~django.template.response.SimpleTemplateResponse.context_data`
  338. may be a suitable alternative on responses with that attribute.
  339. .. attribute:: exc_info
  340. A tuple of three values that provides information about the unhandled
  341. exception, if any, that occurred during the view.
  342. The values are (type, value, traceback), the same as returned by
  343. Python's :func:`sys.exc_info`. Their meanings are:
  344. - *type*: The type of the exception.
  345. - *value*: The exception instance.
  346. - *traceback*: A traceback object which encapsulates the call stack at
  347. the point where the exception originally occurred.
  348. If no exception occurred, then ``exc_info`` will be ``None``.
  349. .. method:: json(**kwargs)
  350. The body of the response, parsed as JSON. Extra keyword arguments are
  351. passed to :func:`json.loads`. For example::
  352. >>> response = client.get('/foo/')
  353. >>> response.json()['name']
  354. 'Arthur'
  355. If the ``Content-Type`` header is not ``"application/json"``, then a
  356. :exc:`ValueError` will be raised when trying to parse the response.
  357. .. attribute:: request
  358. The request data that stimulated the response.
  359. .. attribute:: wsgi_request
  360. The ``WSGIRequest`` instance generated by the test handler that
  361. generated the response.
  362. .. attribute:: status_code
  363. The HTTP status of the response, as an integer. For a full list
  364. of defined codes, see the `IANA status code registry`_.
  365. .. _IANA status code registry: https://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml
  366. .. attribute:: templates
  367. A list of ``Template`` instances used to render the final content, in
  368. the order they were rendered. For each template in the list, use
  369. ``template.name`` to get the template's file name, if the template was
  370. loaded from a file. (The name is a string such as
  371. ``'admin/index.html'``.)
  372. .. admonition:: Not using Django templates?
  373. This attribute is only populated when using the
  374. :class:`~django.template.backends.django.DjangoTemplates` backend.
  375. If you're using another template engine,
  376. :attr:`~django.template.response.SimpleTemplateResponse.template_name`
  377. may be a suitable alternative if you only need the name of the
  378. template used for rendering.
  379. .. attribute:: resolver_match
  380. An instance of :class:`~django.urls.ResolverMatch` for the response.
  381. You can use the :attr:`~django.urls.ResolverMatch.func` attribute, for
  382. example, to verify the view that served the response::
  383. # my_view here is a function based view.
  384. self.assertEqual(response.resolver_match.func, my_view)
  385. # Class-based views need to compare the view_class, as the
  386. # functions generated by as_view() won't be equal.
  387. self.assertIs(response.resolver_match.func.view_class, MyView)
  388. If the given URL is not found, accessing this attribute will raise a
  389. :exc:`~django.urls.Resolver404` exception.
  390. As with a normal response, you can also access the headers through
  391. :attr:`.HttpResponse.headers`. For example, you could determine the content
  392. type of a response using ``response.headers['Content-Type']``.
  393. Exceptions
  394. ----------
  395. If you point the test client at a view that raises an exception and
  396. ``Client.raise_request_exception`` is ``True``, that exception will be visible
  397. in the test case. You can then use a standard ``try ... except`` block or
  398. :meth:`~unittest.TestCase.assertRaises` to test for exceptions.
  399. The only exceptions that are not visible to the test client are
  400. :class:`~django.http.Http404`,
  401. :class:`~django.core.exceptions.PermissionDenied`, :exc:`SystemExit`, and
  402. :class:`~django.core.exceptions.SuspiciousOperation`. Django catches these
  403. exceptions internally and converts them into the appropriate HTTP response
  404. codes. In these cases, you can check ``response.status_code`` in your test.
  405. If ``Client.raise_request_exception`` is ``False``, the test client will return a
  406. 500 response as would be returned to a browser. The response has the attribute
  407. :attr:`~Response.exc_info` to provide information about the unhandled
  408. exception.
  409. Persistent state
  410. ----------------
  411. The test client is stateful. If a response returns a cookie, then that cookie
  412. will be stored in the test client and sent with all subsequent ``get()`` and
  413. ``post()`` requests.
  414. Expiration policies for these cookies are not followed. If you want a cookie
  415. to expire, either delete it manually or create a new ``Client`` instance (which
  416. will effectively delete all cookies).
  417. A test client has attributes that store persistent state information. You can
  418. access these properties as part of a test condition.
  419. .. attribute:: Client.cookies
  420. A Python :class:`~http.cookies.SimpleCookie` object, containing the current
  421. values of all the client cookies. See the documentation of the
  422. :mod:`http.cookies` module for more.
  423. .. attribute:: Client.session
  424. A dictionary-like object containing session information. See the
  425. :doc:`session documentation</topics/http/sessions>` for full details.
  426. To modify the session and then save it, it must be stored in a variable
  427. first (because a new ``SessionStore`` is created every time this property
  428. is accessed)::
  429. def test_something(self):
  430. session = self.client.session
  431. session['somekey'] = 'test'
  432. session.save()
  433. Setting the language
  434. --------------------
  435. When testing applications that support internationalization and localization,
  436. you might want to set the language for a test client request. The method for
  437. doing so depends on whether or not the
  438. :class:`~django.middleware.locale.LocaleMiddleware` is enabled.
  439. If the middleware is enabled, the language can be set by creating a cookie with
  440. a name of :setting:`LANGUAGE_COOKIE_NAME` and a value of the language code::
  441. from django.conf import settings
  442. def test_language_using_cookie(self):
  443. self.client.cookies.load({settings.LANGUAGE_COOKIE_NAME: 'fr'})
  444. response = self.client.get('/')
  445. self.assertEqual(response.content, b"Bienvenue sur mon site.")
  446. or by including the ``Accept-Language`` HTTP header in the request::
  447. def test_language_using_header(self):
  448. response = self.client.get('/', HTTP_ACCEPT_LANGUAGE='fr')
  449. self.assertEqual(response.content, b"Bienvenue sur mon site.")
  450. More details are in :ref:`how-django-discovers-language-preference`.
  451. If the middleware isn't enabled, the active language may be set using
  452. :func:`.translation.override`::
  453. from django.utils import translation
  454. def test_language_using_override(self):
  455. with translation.override('fr'):
  456. response = self.client.get('/')
  457. self.assertEqual(response.content, b"Bienvenue sur mon site.")
  458. More details are in :ref:`explicitly-setting-the-active-language`.
  459. Example
  460. -------
  461. The following is a unit test using the test client::
  462. import unittest
  463. from django.test import Client
  464. class SimpleTest(unittest.TestCase):
  465. def setUp(self):
  466. # Every test needs a client.
  467. self.client = Client()
  468. def test_details(self):
  469. # Issue a GET request.
  470. response = self.client.get('/customer/details/')
  471. # Check that the response is 200 OK.
  472. self.assertEqual(response.status_code, 200)
  473. # Check that the rendered context contains 5 customers.
  474. self.assertEqual(len(response.context['customers']), 5)
  475. .. seealso::
  476. :class:`django.test.RequestFactory`
  477. .. _django-testcase-subclasses:
  478. Provided test case classes
  479. ==========================
  480. Normal Python unit test classes extend a base class of
  481. :class:`unittest.TestCase`. Django provides a few extensions of this base class:
  482. .. _testcase_hierarchy_diagram:
  483. .. figure:: _images/django_unittest_classes_hierarchy.*
  484. :alt: Hierarchy of Django unit testing classes (TestCase subclasses)
  485. :width: 508
  486. :height: 328
  487. Hierarchy of Django unit testing classes
  488. You can convert a normal :class:`unittest.TestCase` to any of the subclasses:
  489. change the base class of your test from ``unittest.TestCase`` to the subclass.
  490. All of the standard Python unit test functionality will be available, and it
  491. will be augmented with some useful additions as described in each section
  492. below.
  493. ``SimpleTestCase``
  494. ------------------
  495. .. class:: SimpleTestCase()
  496. A subclass of :class:`unittest.TestCase` that adds this functionality:
  497. * Some useful assertions like:
  498. * Checking that a callable :meth:`raises a certain exception
  499. <SimpleTestCase.assertRaisesMessage>`.
  500. * Checking that a callable :meth:`triggers a certain warning
  501. <SimpleTestCase.assertWarnsMessage>`.
  502. * Testing form field :meth:`rendering and error treatment
  503. <SimpleTestCase.assertFieldOutput>`.
  504. * Testing :meth:`HTML responses for the presence/lack of a given fragment
  505. <SimpleTestCase.assertContains>`.
  506. * Verifying that a template :meth:`has/hasn't been used to generate a given
  507. response content <SimpleTestCase.assertTemplateUsed>`.
  508. * Verifying that two :meth:`URLs <SimpleTestCase.assertURLEqual>` are equal.
  509. * Verifying an HTTP :meth:`redirect <SimpleTestCase.assertRedirects>` is
  510. performed by the app.
  511. * Robustly testing two :meth:`HTML fragments <SimpleTestCase.assertHTMLEqual>`
  512. for equality/inequality or :meth:`containment <SimpleTestCase.assertInHTML>`.
  513. * Robustly testing two :meth:`XML fragments <SimpleTestCase.assertXMLEqual>`
  514. for equality/inequality.
  515. * Robustly testing two :meth:`JSON fragments <SimpleTestCase.assertJSONEqual>`
  516. for equality.
  517. * The ability to run tests with :ref:`modified settings <overriding-settings>`.
  518. * Using the :attr:`~SimpleTestCase.client` :class:`~django.test.Client`.
  519. If your tests make any database queries, use subclasses
  520. :class:`~django.test.TransactionTestCase` or :class:`~django.test.TestCase`.
  521. .. attribute:: SimpleTestCase.databases
  522. :class:`~SimpleTestCase` disallows database queries by default. This
  523. helps to avoid executing write queries which will affect other tests
  524. since each ``SimpleTestCase`` test isn't run in a transaction. If you
  525. aren't concerned about this problem, you can disable this behavior by
  526. setting the ``databases`` class attribute to ``'__all__'`` on your test
  527. class.
  528. .. warning::
  529. ``SimpleTestCase`` and its subclasses (e.g. ``TestCase``, ...) rely on
  530. ``setUpClass()`` and ``tearDownClass()`` to perform some class-wide
  531. initialization (e.g. overriding settings). If you need to override those
  532. methods, don't forget to call the ``super`` implementation::
  533. class MyTestCase(TestCase):
  534. @classmethod
  535. def setUpClass(cls):
  536. super().setUpClass()
  537. ...
  538. @classmethod
  539. def tearDownClass(cls):
  540. ...
  541. super().tearDownClass()
  542. Be sure to account for Python's behavior if an exception is raised during
  543. ``setUpClass()``. If that happens, neither the tests in the class nor
  544. ``tearDownClass()`` are run. In the case of :class:`django.test.TestCase`,
  545. this will leak the transaction created in ``super()`` which results in
  546. various symptoms including a segmentation fault on some platforms (reported
  547. on macOS). If you want to intentionally raise an exception such as
  548. :exc:`unittest.SkipTest` in ``setUpClass()``, be sure to do it before
  549. calling ``super()`` to avoid this.
  550. ``TransactionTestCase``
  551. -----------------------
  552. .. class:: TransactionTestCase()
  553. ``TransactionTestCase`` inherits from :class:`~django.test.SimpleTestCase` to
  554. add some database-specific features:
  555. * Resetting the database to a known state at the beginning of each test to
  556. ease testing and using the ORM.
  557. * Database :attr:`~TransactionTestCase.fixtures`.
  558. * Test :ref:`skipping based on database backend features <skipping-tests>`.
  559. * The remaining specialized :meth:`assert*
  560. <TransactionTestCase.assertQuerysetEqual>` methods.
  561. Django's :class:`TestCase` class is a more commonly used subclass of
  562. ``TransactionTestCase`` that makes use of database transaction facilities
  563. to speed up the process of resetting the database to a known state at the
  564. beginning of each test. A consequence of this, however, is that some database
  565. behaviors cannot be tested within a Django ``TestCase`` class. For instance,
  566. you cannot test that a block of code is executing within a transaction, as is
  567. required when using
  568. :meth:`~django.db.models.query.QuerySet.select_for_update()`. In those cases,
  569. you should use ``TransactionTestCase``.
  570. ``TransactionTestCase`` and ``TestCase`` are identical except for the manner
  571. in which the database is reset to a known state and the ability for test code
  572. to test the effects of commit and rollback:
  573. * A ``TransactionTestCase`` resets the database after the test runs by
  574. truncating all tables. A ``TransactionTestCase`` may call commit and rollback
  575. and observe the effects of these calls on the database.
  576. * A ``TestCase``, on the other hand, does not truncate tables after a test.
  577. Instead, it encloses the test code in a database transaction that is rolled
  578. back at the end of the test. This guarantees that the rollback at the end of
  579. the test restores the database to its initial state.
  580. .. warning::
  581. ``TestCase`` running on a database that does not support rollback (e.g. MySQL
  582. with the MyISAM storage engine), and all instances of ``TransactionTestCase``,
  583. will roll back at the end of the test by deleting all data from the test
  584. database.
  585. Apps :ref:`will not see their data reloaded <test-case-serialized-rollback>`;
  586. if you need this functionality (for example, third-party apps should enable
  587. this) you can set ``serialized_rollback = True`` inside the
  588. ``TestCase`` body.
  589. ``TestCase``
  590. ------------
  591. .. class:: TestCase()
  592. This is the most common class to use for writing tests in Django. It inherits
  593. from :class:`TransactionTestCase` (and by extension :class:`SimpleTestCase`).
  594. If your Django application doesn't use a database, use :class:`SimpleTestCase`.
  595. The class:
  596. * Wraps the tests within two nested :func:`~django.db.transaction.atomic`
  597. blocks: one for the whole class and one for each test. Therefore, if you want
  598. to test some specific database transaction behavior, use
  599. :class:`TransactionTestCase`.
  600. * Checks deferrable database constraints at the end of each test.
  601. It also provides an additional method:
  602. .. classmethod:: TestCase.setUpTestData()
  603. The class-level ``atomic`` block described above allows the creation of
  604. initial data at the class level, once for the whole ``TestCase``. This
  605. technique allows for faster tests as compared to using ``setUp()``.
  606. For example::
  607. from django.test import TestCase
  608. class MyTests(TestCase):
  609. @classmethod
  610. def setUpTestData(cls):
  611. # Set up data for the whole TestCase
  612. cls.foo = Foo.objects.create(bar="Test")
  613. ...
  614. def test1(self):
  615. # Some test using self.foo
  616. ...
  617. def test2(self):
  618. # Some other test using self.foo
  619. ...
  620. Note that if the tests are run on a database with no transaction support
  621. (for instance, MySQL with the MyISAM engine), ``setUpTestData()`` will be
  622. called before each test, negating the speed benefits.
  623. Objects assigned to class attributes in ``setUpTestData()`` must support
  624. creating deep copies with :py:func:`copy.deepcopy` in order to isolate them
  625. from alterations performed by each test methods.
  626. .. classmethod:: TestCase.captureOnCommitCallbacks(using=DEFAULT_DB_ALIAS, execute=False)
  627. Returns a context manager that captures :func:`transaction.on_commit()
  628. <django.db.transaction.on_commit>` callbacks for the given database
  629. connection. It returns a list that contains, on exit of the context, the
  630. captured callback functions. From this list you can make assertions on the
  631. callbacks or call them to invoke their side effects, emulating a commit.
  632. ``using`` is the alias of the database connection to capture callbacks for.
  633. If ``execute`` is ``True``, all the callbacks will be called as the context
  634. manager exits, if no exception occurred. This emulates a commit after the
  635. wrapped block of code.
  636. For example::
  637. from django.core import mail
  638. from django.test import TestCase
  639. class ContactTests(TestCase):
  640. def test_post(self):
  641. with self.captureOnCommitCallbacks(execute=True) as callbacks:
  642. response = self.client.post(
  643. '/contact/',
  644. {'message': 'I like your site'},
  645. )
  646. self.assertEqual(response.status_code, 200)
  647. self.assertEqual(len(callbacks), 1)
  648. self.assertEqual(len(mail.outbox), 1)
  649. self.assertEqual(mail.outbox[0].subject, 'Contact Form')
  650. self.assertEqual(mail.outbox[0].body, 'I like your site')
  651. .. _live-test-server:
  652. ``LiveServerTestCase``
  653. ----------------------
  654. .. class:: LiveServerTestCase()
  655. ``LiveServerTestCase`` does basically the same as
  656. :class:`~django.test.TransactionTestCase` with one extra feature: it launches a
  657. live Django server in the background on setup, and shuts it down on teardown.
  658. This allows the use of automated test clients other than the
  659. :ref:`Django dummy client <test-client>` such as, for example, the Selenium_
  660. client, to execute a series of functional tests inside a browser and simulate a
  661. real user's actions.
  662. The live server listens on ``localhost`` and binds to port 0 which uses a free
  663. port assigned by the operating system. The server's URL can be accessed with
  664. ``self.live_server_url`` during the tests.
  665. To demonstrate how to use ``LiveServerTestCase``, let's write a Selenium test.
  666. First of all, you need to install the `selenium package`_ into your Python
  667. path:
  668. .. console::
  669. $ python -m pip install selenium
  670. Then, add a ``LiveServerTestCase``-based test to your app's tests module
  671. (for example: ``myapp/tests.py``). For this example, we'll assume you're using
  672. the :mod:`~django.contrib.staticfiles` app and want to have static files served
  673. during the execution of your tests similar to what we get at development time
  674. with ``DEBUG=True``, i.e. without having to collect them using
  675. :djadmin:`collectstatic`. We'll use
  676. the :class:`~django.contrib.staticfiles.testing.StaticLiveServerTestCase`
  677. subclass which provides that functionality. Replace it with
  678. ``django.test.LiveServerTestCase`` if you don't need that.
  679. The code for this test may look as follows::
  680. from django.contrib.staticfiles.testing import StaticLiveServerTestCase
  681. from selenium.webdriver.common.by import By
  682. from selenium.webdriver.firefox.webdriver import WebDriver
  683. class MySeleniumTests(StaticLiveServerTestCase):
  684. fixtures = ['user-data.json']
  685. @classmethod
  686. def setUpClass(cls):
  687. super().setUpClass()
  688. cls.selenium = WebDriver()
  689. cls.selenium.implicitly_wait(10)
  690. @classmethod
  691. def tearDownClass(cls):
  692. cls.selenium.quit()
  693. super().tearDownClass()
  694. def test_login(self):
  695. self.selenium.get('%s%s' % (self.live_server_url, '/login/'))
  696. username_input = self.selenium.find_element(By.NAME, "username")
  697. username_input.send_keys('myuser')
  698. password_input = self.selenium.find_element(By.NAME, "password")
  699. password_input.send_keys('secret')
  700. self.selenium.find_element(By.XPATH, '//input[@value="Log in"]').click()
  701. Finally, you may run the test as follows:
  702. .. console::
  703. $ ./manage.py test myapp.tests.MySeleniumTests.test_login
  704. This example will automatically open Firefox then go to the login page, enter
  705. the credentials and press the "Log in" button. Selenium offers other drivers in
  706. case you do not have Firefox installed or wish to use another browser. The
  707. example above is just a tiny fraction of what the Selenium client can do; check
  708. out the `full reference`_ for more details.
  709. .. _Selenium: https://www.selenium.dev/
  710. .. _selenium package: https://pypi.org/project/selenium/
  711. .. _full reference: https://selenium-python.readthedocs.io/api.html
  712. .. _Firefox: https://www.mozilla.com/firefox/
  713. .. note::
  714. When using an in-memory SQLite database to run the tests, the same database
  715. connection will be shared by two threads in parallel: the thread in which
  716. the live server is run and the thread in which the test case is run. It's
  717. important to prevent simultaneous database queries via this shared
  718. connection by the two threads, as that may sometimes randomly cause the
  719. tests to fail. So you need to ensure that the two threads don't access the
  720. database at the same time. In particular, this means that in some cases
  721. (for example, just after clicking a link or submitting a form), you might
  722. need to check that a response is received by Selenium and that the next
  723. page is loaded before proceeding with further test execution.
  724. Do this, for example, by making Selenium wait until the ``<body>`` HTML tag
  725. is found in the response (requires Selenium > 2.13)::
  726. def test_login(self):
  727. from selenium.webdriver.support.wait import WebDriverWait
  728. timeout = 2
  729. ...
  730. self.selenium.find_element(By.XPATH, '//input[@value="Log in"]').click()
  731. # Wait until the response is received
  732. WebDriverWait(self.selenium, timeout).until(
  733. lambda driver: driver.find_element(By.TAG_NAME, 'body'))
  734. The tricky thing here is that there's really no such thing as a "page load,"
  735. especially in modern web apps that generate HTML dynamically after the
  736. server generates the initial document. So, checking for the presence of
  737. ``<body>`` in the response might not necessarily be appropriate for all use
  738. cases. Please refer to the `Selenium FAQ`_ and `Selenium documentation`_
  739. for more information.
  740. .. _Selenium FAQ: https://web.archive.org/web/20160129132110/http://code.google.com/p/selenium/wiki/FrequentlyAskedQuestions#Q:_WebDriver_fails_to_find_elements_/_Does_not_block_on_page_loa
  741. .. _Selenium documentation: https://www.selenium.dev/documentation/webdriver/waits/#explicit-wait
  742. Test cases features
  743. ===================
  744. Default test client
  745. -------------------
  746. .. attribute:: SimpleTestCase.client
  747. Every test case in a ``django.test.*TestCase`` instance has access to an
  748. instance of a Django test client. This client can be accessed as
  749. ``self.client``. This client is recreated for each test, so you don't have to
  750. worry about state (such as cookies) carrying over from one test to another.
  751. This means, instead of instantiating a ``Client`` in each test::
  752. import unittest
  753. from django.test import Client
  754. class SimpleTest(unittest.TestCase):
  755. def test_details(self):
  756. client = Client()
  757. response = client.get('/customer/details/')
  758. self.assertEqual(response.status_code, 200)
  759. def test_index(self):
  760. client = Client()
  761. response = client.get('/customer/index/')
  762. self.assertEqual(response.status_code, 200)
  763. ...you can refer to ``self.client``, like so::
  764. from django.test import TestCase
  765. class SimpleTest(TestCase):
  766. def test_details(self):
  767. response = self.client.get('/customer/details/')
  768. self.assertEqual(response.status_code, 200)
  769. def test_index(self):
  770. response = self.client.get('/customer/index/')
  771. self.assertEqual(response.status_code, 200)
  772. Customizing the test client
  773. ---------------------------
  774. .. attribute:: SimpleTestCase.client_class
  775. If you want to use a different ``Client`` class (for example, a subclass
  776. with customized behavior), use the :attr:`~SimpleTestCase.client_class` class
  777. attribute::
  778. from django.test import Client, TestCase
  779. class MyTestClient(Client):
  780. # Specialized methods for your environment
  781. ...
  782. class MyTest(TestCase):
  783. client_class = MyTestClient
  784. def test_my_stuff(self):
  785. # Here self.client is an instance of MyTestClient...
  786. call_some_test_code()
  787. .. _topics-testing-fixtures:
  788. Fixture loading
  789. ---------------
  790. .. attribute:: TransactionTestCase.fixtures
  791. A test case for a database-backed website isn't much use if there isn't any
  792. data in the database. Tests are more readable and it's more maintainable to
  793. create objects using the ORM, for example in :meth:`TestCase.setUpTestData`,
  794. however, you can also use fixtures.
  795. A fixture is a collection of data that Django knows how to import into a
  796. database. For example, if your site has user accounts, you might set up a
  797. fixture of fake user accounts in order to populate your database during tests.
  798. The most straightforward way of creating a fixture is to use the
  799. :djadmin:`manage.py dumpdata <dumpdata>` command. This assumes you
  800. already have some data in your database. See the :djadmin:`dumpdata
  801. documentation<dumpdata>` for more details.
  802. Once you've created a fixture and placed it in a ``fixtures`` directory in one
  803. of your :setting:`INSTALLED_APPS`, you can use it in your unit tests by
  804. specifying a ``fixtures`` class attribute on your :class:`django.test.TestCase`
  805. subclass::
  806. from django.test import TestCase
  807. from myapp.models import Animal
  808. class AnimalTestCase(TestCase):
  809. fixtures = ['mammals.json', 'birds']
  810. def setUp(self):
  811. # Test definitions as before.
  812. call_setup_methods()
  813. def test_fluffy_animals(self):
  814. # A test that uses the fixtures.
  815. call_some_test_code()
  816. Here's specifically what will happen:
  817. * At the start of each test, before ``setUp()`` is run, Django will flush the
  818. database, returning the database to the state it was in directly after
  819. :djadmin:`migrate` was called.
  820. * Then, all the named fixtures are installed. In this example, Django will
  821. install any JSON fixture named ``mammals``, followed by any fixture named
  822. ``birds``. See the :djadmin:`loaddata` documentation for more
  823. details on defining and installing fixtures.
  824. For performance reasons, :class:`TestCase` loads fixtures once for the entire
  825. test class, before :meth:`~TestCase.setUpTestData`, instead of before each
  826. test, and it uses transactions to clean the database before each test. In any case,
  827. you can be certain that the outcome of a test will not be affected by another
  828. test or by the order of test execution.
  829. By default, fixtures are only loaded into the ``default`` database. If you are
  830. using multiple databases and set :attr:`TransactionTestCase.databases`,
  831. fixtures will be loaded into all specified databases.
  832. URLconf configuration
  833. ---------------------
  834. If your application provides views, you may want to include tests that use the
  835. test client to exercise those views. However, an end user is free to deploy the
  836. views in your application at any URL of their choosing. This means that your
  837. tests can't rely upon the fact that your views will be available at a
  838. particular URL. Decorate your test class or test method with
  839. ``@override_settings(ROOT_URLCONF=...)`` for URLconf configuration.
  840. .. _testing-multi-db:
  841. Multi-database support
  842. ----------------------
  843. .. attribute:: TransactionTestCase.databases
  844. Django sets up a test database corresponding to every database that is
  845. defined in the :setting:`DATABASES` definition in your settings and referred to
  846. by at least one test through ``databases``.
  847. However, a big part of the time taken to run a Django ``TestCase`` is consumed
  848. by the call to ``flush`` that ensures that you have a clean database at the
  849. start of each test run. If you have multiple databases, multiple flushes are
  850. required (one for each database), which can be a time consuming activity --
  851. especially if your tests don't need to test multi-database activity.
  852. As an optimization, Django only flushes the ``default`` database at
  853. the start of each test run. If your setup contains multiple databases,
  854. and you have a test that requires every database to be clean, you can
  855. use the ``databases`` attribute on the test suite to request extra databases
  856. to be flushed.
  857. For example::
  858. class TestMyViews(TransactionTestCase):
  859. databases = {'default', 'other'}
  860. def test_index_page_view(self):
  861. call_some_test_code()
  862. This test case will flush the ``default`` and ``other`` test databases before
  863. running ``test_index_page_view``. You can also use ``'__all__'`` to specify
  864. that all of the test databases must be flushed.
  865. The ``databases`` flag also controls which databases the
  866. :attr:`TransactionTestCase.fixtures` are loaded into. By default, fixtures are
  867. only loaded into the ``default`` database.
  868. Queries against databases not in ``databases`` will give assertion errors to
  869. prevent state leaking between tests.
  870. .. attribute:: TestCase.databases
  871. By default, only the ``default`` database will be wrapped in a transaction
  872. during a ``TestCase``'s execution and attempts to query other databases will
  873. result in assertion errors to prevent state leaking between tests.
  874. Use the ``databases`` class attribute on the test class to request transaction
  875. wrapping against non-``default`` databases.
  876. For example::
  877. class OtherDBTests(TestCase):
  878. databases = {'other'}
  879. def test_other_db_query(self):
  880. ...
  881. This test will only allow queries against the ``other`` database. Just like for
  882. :attr:`SimpleTestCase.databases` and :attr:`TransactionTestCase.databases`, the
  883. ``'__all__'`` constant can be used to specify that the test should allow
  884. queries to all databases.
  885. .. _overriding-settings:
  886. Overriding settings
  887. -------------------
  888. .. warning::
  889. Use the functions below to temporarily alter the value of settings in tests.
  890. Don't manipulate ``django.conf.settings`` directly as Django won't restore
  891. the original values after such manipulations.
  892. .. method:: SimpleTestCase.settings()
  893. For testing purposes it's often useful to change a setting temporarily and
  894. revert to the original value after running the testing code. For this use case
  895. Django provides a standard Python context manager (see :pep:`343`) called
  896. :meth:`~django.test.SimpleTestCase.settings`, which can be used like this::
  897. from django.test import TestCase
  898. class LoginTestCase(TestCase):
  899. def test_login(self):
  900. # First check for the default behavior
  901. response = self.client.get('/sekrit/')
  902. self.assertRedirects(response, '/accounts/login/?next=/sekrit/')
  903. # Then override the LOGIN_URL setting
  904. with self.settings(LOGIN_URL='/other/login/'):
  905. response = self.client.get('/sekrit/')
  906. self.assertRedirects(response, '/other/login/?next=/sekrit/')
  907. This example will override the :setting:`LOGIN_URL` setting for the code
  908. in the ``with`` block and reset its value to the previous state afterward.
  909. .. method:: SimpleTestCase.modify_settings()
  910. It can prove unwieldy to redefine settings that contain a list of values. In
  911. practice, adding or removing values is often sufficient. Django provides the
  912. :meth:`~django.test.SimpleTestCase.modify_settings` context manager for easier
  913. settings changes::
  914. from django.test import TestCase
  915. class MiddlewareTestCase(TestCase):
  916. def test_cache_middleware(self):
  917. with self.modify_settings(MIDDLEWARE={
  918. 'append': 'django.middleware.cache.FetchFromCacheMiddleware',
  919. 'prepend': 'django.middleware.cache.UpdateCacheMiddleware',
  920. 'remove': [
  921. 'django.contrib.sessions.middleware.SessionMiddleware',
  922. 'django.contrib.auth.middleware.AuthenticationMiddleware',
  923. 'django.contrib.messages.middleware.MessageMiddleware',
  924. ],
  925. }):
  926. response = self.client.get('/')
  927. # ...
  928. For each action, you can supply either a list of values or a string. When the
  929. value already exists in the list, ``append`` and ``prepend`` have no effect;
  930. neither does ``remove`` when the value doesn't exist.
  931. .. function:: override_settings(**kwargs)
  932. In case you want to override a setting for a test method, Django provides the
  933. :func:`~django.test.override_settings` decorator (see :pep:`318`). It's used
  934. like this::
  935. from django.test import TestCase, override_settings
  936. class LoginTestCase(TestCase):
  937. @override_settings(LOGIN_URL='/other/login/')
  938. def test_login(self):
  939. response = self.client.get('/sekrit/')
  940. self.assertRedirects(response, '/other/login/?next=/sekrit/')
  941. The decorator can also be applied to :class:`~django.test.TestCase` classes::
  942. from django.test import TestCase, override_settings
  943. @override_settings(LOGIN_URL='/other/login/')
  944. class LoginTestCase(TestCase):
  945. def test_login(self):
  946. response = self.client.get('/sekrit/')
  947. self.assertRedirects(response, '/other/login/?next=/sekrit/')
  948. .. function:: modify_settings(*args, **kwargs)
  949. Likewise, Django provides the :func:`~django.test.modify_settings`
  950. decorator::
  951. from django.test import TestCase, modify_settings
  952. class MiddlewareTestCase(TestCase):
  953. @modify_settings(MIDDLEWARE={
  954. 'append': 'django.middleware.cache.FetchFromCacheMiddleware',
  955. 'prepend': 'django.middleware.cache.UpdateCacheMiddleware',
  956. })
  957. def test_cache_middleware(self):
  958. response = self.client.get('/')
  959. # ...
  960. The decorator can also be applied to test case classes::
  961. from django.test import TestCase, modify_settings
  962. @modify_settings(MIDDLEWARE={
  963. 'append': 'django.middleware.cache.FetchFromCacheMiddleware',
  964. 'prepend': 'django.middleware.cache.UpdateCacheMiddleware',
  965. })
  966. class MiddlewareTestCase(TestCase):
  967. def test_cache_middleware(self):
  968. response = self.client.get('/')
  969. # ...
  970. .. note::
  971. When given a class, these decorators modify the class directly and return
  972. it; they don't create and return a modified copy of it. So if you try to
  973. tweak the above examples to assign the return value to a different name
  974. than ``LoginTestCase`` or ``MiddlewareTestCase``, you may be surprised to
  975. find that the original test case classes are still equally affected by the
  976. decorator. For a given class, :func:`~django.test.modify_settings` is
  977. always applied after :func:`~django.test.override_settings`.
  978. .. warning::
  979. The settings file contains some settings that are only consulted during
  980. initialization of Django internals. If you change them with
  981. ``override_settings``, the setting is changed if you access it via the
  982. ``django.conf.settings`` module, however, Django's internals access it
  983. differently. Effectively, using :func:`~django.test.override_settings` or
  984. :func:`~django.test.modify_settings` with these settings is probably not
  985. going to do what you expect it to do.
  986. We do not recommend altering the :setting:`DATABASES` setting. Altering
  987. the :setting:`CACHES` setting is possible, but a bit tricky if you are
  988. using internals that make using of caching, like
  989. :mod:`django.contrib.sessions`. For example, you will have to reinitialize
  990. the session backend in a test that uses cached sessions and overrides
  991. :setting:`CACHES`.
  992. Finally, avoid aliasing your settings as module-level constants as
  993. ``override_settings()`` won't work on such values since they are
  994. only evaluated the first time the module is imported.
  995. You can also simulate the absence of a setting by deleting it after settings
  996. have been overridden, like this::
  997. @override_settings()
  998. def test_something(self):
  999. del settings.LOGIN_URL
  1000. ...
  1001. When overriding settings, make sure to handle the cases in which your app's
  1002. code uses a cache or similar feature that retains state even if the setting is
  1003. changed. Django provides the :data:`django.test.signals.setting_changed`
  1004. signal that lets you register callbacks to clean up and otherwise reset state
  1005. when settings are changed.
  1006. Django itself uses this signal to reset various data:
  1007. ================================ ========================
  1008. Overridden settings Data reset
  1009. ================================ ========================
  1010. USE_TZ, TIME_ZONE Databases timezone
  1011. TEMPLATES Template engines
  1012. SERIALIZATION_MODULES Serializers cache
  1013. LOCALE_PATHS, LANGUAGE_CODE Default translation and loaded translations
  1014. MEDIA_ROOT, DEFAULT_FILE_STORAGE Default file storage
  1015. ================================ ========================
  1016. Isolating apps
  1017. --------------
  1018. .. function:: utils.isolate_apps(*app_labels, attr_name=None, kwarg_name=None)
  1019. Registers the models defined within a wrapped context into their own
  1020. isolated :attr:`~django.apps.apps` registry. This functionality is useful
  1021. when creating model classes for tests, as the classes will be cleanly
  1022. deleted afterward, and there is no risk of name collisions.
  1023. The app labels which the isolated registry should contain must be passed as
  1024. individual arguments. You can use ``isolate_apps()`` as a decorator or a
  1025. context manager. For example::
  1026. from django.db import models
  1027. from django.test import SimpleTestCase
  1028. from django.test.utils import isolate_apps
  1029. class MyModelTests(SimpleTestCase):
  1030. @isolate_apps("app_label")
  1031. def test_model_definition(self):
  1032. class TestModel(models.Model):
  1033. pass
  1034. ...
  1035. … or::
  1036. with isolate_apps("app_label"):
  1037. class TestModel(models.Model):
  1038. pass
  1039. ...
  1040. The decorator form can also be applied to classes.
  1041. Two optional keyword arguments can be specified:
  1042. * ``attr_name``: attribute assigned the isolated registry if used as a
  1043. class decorator.
  1044. * ``kwarg_name``: keyword argument passing the isolated registry if used as
  1045. a function decorator.
  1046. The temporary ``Apps`` instance used to isolate model registration can be
  1047. retrieved as an attribute when used as a class decorator by using the
  1048. ``attr_name`` parameter::
  1049. @isolate_apps("app_label", attr_name="apps")
  1050. class TestModelDefinition(SimpleTestCase):
  1051. def test_model_definition(self):
  1052. class TestModel(models.Model):
  1053. pass
  1054. self.assertIs(self.apps.get_model("app_label", "TestModel"), TestModel)
  1055. … or alternatively as an argument on the test method when used as a method
  1056. decorator by using the ``kwarg_name`` parameter::
  1057. class TestModelDefinition(SimpleTestCase):
  1058. @isolate_apps("app_label", kwarg_name="apps")
  1059. def test_model_definition(self, apps):
  1060. class TestModel(models.Model):
  1061. pass
  1062. self.assertIs(apps.get_model("app_label", "TestModel"), TestModel)
  1063. .. _emptying-test-outbox:
  1064. Emptying the test outbox
  1065. ------------------------
  1066. If you use any of Django's custom ``TestCase`` classes, the test runner will
  1067. clear the contents of the test email outbox at the start of each test case.
  1068. For more detail on email services during tests, see `Email services`_ below.
  1069. .. _assertions:
  1070. Assertions
  1071. ----------
  1072. As Python's normal :class:`unittest.TestCase` class implements assertion methods
  1073. such as :meth:`~unittest.TestCase.assertTrue` and
  1074. :meth:`~unittest.TestCase.assertEqual`, Django's custom :class:`TestCase` class
  1075. provides a number of custom assertion methods that are useful for testing web
  1076. applications:
  1077. The failure messages given by most of these assertion methods can be customized
  1078. with the ``msg_prefix`` argument. This string will be prefixed to any failure
  1079. message generated by the assertion. This allows you to provide additional
  1080. details that may help you to identify the location and cause of a failure in
  1081. your test suite.
  1082. .. method:: SimpleTestCase.assertRaisesMessage(expected_exception, expected_message, callable, *args, **kwargs)
  1083. SimpleTestCase.assertRaisesMessage(expected_exception, expected_message)
  1084. Asserts that execution of ``callable`` raises ``expected_exception`` and
  1085. that ``expected_message`` is found in the exception's message. Any other
  1086. outcome is reported as a failure. It's a simpler version of
  1087. :meth:`unittest.TestCase.assertRaisesRegex` with the difference that
  1088. ``expected_message`` isn't treated as a regular expression.
  1089. If only the ``expected_exception`` and ``expected_message`` parameters are
  1090. given, returns a context manager so that the code being tested can be
  1091. written inline rather than as a function::
  1092. with self.assertRaisesMessage(ValueError, 'invalid literal for int()'):
  1093. int('a')
  1094. .. method:: SimpleTestCase.assertWarnsMessage(expected_warning, expected_message, callable, *args, **kwargs)
  1095. SimpleTestCase.assertWarnsMessage(expected_warning, expected_message)
  1096. Analogous to :meth:`SimpleTestCase.assertRaisesMessage` but for
  1097. :meth:`~unittest.TestCase.assertWarnsRegex` instead of
  1098. :meth:`~unittest.TestCase.assertRaisesRegex`.
  1099. .. method:: SimpleTestCase.assertFieldOutput(fieldclass, valid, invalid, field_args=None, field_kwargs=None, empty_value='')
  1100. Asserts that a form field behaves correctly with various inputs.
  1101. :param fieldclass: the class of the field to be tested.
  1102. :param valid: a dictionary mapping valid inputs to their expected cleaned
  1103. values.
  1104. :param invalid: a dictionary mapping invalid inputs to one or more raised
  1105. error messages.
  1106. :param field_args: the args passed to instantiate the field.
  1107. :param field_kwargs: the kwargs passed to instantiate the field.
  1108. :param empty_value: the expected clean output for inputs in ``empty_values``.
  1109. For example, the following code tests that an ``EmailField`` accepts
  1110. ``a@a.com`` as a valid email address, but rejects ``aaa`` with a reasonable
  1111. error message::
  1112. self.assertFieldOutput(EmailField, {'a@a.com': 'a@a.com'}, {'aaa': ['Enter a valid email address.']})
  1113. .. method:: SimpleTestCase.assertFormError(form, field, errors, msg_prefix='')
  1114. Asserts that a field on a form raises the provided list of errors.
  1115. ``form`` is a ``Form`` instance. The form must be
  1116. :ref:`bound <ref-forms-api-bound-unbound>` but not necessarily
  1117. validated (``assertFormError()`` will automatically call ``full_clean()``
  1118. on the form).
  1119. ``field`` is the name of the field on the form to check. To check the form's
  1120. :meth:`non-field errors <django.forms.Form.non_field_errors>`, use
  1121. ``field=None``.
  1122. ``errors`` is a list of all the error strings that the field is expected to
  1123. have. You can also pass a single error string if you only expect one error
  1124. which means that ``errors='error message'`` is the same as
  1125. ``errors=['error message']``.
  1126. .. versionchanged:: 4.1
  1127. In older versions, using an empty error list with ``assertFormError()``
  1128. would always pass, regardless of whether the field had any errors or
  1129. not. Starting from Django 4.1, using ``errors=[]`` will only pass if
  1130. the field actually has no errors.
  1131. Django 4.1 also changed the behavior of ``assertFormError()`` when a
  1132. field has multiple errors. In older versions, if a field had multiple
  1133. errors and you checked for only some of them, the test would pass.
  1134. Starting from Django 4.1, the error list must be an exact match to the
  1135. field's actual errors.
  1136. .. deprecated:: 4.1
  1137. Support for passing a response object and a form name to
  1138. ``assertFormError()`` is deprecated and will be removed in Django 5.0.
  1139. Use the form instance directly instead.
  1140. .. method:: SimpleTestCase.assertFormsetError(formset, form_index, field, errors, msg_prefix='')
  1141. Asserts that the ``formset`` raises the provided list of errors when
  1142. rendered.
  1143. ``formset`` is a ``Formset`` instance. The formset must be bound but not
  1144. necessarily validated (``assertFormsetError()`` will automatically call the
  1145. ``full_clean()`` on the formset).
  1146. ``form_index`` is the number of the form within the ``Formset`` (starting
  1147. from 0). Use ``form_index=None`` to check the formset's non-form errors,
  1148. i.e. the errors you get when calling ``formset.non_form_errors()``. In that
  1149. case you must also use ``field=None``.
  1150. ``field`` and ``errors`` have the same meaning as the parameters to
  1151. ``assertFormError()``.
  1152. .. deprecated:: 4.1
  1153. Support for passing a response object and a formset name to
  1154. ``assertFormsetError()`` is deprecated and will be removed in Django
  1155. 5.0. Use the formset instance directly instead.
  1156. .. method:: SimpleTestCase.assertContains(response, text, count=None, status_code=200, msg_prefix='', html=False)
  1157. Asserts that a :class:`response <django.http.HttpResponse>` produced the
  1158. given :attr:`~django.http.HttpResponse.status_code` and that ``text``
  1159. appears in its :attr:`~django.http.HttpResponse.content`. If ``count``
  1160. is provided, ``text`` must occur exactly ``count`` times in the response.
  1161. Set ``html`` to ``True`` to handle ``text`` as HTML. The comparison with
  1162. the response content will be based on HTML semantics instead of
  1163. character-by-character equality. Whitespace is ignored in most cases,
  1164. attribute ordering is not significant. See
  1165. :meth:`~SimpleTestCase.assertHTMLEqual` for more details.
  1166. .. method:: SimpleTestCase.assertNotContains(response, text, status_code=200, msg_prefix='', html=False)
  1167. Asserts that a :class:`response <django.http.HttpResponse>` produced the
  1168. given :attr:`~django.http.HttpResponse.status_code` and that ``text`` does
  1169. *not* appear in its :attr:`~django.http.HttpResponse.content`.
  1170. Set ``html`` to ``True`` to handle ``text`` as HTML. The comparison with
  1171. the response content will be based on HTML semantics instead of
  1172. character-by-character equality. Whitespace is ignored in most cases,
  1173. attribute ordering is not significant. See
  1174. :meth:`~SimpleTestCase.assertHTMLEqual` for more details.
  1175. .. method:: SimpleTestCase.assertTemplateUsed(response, template_name, msg_prefix='', count=None)
  1176. Asserts that the template with the given name was used in rendering the
  1177. response.
  1178. ``response`` must be a response instance returned by the
  1179. :class:`test client <django.test.Response>`.
  1180. ``template_name`` should be a string such as ``'admin/index.html'``.
  1181. The ``count`` argument is an integer indicating the number of times the
  1182. template should be rendered. Default is ``None``, meaning that the template
  1183. should be rendered one or more times.
  1184. You can use this as a context manager, like this::
  1185. with self.assertTemplateUsed('index.html'):
  1186. render_to_string('index.html')
  1187. with self.assertTemplateUsed(template_name='index.html'):
  1188. render_to_string('index.html')
  1189. .. method:: SimpleTestCase.assertTemplateNotUsed(response, template_name, msg_prefix='')
  1190. Asserts that the template with the given name was *not* used in rendering
  1191. the response.
  1192. You can use this as a context manager in the same way as
  1193. :meth:`~SimpleTestCase.assertTemplateUsed`.
  1194. .. method:: SimpleTestCase.assertURLEqual(url1, url2, msg_prefix='')
  1195. Asserts that two URLs are the same, ignoring the order of query string
  1196. parameters except for parameters with the same name. For example,
  1197. ``/path/?x=1&y=2`` is equal to ``/path/?y=2&x=1``, but
  1198. ``/path/?a=1&a=2`` isn't equal to ``/path/?a=2&a=1``.
  1199. .. method:: SimpleTestCase.assertRedirects(response, expected_url, status_code=302, target_status_code=200, msg_prefix='', fetch_redirect_response=True)
  1200. Asserts that the :class:`response <django.http.HttpResponse>` returned a
  1201. :attr:`~django.http.HttpResponse.status_code` redirect status, redirected
  1202. to ``expected_url`` (including any ``GET`` data), and that the final page
  1203. was received with ``target_status_code``.
  1204. If your request used the ``follow`` argument, the ``expected_url`` and
  1205. ``target_status_code`` will be the url and status code for the final
  1206. point of the redirect chain.
  1207. If ``fetch_redirect_response`` is ``False``, the final page won't be
  1208. loaded. Since the test client can't fetch external URLs, this is
  1209. particularly useful if ``expected_url`` isn't part of your Django app.
  1210. Scheme is handled correctly when making comparisons between two URLs. If
  1211. there isn't any scheme specified in the location where we are redirected to,
  1212. the original request's scheme is used. If present, the scheme in
  1213. ``expected_url`` is the one used to make the comparisons to.
  1214. .. method:: SimpleTestCase.assertHTMLEqual(html1, html2, msg=None)
  1215. Asserts that the strings ``html1`` and ``html2`` are equal. The comparison
  1216. is based on HTML semantics. The comparison takes following things into
  1217. account:
  1218. * Whitespace before and after HTML tags is ignored.
  1219. * All types of whitespace are considered equivalent.
  1220. * All open tags are closed implicitly, e.g. when a surrounding tag is
  1221. closed or the HTML document ends.
  1222. * Empty tags are equivalent to their self-closing version.
  1223. * The ordering of attributes of an HTML element is not significant.
  1224. * Boolean attributes (like ``checked``) without an argument are equal to
  1225. attributes that equal in name and value (see the examples).
  1226. * Text, character references, and entity references that refer to the same
  1227. character are equivalent.
  1228. The following examples are valid tests and don't raise any
  1229. ``AssertionError``::
  1230. self.assertHTMLEqual(
  1231. '<p>Hello <b>&#x27;world&#x27;!</p>',
  1232. '''<p>
  1233. Hello <b>&#39;world&#39;! </b>
  1234. </p>'''
  1235. )
  1236. self.assertHTMLEqual(
  1237. '<input type="checkbox" checked="checked" id="id_accept_terms" />',
  1238. '<input id="id_accept_terms" type="checkbox" checked>'
  1239. )
  1240. ``html1`` and ``html2`` must contain HTML. An ``AssertionError`` will be
  1241. raised if one of them cannot be parsed.
  1242. Output in case of error can be customized with the ``msg`` argument.
  1243. .. method:: SimpleTestCase.assertHTMLNotEqual(html1, html2, msg=None)
  1244. Asserts that the strings ``html1`` and ``html2`` are *not* equal. The
  1245. comparison is based on HTML semantics. See
  1246. :meth:`~SimpleTestCase.assertHTMLEqual` for details.
  1247. ``html1`` and ``html2`` must contain HTML. An ``AssertionError`` will be
  1248. raised if one of them cannot be parsed.
  1249. Output in case of error can be customized with the ``msg`` argument.
  1250. .. method:: SimpleTestCase.assertXMLEqual(xml1, xml2, msg=None)
  1251. Asserts that the strings ``xml1`` and ``xml2`` are equal. The
  1252. comparison is based on XML semantics. Similarly to
  1253. :meth:`~SimpleTestCase.assertHTMLEqual`, the comparison is
  1254. made on parsed content, hence only semantic differences are considered, not
  1255. syntax differences. When invalid XML is passed in any parameter, an
  1256. ``AssertionError`` is always raised, even if both strings are identical.
  1257. XML declaration, document type, processing instructions, and comments are
  1258. ignored. Only the root element and its children are compared.
  1259. Output in case of error can be customized with the ``msg`` argument.
  1260. .. method:: SimpleTestCase.assertXMLNotEqual(xml1, xml2, msg=None)
  1261. Asserts that the strings ``xml1`` and ``xml2`` are *not* equal. The
  1262. comparison is based on XML semantics. See
  1263. :meth:`~SimpleTestCase.assertXMLEqual` for details.
  1264. Output in case of error can be customized with the ``msg`` argument.
  1265. .. method:: SimpleTestCase.assertInHTML(needle, haystack, count=None, msg_prefix='')
  1266. Asserts that the HTML fragment ``needle`` is contained in the ``haystack`` one.
  1267. If the ``count`` integer argument is specified, then additionally the number
  1268. of ``needle`` occurrences will be strictly verified.
  1269. Whitespace in most cases is ignored, and attribute ordering is not
  1270. significant. See :meth:`~SimpleTestCase.assertHTMLEqual` for more details.
  1271. .. method:: SimpleTestCase.assertJSONEqual(raw, expected_data, msg=None)
  1272. Asserts that the JSON fragments ``raw`` and ``expected_data`` are equal.
  1273. Usual JSON non-significant whitespace rules apply as the heavyweight is
  1274. delegated to the :mod:`json` library.
  1275. Output in case of error can be customized with the ``msg`` argument.
  1276. .. method:: SimpleTestCase.assertJSONNotEqual(raw, expected_data, msg=None)
  1277. Asserts that the JSON fragments ``raw`` and ``expected_data`` are *not* equal.
  1278. See :meth:`~SimpleTestCase.assertJSONEqual` for further details.
  1279. Output in case of error can be customized with the ``msg`` argument.
  1280. .. method:: TransactionTestCase.assertQuerysetEqual(qs, values, transform=None, ordered=True, msg=None)
  1281. Asserts that a queryset ``qs`` matches a particular iterable of values
  1282. ``values``.
  1283. If ``transform`` is provided, ``values`` is compared to a list produced by
  1284. applying ``transform`` to each member of ``qs``.
  1285. By default, the comparison is also ordering dependent. If ``qs`` doesn't
  1286. provide an implicit ordering, you can set the ``ordered`` parameter to
  1287. ``False``, which turns the comparison into a ``collections.Counter`` comparison.
  1288. If the order is undefined (if the given ``qs`` isn't ordered and the
  1289. comparison is against more than one ordered value), a ``ValueError`` is
  1290. raised.
  1291. Output in case of error can be customized with the ``msg`` argument.
  1292. .. method:: TransactionTestCase.assertNumQueries(num, func, *args, **kwargs)
  1293. Asserts that when ``func`` is called with ``*args`` and ``**kwargs`` that
  1294. ``num`` database queries are executed.
  1295. If a ``"using"`` key is present in ``kwargs`` it is used as the database
  1296. alias for which to check the number of queries::
  1297. self.assertNumQueries(7, using='non_default_db')
  1298. If you wish to call a function with a ``using`` parameter you can do it by
  1299. wrapping the call with a ``lambda`` to add an extra parameter::
  1300. self.assertNumQueries(7, lambda: my_function(using=7))
  1301. You can also use this as a context manager::
  1302. with self.assertNumQueries(2):
  1303. Person.objects.create(name="Aaron")
  1304. Person.objects.create(name="Daniel")
  1305. .. _topics-tagging-tests:
  1306. Tagging tests
  1307. -------------
  1308. You can tag your tests so you can easily run a particular subset. For example,
  1309. you might label fast or slow tests::
  1310. from django.test import tag
  1311. class SampleTestCase(TestCase):
  1312. @tag('fast')
  1313. def test_fast(self):
  1314. ...
  1315. @tag('slow')
  1316. def test_slow(self):
  1317. ...
  1318. @tag('slow', 'core')
  1319. def test_slow_but_core(self):
  1320. ...
  1321. You can also tag a test case::
  1322. @tag('slow', 'core')
  1323. class SampleTestCase(TestCase):
  1324. ...
  1325. Subclasses inherit tags from superclasses, and methods inherit tags from their
  1326. class. Given::
  1327. @tag('foo')
  1328. class SampleTestCaseChild(SampleTestCase):
  1329. @tag('bar')
  1330. def test(self):
  1331. ...
  1332. ``SampleTestCaseChild.test`` will be labeled with ``'slow'``, ``'core'``,
  1333. ``'bar'``, and ``'foo'``.
  1334. Then you can choose which tests to run. For example, to run only fast tests:
  1335. .. console::
  1336. $ ./manage.py test --tag=fast
  1337. Or to run fast tests and the core one (even though it's slow):
  1338. .. console::
  1339. $ ./manage.py test --tag=fast --tag=core
  1340. You can also exclude tests by tag. To run core tests if they are not slow:
  1341. .. console::
  1342. $ ./manage.py test --tag=core --exclude-tag=slow
  1343. :option:`test --exclude-tag` has precedence over :option:`test --tag`, so if a
  1344. test has two tags and you select one of them and exclude the other, the test
  1345. won't be run.
  1346. .. _async-tests:
  1347. Testing asynchronous code
  1348. =========================
  1349. If you merely want to test the output of your asynchronous views, the standard
  1350. test client will run them inside their own asynchronous loop without any extra
  1351. work needed on your part.
  1352. However, if you want to write fully-asynchronous tests for a Django project,
  1353. you will need to take several things into account.
  1354. Firstly, your tests must be ``async def`` methods on the test class (in order
  1355. to give them an asynchronous context). Django will automatically detect
  1356. any ``async def`` tests and wrap them so they run in their own event loop.
  1357. If you are testing from an asynchronous function, you must also use the
  1358. asynchronous test client. This is available as ``django.test.AsyncClient``,
  1359. or as ``self.async_client`` on any test.
  1360. ``AsyncClient`` has the same methods and signatures as the synchronous (normal)
  1361. test client, with two exceptions:
  1362. * The ``follow`` parameter is not supported.
  1363. * Headers passed as ``extra`` keyword arguments should not have the ``HTTP_``
  1364. prefix required by the synchronous client (see :meth:`Client.get`). For
  1365. example, here is how to set an HTTP ``Accept`` header::
  1366. >>> c = AsyncClient()
  1367. >>> c.get(
  1368. ... '/customers/details/',
  1369. ... {'name': 'fred', 'age': 7},
  1370. ... ACCEPT='application/json'
  1371. ... )
  1372. Using ``AsyncClient`` any method that makes a request must be awaited::
  1373. async def test_my_thing(self):
  1374. response = await self.async_client.get('/some-url/')
  1375. self.assertEqual(response.status_code, 200)
  1376. The asynchronous client can also call synchronous views; it runs through
  1377. Django's :doc:`asynchronous request path </topics/async>`, which supports both.
  1378. Any view called through the ``AsyncClient`` will get an ``ASGIRequest`` object
  1379. for its ``request`` rather than the ``WSGIRequest`` that the normal client
  1380. creates.
  1381. .. warning::
  1382. If you are using test decorators, they must be async-compatible to ensure
  1383. they work correctly. Django's built-in decorators will behave correctly, but
  1384. third-party ones may appear to not execute (they will "wrap" the wrong part
  1385. of the execution flow and not your test).
  1386. If you need to use these decorators, then you should decorate your test
  1387. methods with :func:`~asgiref.sync.async_to_sync` *inside* of them instead::
  1388. from asgiref.sync import async_to_sync
  1389. from django.test import TestCase
  1390. class MyTests(TestCase):
  1391. @mock.patch(...)
  1392. @async_to_sync
  1393. async def test_my_thing(self):
  1394. ...
  1395. .. _topics-testing-email:
  1396. Email services
  1397. ==============
  1398. If any of your Django views send email using :doc:`Django's email
  1399. functionality </topics/email>`, you probably don't want to send email each time
  1400. you run a test using that view. For this reason, Django's test runner
  1401. automatically redirects all Django-sent email to a dummy outbox. This lets you
  1402. test every aspect of sending email -- from the number of messages sent to the
  1403. contents of each message -- without actually sending the messages.
  1404. The test runner accomplishes this by transparently replacing the normal
  1405. email backend with a testing backend.
  1406. (Don't worry -- this has no effect on any other email senders outside of
  1407. Django, such as your machine's mail server, if you're running one.)
  1408. .. currentmodule:: django.core.mail
  1409. .. data:: django.core.mail.outbox
  1410. During test running, each outgoing email is saved in
  1411. ``django.core.mail.outbox``. This is a list of all
  1412. :class:`~django.core.mail.EmailMessage` instances that have been sent. The
  1413. ``outbox`` attribute is a special attribute that is created *only* when the
  1414. ``locmem`` email backend is used. It doesn't normally exist as part of the
  1415. :mod:`django.core.mail` module and you can't import it directly. The code below
  1416. shows how to access this attribute correctly.
  1417. Here's an example test that examines ``django.core.mail.outbox`` for length
  1418. and contents::
  1419. from django.core import mail
  1420. from django.test import TestCase
  1421. class EmailTest(TestCase):
  1422. def test_send_email(self):
  1423. # Send message.
  1424. mail.send_mail(
  1425. 'Subject here', 'Here is the message.',
  1426. 'from@example.com', ['to@example.com'],
  1427. fail_silently=False,
  1428. )
  1429. # Test that one message has been sent.
  1430. self.assertEqual(len(mail.outbox), 1)
  1431. # Verify that the subject of the first message is correct.
  1432. self.assertEqual(mail.outbox[0].subject, 'Subject here')
  1433. As noted :ref:`previously <emptying-test-outbox>`, the test outbox is emptied
  1434. at the start of every test in a Django ``*TestCase``. To empty the outbox
  1435. manually, assign the empty list to ``mail.outbox``::
  1436. from django.core import mail
  1437. # Empty the test outbox
  1438. mail.outbox = []
  1439. .. _topics-testing-management-commands:
  1440. Management Commands
  1441. ===================
  1442. Management commands can be tested with the
  1443. :func:`~django.core.management.call_command` function. The output can be
  1444. redirected into a ``StringIO`` instance::
  1445. from io import StringIO
  1446. from django.core.management import call_command
  1447. from django.test import TestCase
  1448. class ClosepollTest(TestCase):
  1449. def test_command_output(self):
  1450. out = StringIO()
  1451. call_command('closepoll', stdout=out)
  1452. self.assertIn('Expected output', out.getvalue())
  1453. .. _skipping-tests:
  1454. Skipping tests
  1455. ==============
  1456. .. currentmodule:: django.test
  1457. The unittest library provides the :func:`@skipIf <unittest.skipIf>` and
  1458. :func:`@skipUnless <unittest.skipUnless>` decorators to allow you to skip tests
  1459. if you know ahead of time that those tests are going to fail under certain
  1460. conditions.
  1461. For example, if your test requires a particular optional library in order to
  1462. succeed, you could decorate the test case with :func:`@skipIf
  1463. <unittest.skipIf>`. Then, the test runner will report that the test wasn't
  1464. executed and why, instead of failing the test or omitting the test altogether.
  1465. To supplement these test skipping behaviors, Django provides two
  1466. additional skip decorators. Instead of testing a generic boolean,
  1467. these decorators check the capabilities of the database, and skip the
  1468. test if the database doesn't support a specific named feature.
  1469. The decorators use a string identifier to describe database features.
  1470. This string corresponds to attributes of the database connection
  1471. features class. See
  1472. :source:`django.db.backends.base.features.BaseDatabaseFeatures class
  1473. <django/db/backends/base/features.py>` for a full list of database features
  1474. that can be used as a basis for skipping tests.
  1475. .. function:: skipIfDBFeature(*feature_name_strings)
  1476. Skip the decorated test or ``TestCase`` if all of the named database features
  1477. are supported.
  1478. For example, the following test will not be executed if the database
  1479. supports transactions (e.g., it would *not* run under PostgreSQL, but
  1480. it would under MySQL with MyISAM tables)::
  1481. class MyTests(TestCase):
  1482. @skipIfDBFeature('supports_transactions')
  1483. def test_transaction_behavior(self):
  1484. # ... conditional test code
  1485. pass
  1486. .. function:: skipUnlessDBFeature(*feature_name_strings)
  1487. Skip the decorated test or ``TestCase`` if any of the named database features
  1488. are *not* supported.
  1489. For example, the following test will only be executed if the database
  1490. supports transactions (e.g., it would run under PostgreSQL, but *not*
  1491. under MySQL with MyISAM tables)::
  1492. class MyTests(TestCase):
  1493. @skipUnlessDBFeature('supports_transactions')
  1494. def test_transaction_behavior(self):
  1495. # ... conditional test code
  1496. pass