tools.txt 63 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596
  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. '<!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('http://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` or
  57. :mod:`urllib2`.
  58. * To resolve URLs, the test client uses whatever URLconf is pointed-to by
  59. your :setting:`ROOT_URLCONF` setting.
  60. * Although the above example would work in the Python interactive
  61. interpreter, some of the test client's functionality, notably the
  62. template-related functionality, is only available *while tests are
  63. running*.
  64. The reason for this is that Django's test runner performs a bit of black
  65. magic in order to determine which template was loaded by a given view.
  66. This black magic (essentially a patching of Django's template system in
  67. memory) only happens during test running.
  68. * By default, the test client will disable any CSRF checks
  69. performed by your site.
  70. If, for some reason, you *want* the test client to perform CSRF
  71. checks, you can create an instance of the test client that
  72. enforces CSRF checks. To do this, pass in the
  73. ``enforce_csrf_checks`` argument when you construct your
  74. client::
  75. >>> from django.test import Client
  76. >>> csrf_client = Client(enforce_csrf_checks=True)
  77. Making requests
  78. ~~~~~~~~~~~~~~~
  79. Use the ``django.test.Client`` class to make requests.
  80. .. class:: Client(enforce_csrf_checks=False, **defaults)
  81. It requires no arguments at time of construction. However, you can use
  82. keywords arguments to specify some default headers. For example, this will
  83. send a ``User-Agent`` HTTP header in each request::
  84. >>> c = Client(HTTP_USER_AGENT='Mozilla/5.0')
  85. The values from the ``extra`` keywords arguments passed to
  86. :meth:`~django.test.Client.get()`,
  87. :meth:`~django.test.Client.post()`, etc. have precedence over
  88. the defaults passed to the class constructor.
  89. The ``enforce_csrf_checks`` argument can be used to test CSRF
  90. protection (see above).
  91. Once you have a ``Client`` instance, you can call any of the following
  92. methods:
  93. .. method:: Client.get(path, data={}, follow=False, secure=False, **extra)
  94. .. versionadded:: 1.7
  95. The ``secure`` argument was added.
  96. Makes a GET request on the provided ``path`` and returns a ``Response``
  97. object, which is documented below.
  98. The key-value pairs in the ``data`` dictionary are used to create a GET
  99. data payload. For example::
  100. >>> c = Client()
  101. >>> c.get('/customers/details/', {'name': 'fred', 'age': 7})
  102. ...will result in the evaluation of a GET request equivalent to::
  103. /customers/details/?name=fred&age=7
  104. The ``extra`` keyword arguments parameter can be used to specify
  105. headers to be sent in the request. For example::
  106. >>> c = Client()
  107. >>> c.get('/customers/details/', {'name': 'fred', 'age': 7},
  108. ... HTTP_X_REQUESTED_WITH='XMLHttpRequest')
  109. ...will send the HTTP header ``HTTP_X_REQUESTED_WITH`` to the
  110. details view, which is a good way to test code paths that use the
  111. :meth:`django.http.HttpRequest.is_ajax()` method.
  112. .. admonition:: CGI specification
  113. The headers sent via ``**extra`` should follow CGI_ specification.
  114. For example, emulating a different "Host" header as sent in the
  115. HTTP request from the browser to the server should be passed
  116. as ``HTTP_HOST``.
  117. .. _CGI: http://www.w3.org/CGI/
  118. If you already have the GET arguments in URL-encoded form, you can
  119. use that encoding instead of using the data argument. For example,
  120. the previous GET request could also be posed as::
  121. >>> c = Client()
  122. >>> c.get('/customers/details/?name=fred&age=7')
  123. If you provide a URL with both an encoded GET data and a data argument,
  124. the data argument will take precedence.
  125. If you set ``follow`` to ``True`` the client will follow any redirects
  126. and a ``redirect_chain`` attribute will be set in the response object
  127. containing tuples of the intermediate urls and status codes.
  128. If you had a URL ``/redirect_me/`` that redirected to ``/next/``, that
  129. redirected to ``/final/``, this is what you'd see::
  130. >>> response = c.get('/redirect_me/', follow=True)
  131. >>> response.redirect_chain
  132. [(u'http://testserver/next/', 302), (u'http://testserver/final/', 302)]
  133. If you set ``secure`` to ``True`` the client will emulate an HTTPS
  134. request.
  135. .. method:: Client.post(path, data={}, content_type=MULTIPART_CONTENT, follow=False, secure=False, **extra)
  136. Makes a POST request on the provided ``path`` and returns a
  137. ``Response`` object, which is documented below.
  138. The key-value pairs in the ``data`` dictionary are used to submit POST
  139. data. For example::
  140. >>> c = Client()
  141. >>> c.post('/login/', {'name': 'fred', 'passwd': 'secret'})
  142. ...will result in the evaluation of a POST request to this URL::
  143. /login/
  144. ...with this POST data::
  145. name=fred&passwd=secret
  146. If you provide ``content_type`` (e.g. :mimetype:`text/xml` for an XML
  147. payload), the contents of ``data`` will be sent as-is in the POST
  148. request, using ``content_type`` in the HTTP ``Content-Type`` header.
  149. If you don't provide a value for ``content_type``, the values in
  150. ``data`` will be transmitted with a content type of
  151. :mimetype:`multipart/form-data`. In this case, the key-value pairs in
  152. ``data`` will be encoded as a multipart message and used to create the
  153. POST data payload.
  154. To submit multiple values for a given key -- for example, to specify
  155. the selections for a ``<select multiple>`` -- provide the values as a
  156. list or tuple for the required key. For example, this value of ``data``
  157. would submit three selected values for the field named ``choices``::
  158. {'choices': ('a', 'b', 'd')}
  159. Submitting files is a special case. To POST a file, you need only
  160. provide the file field name as a key, and a file handle to the file you
  161. wish to upload as a value. For example::
  162. >>> c = Client()
  163. >>> with open('wishlist.doc') as fp:
  164. ... c.post('/customers/wishes/', {'name': 'fred', 'attachment': fp})
  165. (The name ``attachment`` here is not relevant; use whatever name your
  166. file-processing code expects.)
  167. Note that if you wish to use the same file handle for multiple
  168. ``post()`` calls then you will need to manually reset the file
  169. pointer between posts. The easiest way to do this is to
  170. manually close the file after it has been provided to
  171. ``post()``, as demonstrated above.
  172. You should also ensure that the file is opened in a way that
  173. allows the data to be read. If your file contains binary data
  174. such as an image, this means you will need to open the file in
  175. ``rb`` (read binary) mode.
  176. The ``extra`` argument acts the same as for :meth:`Client.get`.
  177. If the URL you request with a POST contains encoded parameters, these
  178. parameters will be made available in the request.GET data. For example,
  179. if you were to make the request::
  180. >>> c.post('/login/?visitor=true', {'name': 'fred', 'passwd': 'secret'})
  181. ... the view handling this request could interrogate request.POST
  182. to retrieve the username and password, and could interrogate request.GET
  183. to determine if the user was a visitor.
  184. If you set ``follow`` to ``True`` the client will follow any redirects
  185. and a ``redirect_chain`` attribute will be set in the response object
  186. containing tuples of the intermediate urls and status codes.
  187. If you set ``secure`` to ``True`` the client will emulate an HTTPS
  188. request.
  189. .. method:: Client.head(path, data={}, follow=False, secure=False, **extra)
  190. Makes a HEAD request on the provided ``path`` and returns a
  191. ``Response`` object. This method works just like :meth:`Client.get`,
  192. including the ``follow``, ``secure`` and ``extra`` arguments, except
  193. it does not return a message body.
  194. .. method:: Client.options(path, data='', content_type='application/octet-stream', follow=False, secure=False, **extra)
  195. Makes an OPTIONS request on the provided ``path`` and returns a
  196. ``Response`` object. Useful for testing RESTful interfaces.
  197. When ``data`` is provided, it is used as the request body, and
  198. a ``Content-Type`` header is set to ``content_type``.
  199. The ``follow``, ``secure`` and ``extra`` arguments act the same as for
  200. :meth:`Client.get`.
  201. .. method:: Client.put(path, data='', content_type='application/octet-stream', follow=False, secure=False, **extra)
  202. Makes a PUT request on the provided ``path`` and returns a
  203. ``Response`` object. Useful for testing RESTful interfaces.
  204. When ``data`` is provided, it is used as the request body, and
  205. a ``Content-Type`` header is set to ``content_type``.
  206. The ``follow``, ``secure`` and ``extra`` arguments act the same as for
  207. :meth:`Client.get`.
  208. .. method:: Client.patch(path, data='', content_type='application/octet-stream', follow=False, secure=False, **extra)
  209. Makes a PATCH request on the provided ``path`` and returns a
  210. ``Response`` object. Useful for testing RESTful interfaces.
  211. The ``follow``, ``secure`` and ``extra`` arguments act the same as for
  212. :meth:`Client.get`.
  213. .. method:: Client.delete(path, data='', content_type='application/octet-stream', follow=False, secure=False, **extra)
  214. Makes an DELETE 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.login(**credentials)
  221. If your site uses Django's :doc:`authentication system</topics/auth/index>`
  222. and you deal with logging in users, you can use the test client's
  223. ``login()`` method to simulate the effect of a user logging into the
  224. site.
  225. After you call this method, the test client will have all the cookies
  226. and session data required to pass any login-based tests that may form
  227. part of a view.
  228. The format of the ``credentials`` argument depends on which
  229. :ref:`authentication backend <authentication-backends>` you're using
  230. (which is configured by your :setting:`AUTHENTICATION_BACKENDS`
  231. setting). If you're using the standard authentication backend provided
  232. by Django (``ModelBackend``), ``credentials`` should be the user's
  233. username and password, provided as keyword arguments::
  234. >>> c = Client()
  235. >>> c.login(username='fred', password='secret')
  236. # Now you can access a view that's only available to logged-in users.
  237. If you're using a different authentication backend, this method may
  238. require different credentials. It requires whichever credentials are
  239. required by your backend's ``authenticate()`` method.
  240. ``login()`` returns ``True`` if it the credentials were accepted and
  241. login was successful.
  242. Finally, you'll need to remember to create user accounts before you can
  243. use this method. As we explained above, the test runner is executed
  244. using a test database, which contains no users by default. As a result,
  245. user accounts that are valid on your production site will not work
  246. under test conditions. You'll need to create users as part of the test
  247. suite -- either manually (using the Django model API) or with a test
  248. fixture. Remember that if you want your test user to have a password,
  249. you can't set the user's password by setting the password attribute
  250. directly -- you must use the
  251. :meth:`~django.contrib.auth.models.User.set_password()` function to
  252. store a correctly hashed password. Alternatively, you can use the
  253. :meth:`~django.contrib.auth.models.UserManager.create_user` helper
  254. method to create a new user with a correctly hashed password.
  255. .. versionadded:: 1.7
  256. Requests made with :meth:`~django.test.Client.login` go through the
  257. request middleware. If you need to control the environment, you can
  258. do so at :class:`~django.test.Client` instantiation or with the
  259. `Client.defaults` attribute.
  260. .. method:: Client.logout()
  261. If your site uses Django's :doc:`authentication system</topics/auth/index>`,
  262. the ``logout()`` method can be used to simulate the effect of a user
  263. logging out of your site.
  264. After you call this method, the test client will have all the cookies
  265. and session data cleared to defaults. Subsequent requests will appear
  266. to come from an :class:`~django.contrib.auth.models.AnonymousUser`.
  267. .. versionadded:: 1.7
  268. Requests made with :meth:`~django.test.Client.logout` go through the
  269. request middleware. If you need to control the environment, you can
  270. do so at :class:`~django.test.Client` instantiation or with the
  271. `Client.defaults` attribute.
  272. Testing responses
  273. ~~~~~~~~~~~~~~~~~
  274. The ``get()`` and ``post()`` methods both return a ``Response`` object. This
  275. ``Response`` object is *not* the same as the ``HttpResponse`` object returned
  276. Django views; the test response object has some additional data useful for
  277. test code to verify.
  278. Specifically, a ``Response`` object has the following attributes:
  279. .. class:: Response()
  280. .. attribute:: client
  281. The test client that was used to make the request that resulted in the
  282. response.
  283. .. attribute:: content
  284. The body of the response, as a string. This is the final page content as
  285. rendered by the view, or any error message.
  286. .. attribute:: context
  287. The template ``Context`` instance that was used to render the template that
  288. produced the response content.
  289. If the rendered page used multiple templates, then ``context`` will be a
  290. list of ``Context`` objects, in the order in which they were rendered.
  291. Regardless of the number of templates used during rendering, you can
  292. retrieve context values using the ``[]`` operator. For example, the
  293. context variable ``name`` could be retrieved using::
  294. >>> response = client.get('/foo/')
  295. >>> response.context['name']
  296. 'Arthur'
  297. .. attribute:: request
  298. The request data that stimulated the response.
  299. .. attribute:: status_code
  300. The HTTP status of the response, as an integer. See
  301. :rfc:`2616#section-10` for a full list of HTTP status codes.
  302. .. attribute:: templates
  303. A list of ``Template`` instances used to render the final content, in
  304. the order they were rendered. For each template in the list, use
  305. ``template.name`` to get the template's file name, if the template was
  306. loaded from a file. (The name is a string such as
  307. ``'admin/index.html'``.)
  308. You can also use dictionary syntax on the response object to query the value
  309. of any settings in the HTTP headers. For example, you could determine the
  310. content type of a response using ``response['Content-Type']``.
  311. Exceptions
  312. ~~~~~~~~~~
  313. If you point the test client at a view that raises an exception, that exception
  314. will be visible in the test case. You can then use a standard ``try ... except``
  315. block or :meth:`~unittest.TestCase.assertRaises` to test for exceptions.
  316. The only exceptions that are not visible to the test client are ``Http404``,
  317. ``PermissionDenied`` and ``SystemExit``. Django catches these exceptions
  318. internally and converts them into the appropriate HTTP response codes. In these
  319. cases, you can check ``response.status_code`` in your test.
  320. Persistent state
  321. ~~~~~~~~~~~~~~~~
  322. The test client is stateful. If a response returns a cookie, then that cookie
  323. will be stored in the test client and sent with all subsequent ``get()`` and
  324. ``post()`` requests.
  325. Expiration policies for these cookies are not followed. If you want a cookie
  326. to expire, either delete it manually or create a new ``Client`` instance (which
  327. will effectively delete all cookies).
  328. A test client has two attributes that store persistent state information. You
  329. can access these properties as part of a test condition.
  330. .. attribute:: Client.cookies
  331. A Python :class:`~Cookie.SimpleCookie` object, containing the current values
  332. of all the client cookies. See the documentation of the :mod:`Cookie` module
  333. for more.
  334. .. attribute:: Client.session
  335. A dictionary-like object containing session information. See the
  336. :doc:`session documentation</topics/http/sessions>` for full details.
  337. To modify the session and then save it, it must be stored in a variable
  338. first (because a new ``SessionStore`` is created every time this property
  339. is accessed)::
  340. def test_something(self):
  341. session = self.client.session
  342. session['somekey'] = 'test'
  343. session.save()
  344. Example
  345. ~~~~~~~
  346. The following is a simple unit test using the test client::
  347. import unittest
  348. from django.test import Client
  349. class SimpleTest(unittest.TestCase):
  350. def setUp(self):
  351. # Every test needs a client.
  352. self.client = Client()
  353. def test_details(self):
  354. # Issue a GET request.
  355. response = self.client.get('/customer/details/')
  356. # Check that the response is 200 OK.
  357. self.assertEqual(response.status_code, 200)
  358. # Check that the rendered context contains 5 customers.
  359. self.assertEqual(len(response.context['customers']), 5)
  360. .. seealso::
  361. :class:`django.test.RequestFactory`
  362. .. _django-testcase-subclasses:
  363. Provided test case classes
  364. --------------------------
  365. Normal Python unit test classes extend a base class of
  366. :class:`unittest.TestCase`. Django provides a few extensions of this base class:
  367. .. _testcase_hierarchy_diagram:
  368. .. figure:: _images/django_unittest_classes_hierarchy.*
  369. :alt: Hierarchy of Django unit testing classes (TestCase subclasses)
  370. :width: 508
  371. :height: 328
  372. Hierarchy of Django unit testing classes
  373. SimpleTestCase
  374. ~~~~~~~~~~~~~~
  375. .. class:: SimpleTestCase()
  376. A thin subclass of :class:`unittest.TestCase`, it extends it with some basic
  377. functionality like:
  378. * Saving and restoring the Python warning machinery state.
  379. * Some useful assertions like:
  380. * Checking that a callable :meth:`raises a certain exception
  381. <SimpleTestCase.assertRaisesMessage>`.
  382. * Testing form field :meth:`rendering and error treatment
  383. <SimpleTestCase.assertFieldOutput>`.
  384. * Testing :meth:`HTML responses for the presence/lack of a given fragment
  385. <SimpleTestCase.assertContains>`.
  386. * Verifying that a template :meth:`has/hasn't been used to generate a given
  387. response content <SimpleTestCase.assertTemplateUsed>`.
  388. * Verifying a HTTP :meth:`redirect <SimpleTestCase.assertRedirects>` is
  389. performed by the app.
  390. * Robustly testing two :meth:`HTML fragments <SimpleTestCase.assertHTMLEqual>`
  391. for equality/inequality or :meth:`containment <SimpleTestCase.assertInHTML>`.
  392. * Robustly testing two :meth:`XML fragments <SimpleTestCase.assertXMLEqual>`
  393. for equality/inequality.
  394. * Robustly testing two :meth:`JSON fragments <SimpleTestCase.assertJSONEqual>`
  395. for equality.
  396. * The ability to run tests with :ref:`modified settings <overriding-settings>`.
  397. * Using the :attr:`~SimpleTestCase.client` :class:`~django.test.Client`.
  398. * Custom test-time :attr:`URL maps <SimpleTestCase.urls>`.
  399. .. versionchanged:: 1.6
  400. The latter two features were moved from ``TransactionTestCase`` to
  401. ``SimpleTestCase`` in Django 1.6.
  402. If you need any of the other more complex and heavyweight Django-specific
  403. features like:
  404. * Testing or using the ORM.
  405. * Database :attr:`~TransactionTestCase.fixtures`.
  406. * Test :ref:`skipping based on database backend features <skipping-tests>`.
  407. * The remaining specialized :meth:`assert*
  408. <TransactionTestCase.assertQuerysetEqual>` methods.
  409. then you should use :class:`~django.test.TransactionTestCase` or
  410. :class:`~django.test.TestCase` instead.
  411. ``SimpleTestCase`` inherits from ``unittest.TestCase``.
  412. TransactionTestCase
  413. ~~~~~~~~~~~~~~~~~~~
  414. .. class:: TransactionTestCase()
  415. Django's ``TestCase`` class (described below) makes use of database transaction
  416. facilities to speed up the process of resetting the database to a known state
  417. at the beginning of each test. A consequence of this, however, is that the
  418. effects of transaction commit and rollback cannot be tested by a Django
  419. ``TestCase`` class. If your test requires testing of such transactional
  420. behavior, you should use a Django ``TransactionTestCase``.
  421. ``TransactionTestCase`` and ``TestCase`` are identical except for the manner
  422. in which the database is reset to a known state and the ability for test code
  423. to test the effects of commit and rollback:
  424. * A ``TransactionTestCase`` resets the database after the test runs by
  425. truncating all tables. A ``TransactionTestCase`` may call commit and rollback
  426. and observe the effects of these calls on the database.
  427. * A ``TestCase``, on the other hand, does not truncate tables after a test.
  428. Instead, it encloses the test code in a database transaction that is rolled
  429. back at the end of the test. Both explicit commits like
  430. ``transaction.commit()`` and implicit ones that may be caused by
  431. ``transaction.atomic()`` are replaced with a ``nop`` operation. This
  432. guarantees that the rollback at the end of the test restores the database to
  433. its initial state.
  434. When running on a database that does not support rollback (e.g. MySQL with the
  435. MyISAM storage engine), ``TestCase`` falls back to initializing the database
  436. by truncating tables and reloading initial data.
  437. .. warning::
  438. While ``commit`` and ``rollback`` operations still *appear* to work when
  439. used in ``TestCase``, no actual commit or rollback will be performed by the
  440. database. This can cause your tests to pass or fail unexpectedly. Always
  441. use ``TransactionTestCase`` when testing transactional behavior.
  442. ``TransactionTestCase`` inherits from :class:`~django.test.SimpleTestCase`.
  443. TestCase
  444. ~~~~~~~~
  445. .. class:: TestCase()
  446. This class provides some additional capabilities that can be useful for testing
  447. Web sites.
  448. Converting a normal :class:`unittest.TestCase` to a Django :class:`TestCase` is
  449. easy: Just change the base class of your test from ``'unittest.TestCase'`` to
  450. ``'django.test.TestCase'``. All of the standard Python unit test functionality
  451. will continue to be available, but it will be augmented with some useful
  452. additions, including:
  453. * Automatic loading of fixtures.
  454. * Wraps each test in a transaction.
  455. * Creates a TestClient instance.
  456. * Django-specific assertions for testing for things like redirection and form
  457. errors.
  458. ``TestCase`` inherits from :class:`~django.test.TransactionTestCase`.
  459. .. _live-test-server:
  460. LiveServerTestCase
  461. ~~~~~~~~~~~~~~~~~~
  462. .. class:: LiveServerTestCase()
  463. ``LiveServerTestCase`` does basically the same as
  464. :class:`~django.test.TransactionTestCase` with one extra feature: it launches a
  465. live Django server in the background on setup, and shuts it down on teardown.
  466. This allows the use of automated test clients other than the
  467. :ref:`Django dummy client <test-client>` such as, for example, the Selenium_
  468. client, to execute a series of functional tests inside a browser and simulate a
  469. real user's actions.
  470. By default the live server's address is ``'localhost:8081'`` and the full URL
  471. can be accessed during the tests with ``self.live_server_url``. If you'd like
  472. to change the default address (in the case, for example, where the 8081 port is
  473. already taken) then you may pass a different one to the :djadmin:`test` command
  474. via the :djadminopt:`--liveserver` option, for example:
  475. .. code-block:: bash
  476. ./manage.py test --liveserver=localhost:8082
  477. Another way of changing the default server address is by setting the
  478. `DJANGO_LIVE_TEST_SERVER_ADDRESS` environment variable somewhere in your
  479. code (for example, in a :ref:`custom test runner<topics-testing-test_runner>`):
  480. .. code-block:: python
  481. import os
  482. os.environ['DJANGO_LIVE_TEST_SERVER_ADDRESS'] = 'localhost:8082'
  483. In the case where the tests are run by multiple processes in parallel (for
  484. example, in the context of several simultaneous `continuous integration`_
  485. builds), the processes will compete for the same address, and therefore your
  486. tests might randomly fail with an "Address already in use" error. To avoid this
  487. problem, you can pass a comma-separated list of ports or ranges of ports (at
  488. least as many as the number of potential parallel processes). For example:
  489. .. code-block:: bash
  490. ./manage.py test --liveserver=localhost:8082,8090-8100,9000-9200,7041
  491. Then, during test execution, each new live test server will try every specified
  492. port until it finds one that is free and takes it.
  493. .. _continuous integration: http://en.wikipedia.org/wiki/Continuous_integration
  494. To demonstrate how to use ``LiveServerTestCase``, let's write a simple Selenium
  495. test. First of all, you need to install the `selenium package`_ into your
  496. Python path:
  497. .. code-block:: bash
  498. pip install selenium
  499. Then, add a ``LiveServerTestCase``-based test to your app's tests module
  500. (for example: ``myapp/tests.py``). The code for this test may look as follows:
  501. .. code-block:: python
  502. from django.test import LiveServerTestCase
  503. from selenium.webdriver.firefox.webdriver import WebDriver
  504. class MySeleniumTests(LiveServerTestCase):
  505. fixtures = ['user-data.json']
  506. @classmethod
  507. def setUpClass(cls):
  508. cls.selenium = WebDriver()
  509. super(MySeleniumTests, cls).setUpClass()
  510. @classmethod
  511. def tearDownClass(cls):
  512. cls.selenium.quit()
  513. super(MySeleniumTests, cls).tearDownClass()
  514. def test_login(self):
  515. self.selenium.get('%s%s' % (self.live_server_url, '/login/'))
  516. username_input = self.selenium.find_element_by_name("username")
  517. username_input.send_keys('myuser')
  518. password_input = self.selenium.find_element_by_name("password")
  519. password_input.send_keys('secret')
  520. self.selenium.find_element_by_xpath('//input[@value="Log in"]').click()
  521. Finally, you may run the test as follows:
  522. .. code-block:: bash
  523. ./manage.py test myapp.MySeleniumTests.test_login
  524. This example will automatically open Firefox then go to the login page, enter
  525. the credentials and press the "Log in" button. Selenium offers other drivers in
  526. case you do not have Firefox installed or wish to use another browser. The
  527. example above is just a tiny fraction of what the Selenium client can do; check
  528. out the `full reference`_ for more details.
  529. .. _Selenium: http://seleniumhq.org/
  530. .. _selenium package: https://pypi.python.org/pypi/selenium
  531. .. _full reference: http://selenium-python.readthedocs.org/en/latest/api.html
  532. .. _Firefox: http://www.mozilla.com/firefox/
  533. .. versionchanged:: 1.7
  534. Before Django 1.7 ``LiveServerTestCase`` used to rely on the
  535. :doc:`staticfiles contrib app </howto/static-files/index>` to get the
  536. static assets of the application(s) under test transparently served at their
  537. expected locations during the execution of these tests.
  538. In Django 1.7 this dependency of core functionality on a ``contrib``
  539. appplication has been removed, because of which ``LiveServerTestCase``
  540. ability in this respect has been retrofitted to simply publish the contents
  541. of the file system under :setting:`STATIC_ROOT` at the :setting:`STATIC_URL`
  542. URL.
  543. If you use the ``staticfiles`` app in your project and need to perform live
  544. testing then you might want to consider using the
  545. :class:`~django.contrib.staticfiles.testing.StaticLiveServerCase` subclass
  546. shipped with it instead because it's the one that implements the original
  547. behavior now. See :ref:`the relevant documentation
  548. <staticfiles-testing-support>` for more details.
  549. .. note::
  550. When using an in-memory SQLite database to run the tests, the same database
  551. connection will be shared by two threads in parallel: the thread in which
  552. the live server is run and the thread in which the test case is run. It's
  553. important to prevent simultaneous database queries via this shared
  554. connection by the two threads, as that may sometimes randomly cause the
  555. tests to fail. So you need to ensure that the two threads don't access the
  556. database at the same time. In particular, this means that in some cases
  557. (for example, just after clicking a link or submitting a form), you might
  558. need to check that a response is received by Selenium and that the next
  559. page is loaded before proceeding with further test execution.
  560. Do this, for example, by making Selenium wait until the ``<body>`` HTML tag
  561. is found in the response (requires Selenium > 2.13):
  562. .. code-block:: python
  563. def test_login(self):
  564. from selenium.webdriver.support.wait import WebDriverWait
  565. timeout = 2
  566. ...
  567. self.selenium.find_element_by_xpath('//input[@value="Log in"]').click()
  568. # Wait until the response is received
  569. WebDriverWait(self.selenium, timeout).until(
  570. lambda driver: driver.find_element_by_tag_name('body'))
  571. The tricky thing here is that there's really no such thing as a "page load,"
  572. especially in modern Web apps that generate HTML dynamically after the
  573. server generates the initial document. So, simply checking for the presence
  574. of ``<body>`` in the response might not necessarily be appropriate for all
  575. use cases. Please refer to the `Selenium FAQ`_ and
  576. `Selenium documentation`_ for more information.
  577. .. _Selenium FAQ: http://code.google.com/p/selenium/wiki/FrequentlyAskedQuestions#Q:_WebDriver_fails_to_find_elements_/_Does_not_block_on_page_loa
  578. .. _Selenium documentation: http://seleniumhq.org/docs/04_webdriver_advanced.html#explicit-waits
  579. Test cases features
  580. -------------------
  581. Default test client
  582. ~~~~~~~~~~~~~~~~~~~
  583. .. attribute:: SimpleTestCase.client
  584. Every test case in a ``django.test.*TestCase`` instance has access to an
  585. instance of a Django test client. This client can be accessed as
  586. ``self.client``. This client is recreated for each test, so you don't have to
  587. worry about state (such as cookies) carrying over from one test to another.
  588. This means, instead of instantiating a ``Client`` in each test::
  589. import unittest
  590. from django.test import Client
  591. class SimpleTest(unittest.TestCase):
  592. def test_details(self):
  593. client = Client()
  594. response = client.get('/customer/details/')
  595. self.assertEqual(response.status_code, 200)
  596. def test_index(self):
  597. client = Client()
  598. response = client.get('/customer/index/')
  599. self.assertEqual(response.status_code, 200)
  600. ...you can just refer to ``self.client``, like so::
  601. from django.test import TestCase
  602. class SimpleTest(TestCase):
  603. def test_details(self):
  604. response = self.client.get('/customer/details/')
  605. self.assertEqual(response.status_code, 200)
  606. def test_index(self):
  607. response = self.client.get('/customer/index/')
  608. self.assertEqual(response.status_code, 200)
  609. Customizing the test client
  610. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  611. .. attribute:: SimpleTestCase.client_class
  612. If you want to use a different ``Client`` class (for example, a subclass
  613. with customized behavior), use the :attr:`~SimpleTestCase.client_class` class
  614. attribute::
  615. from django.test import TestCase, Client
  616. class MyTestClient(Client):
  617. # Specialized methods for your environment...
  618. class MyTest(TestCase):
  619. client_class = MyTestClient
  620. def test_my_stuff(self):
  621. # Here self.client is an instance of MyTestClient...
  622. call_some_test_code()
  623. .. _topics-testing-fixtures:
  624. Fixture loading
  625. ~~~~~~~~~~~~~~~
  626. .. attribute:: TransactionTestCase.fixtures
  627. A test case for a database-backed Web site isn't much use if there isn't any
  628. data in the database. To make it easy to put test data into the database,
  629. Django's custom ``TransactionTestCase`` class provides a way of loading
  630. **fixtures**.
  631. A fixture is a collection of data that Django knows how to import into a
  632. database. For example, if your site has user accounts, you might set up a
  633. fixture of fake user accounts in order to populate your database during tests.
  634. The most straightforward way of creating a fixture is to use the
  635. :djadmin:`manage.py dumpdata <dumpdata>` command. This assumes you
  636. already have some data in your database. See the :djadmin:`dumpdata
  637. documentation<dumpdata>` for more details.
  638. .. note::
  639. If you've ever run :djadmin:`manage.py migrate<migrate>`, you've
  640. already used a fixture without even knowing it! When you call
  641. :djadmin:`migrate` in the database for the first time, Django
  642. installs a fixture called ``initial_data``. This gives you a way
  643. of populating a new database with any initial data, such as a
  644. default set of categories.
  645. Fixtures with other names can always be installed manually using
  646. the :djadmin:`manage.py loaddata<loaddata>` command.
  647. .. admonition:: Initial SQL data and testing
  648. Django provides a second way to insert initial data into models --
  649. the :ref:`custom SQL hook <initial-sql>`. However, this technique
  650. *cannot* be used to provide initial data for testing purposes.
  651. Django's test framework flushes the contents of the test database
  652. after each test; as a result, any data added using the custom SQL
  653. hook will be lost.
  654. Once you've created a fixture and placed it in a ``fixtures`` directory in one
  655. of your :setting:`INSTALLED_APPS`, you can use it in your unit tests by
  656. specifying a ``fixtures`` class attribute on your :class:`django.test.TestCase`
  657. subclass::
  658. from django.test import TestCase
  659. from myapp.models import Animal
  660. class AnimalTestCase(TestCase):
  661. fixtures = ['mammals.json', 'birds']
  662. def setUp(self):
  663. # Test definitions as before.
  664. call_setup_methods()
  665. def testFluffyAnimals(self):
  666. # A test that uses the fixtures.
  667. call_some_test_code()
  668. Here's specifically what will happen:
  669. * At the start of each test case, before ``setUp()`` is run, Django will
  670. flush the database, returning the database to the state it was in
  671. directly after :djadmin:`migrate` was called.
  672. * Then, all the named fixtures are installed. In this example, Django will
  673. install any JSON fixture named ``mammals``, followed by any fixture named
  674. ``birds``. See the :djadmin:`loaddata` documentation for more
  675. details on defining and installing fixtures.
  676. This flush/load procedure is repeated for each test in the test case, so you
  677. can be certain that the outcome of a test will not be affected by another test,
  678. or by the order of test execution.
  679. By default, fixtures are only loaded into the ``default`` database. If you are
  680. using multiple databases and set :attr:`multi_db=True
  681. <TransactionTestCase.multi_db>`, fixtures will be loaded into all databases.
  682. URLconf configuration
  683. ~~~~~~~~~~~~~~~~~~~~~
  684. .. attribute:: SimpleTestCase.urls
  685. If your application provides views, you may want to include tests that use the
  686. test client to exercise those views. However, an end user is free to deploy the
  687. views in your application at any URL of their choosing. This means that your
  688. tests can't rely upon the fact that your views will be available at a
  689. particular URL.
  690. In order to provide a reliable URL space for your test,
  691. ``django.test.*TestCase`` classes provide the ability to customize the URLconf
  692. configuration for the duration of the execution of a test suite. If your
  693. ``*TestCase`` instance defines an ``urls`` attribute, the ``*TestCase`` will use
  694. the value of that attribute as the :setting:`ROOT_URLCONF` for the duration
  695. of that test.
  696. For example::
  697. from django.test import TestCase
  698. class TestMyViews(TestCase):
  699. urls = 'myapp.test_urls'
  700. def testIndexPageView(self):
  701. # Here you'd test your view using ``Client``.
  702. call_some_test_code()
  703. This test case will use the contents of ``myapp.test_urls`` as the
  704. URLconf for the duration of the test case.
  705. .. _emptying-test-outbox:
  706. Multi-database support
  707. ~~~~~~~~~~~~~~~~~~~~~~
  708. .. attribute:: TransactionTestCase.multi_db
  709. Django sets up a test database corresponding to every database that is
  710. defined in the :setting:`DATABASES` definition in your settings
  711. file. However, a big part of the time taken to run a Django TestCase
  712. is consumed by the call to ``flush`` that ensures that you have a
  713. clean database at the start of each test run. If you have multiple
  714. databases, multiple flushes are required (one for each database),
  715. which can be a time consuming activity -- especially if your tests
  716. don't need to test multi-database activity.
  717. As an optimization, Django only flushes the ``default`` database at
  718. the start of each test run. If your setup contains multiple databases,
  719. and you have a test that requires every database to be clean, you can
  720. use the ``multi_db`` attribute on the test suite to request a full
  721. flush.
  722. For example::
  723. class TestMyViews(TestCase):
  724. multi_db = True
  725. def testIndexPageView(self):
  726. call_some_test_code()
  727. This test case will flush *all* the test databases before running
  728. ``testIndexPageView``.
  729. The ``multi_db`` flag also affects into which databases the
  730. attr:`TransactionTestCase.fixtures` are loaded. By default (when
  731. ``multi_db=False``), fixtures are only loaded into the ``default`` database.
  732. If ``multi_db=True``, fixtures are loaded into all databases.
  733. .. _overriding-settings:
  734. Overriding settings
  735. ~~~~~~~~~~~~~~~~~~~
  736. .. method:: SimpleTestCase.settings
  737. For testing purposes it's often useful to change a setting temporarily and
  738. revert to the original value after running the testing code. For this use case
  739. Django provides a standard Python context manager (see :pep:`343`) called
  740. :meth:`~django.test.SimpleTestCase.settings`, which can be used like this::
  741. from django.test import TestCase
  742. class LoginTestCase(TestCase):
  743. def test_login(self):
  744. # First check for the default behavior
  745. response = self.client.get('/sekrit/')
  746. self.assertRedirects(response, '/accounts/login/?next=/sekrit/')
  747. # Then override the LOGIN_URL setting
  748. with self.settings(LOGIN_URL='/other/login/'):
  749. response = self.client.get('/sekrit/')
  750. self.assertRedirects(response, '/other/login/?next=/sekrit/')
  751. This example will override the :setting:`LOGIN_URL` setting for the code
  752. in the ``with`` block and reset its value to the previous state afterwards.
  753. .. method:: SimpleTestCase.modify_settings
  754. .. versionadded:: 1.7
  755. It can prove unwieldy to redefine settings that contain a list of values. In
  756. practice, adding or removing values is often sufficient. The
  757. :meth:`~django.test.SimpleTestCase.modify_settings` context manager makes it
  758. easy::
  759. from django.test import TestCase
  760. class MiddlewareTestCase(TestCase):
  761. def test_cache_middleware(self):
  762. with self.modify_settings(MIDDLEWARE_CLASSES={
  763. 'append': 'django.middleware.cache.FetchFromCacheMiddleware',
  764. 'prepend': 'django.middleware.cache.UpdateCacheMiddleware',
  765. 'remove': [
  766. 'django.contrib.sessions.middleware.SessionMiddleware',
  767. 'django.contrib.auth.middleware.AuthenticationMiddleware',
  768. 'django.contrib.messages.middleware.MessageMiddleware',
  769. ],
  770. }):
  771. response = self.client.get('/')
  772. # ...
  773. For each action, you can supply either a list of values or a string. When the
  774. value already exists in the list, ``append`` and ``prepend`` have no effect;
  775. neither does ``remove`` when the value doesn't exist.
  776. .. function:: override_settings
  777. In case you want to override a setting for a test method, Django provides the
  778. :func:`~django.test.override_settings` decorator (see :pep:`318`). It's used
  779. like this::
  780. from django.test import TestCase, override_settings
  781. class LoginTestCase(TestCase):
  782. @override_settings(LOGIN_URL='/other/login/')
  783. def test_login(self):
  784. response = self.client.get('/sekrit/')
  785. self.assertRedirects(response, '/other/login/?next=/sekrit/')
  786. The decorator can also be applied to :class:`~django.test.TestCase` classes::
  787. from django.test import TestCase, override_settings
  788. @override_settings(LOGIN_URL='/other/login/')
  789. class LoginTestCase(TestCase):
  790. def test_login(self):
  791. response = self.client.get('/sekrit/')
  792. self.assertRedirects(response, '/other/login/?next=/sekrit/')
  793. .. versionchanged:: 1.7
  794. Previously, ``override_settings`` was imported from ``django.test.utils``.
  795. .. function:: modify_settings
  796. .. versionadded:: 1.7
  797. Likewise, Django provides the :func:`~django.test.modify_settings`
  798. decorator::
  799. from django.test import TestCase, modify_settings
  800. class MiddlewareTestCase(TestCase):
  801. @modify_settings(MIDDLEWARE_CLASSES={
  802. 'append': 'django.middleware.cache.FetchFromCacheMiddleware',
  803. 'prepend': 'django.middleware.cache.UpdateCacheMiddleware',
  804. })
  805. def test_cache_middleware(self):
  806. response = self.client.get('/')
  807. # ...
  808. The decorator can also be applied to test case classes::
  809. from django.test import TestCase, modify_settings
  810. @modify_settings(MIDDLEWARE_CLASSES={
  811. 'append': 'django.middleware.cache.FetchFromCacheMiddleware',
  812. 'prepend': 'django.middleware.cache.UpdateCacheMiddleware',
  813. })
  814. class MiddlewareTestCase(TestCase):
  815. def test_cache_middleware(self):
  816. response = self.client.get('/')
  817. # ...
  818. .. note::
  819. When given a class, these decorators modify the class directly and return
  820. it; they don't create and return a modified copy of it. So if you try to
  821. tweak the above examples to assign the return value to a different name
  822. than ``LoginTestCase`` or ``MiddlewareTestCase``, you may be surprised to
  823. find that the original test case classes are still equally affected by the
  824. decorator. For a given class, :func:`~django.test.modify_settings` is
  825. always applied after :func:`~django.test.override_settings`.
  826. .. warning::
  827. The settings file contains some settings that are only consulted during
  828. initialization of Django internals. If you change them with
  829. ``override_settings``, the setting is changed if you access it via the
  830. ``django.conf.settings`` module, however, Django's internals access it
  831. differently. Effectively, using :func:`~django.test.override_settings` or
  832. :func:`~django.test.modify_settings` with these settings is probably not
  833. going to do what you expect it to do.
  834. We do not recommend altering the :setting:`DATABASES` setting. Altering
  835. the :setting:`CACHES` setting is possible, but a bit tricky if you are
  836. using internals that make using of caching, like
  837. :mod:`django.contrib.sessions`. For example, you will have to reinitialize
  838. the session backend in a test that uses cached sessions and overrides
  839. :setting:`CACHES`.
  840. You can also simulate the absence of a setting by deleting it after settings
  841. have been overridden, like this::
  842. @override_settings()
  843. def test_something(self):
  844. del settings.LOGIN_URL
  845. ...
  846. When overriding settings, make sure to handle the cases in which your app's
  847. code uses a cache or similar feature that retains state even if the setting is
  848. changed. Django provides the :data:`django.test.signals.setting_changed`
  849. signal that lets you register callbacks to clean up and otherwise reset state
  850. when settings are changed.
  851. Django itself uses this signal to reset various data:
  852. ================================ ========================
  853. Overridden settings Data reset
  854. ================================ ========================
  855. USE_TZ, TIME_ZONE Databases timezone
  856. TEMPLATE_CONTEXT_PROCESSORS Context processors cache
  857. TEMPLATE_LOADERS Template loaders cache
  858. SERIALIZATION_MODULES Serializers cache
  859. LOCALE_PATHS, LANGUAGE_CODE Default translation and loaded translations
  860. MEDIA_ROOT, DEFAULT_FILE_STORAGE Default file storage
  861. ================================ ========================
  862. Emptying the test outbox
  863. ~~~~~~~~~~~~~~~~~~~~~~~~
  864. If you use any of Django's custom ``TestCase`` classes, the test runner will
  865. clear the contents of the test email outbox at the start of each test case.
  866. For more detail on email services during tests, see `Email services`_ below.
  867. .. _assertions:
  868. Assertions
  869. ~~~~~~~~~~
  870. As Python's normal :class:`unittest.TestCase` class implements assertion methods
  871. such as :meth:`~unittest.TestCase.assertTrue` and
  872. :meth:`~unittest.TestCase.assertEqual`, Django's custom :class:`TestCase` class
  873. provides a number of custom assertion methods that are useful for testing Web
  874. applications:
  875. The failure messages given by most of these assertion methods can be customized
  876. with the ``msg_prefix`` argument. This string will be prefixed to any failure
  877. message generated by the assertion. This allows you to provide additional
  878. details that may help you to identify the location and cause of an failure in
  879. your test suite.
  880. .. method:: SimpleTestCase.assertRaisesMessage(expected_exception, expected_message, callable_obj=None, *args, **kwargs)
  881. Asserts that execution of callable ``callable_obj`` raised the
  882. ``expected_exception`` exception and that such exception has an
  883. ``expected_message`` representation. Any other outcome is reported as a
  884. failure. Similar to unittest's :meth:`~unittest.TestCase.assertRaisesRegexp`
  885. with the difference that ``expected_message`` isn't a regular expression.
  886. .. method:: SimpleTestCase.assertFieldOutput(self, fieldclass, valid, invalid, field_args=None, field_kwargs=None, empty_value=u'')
  887. Asserts that a form field behaves correctly with various inputs.
  888. :param fieldclass: the class of the field to be tested.
  889. :param valid: a dictionary mapping valid inputs to their expected cleaned
  890. values.
  891. :param invalid: a dictionary mapping invalid inputs to one or more raised
  892. error messages.
  893. :param field_args: the args passed to instantiate the field.
  894. :param field_kwargs: the kwargs passed to instantiate the field.
  895. :param empty_value: the expected clean output for inputs in ``empty_values``.
  896. For example, the following code tests that an ``EmailField`` accepts
  897. "a@a.com" as a valid email address, but rejects "aaa" with a reasonable
  898. error message::
  899. self.assertFieldOutput(EmailField, {'a@a.com': 'a@a.com'}, {'aaa': [u'Enter a valid email address.']})
  900. .. method:: SimpleTestCase.assertFormError(response, form, field, errors, msg_prefix='')
  901. Asserts that a field on a form raises the provided list of errors when
  902. rendered on the form.
  903. ``form`` is the name the ``Form`` instance was given in the template
  904. context.
  905. ``field`` is the name of the field on the form to check. If ``field``
  906. has a value of ``None``, non-field errors (errors you can access via
  907. ``form.non_field_errors()``) will be checked.
  908. ``errors`` is an error string, or a list of error strings, that are
  909. expected as a result of form validation.
  910. .. method:: SimpleTestCase.assertFormsetError(response, formset, form_index, field, errors, msg_prefix='')
  911. .. versionadded:: 1.6
  912. Asserts that the ``formset`` raises the provided list of errors when
  913. rendered.
  914. ``formset`` is the name the ``Formset`` instance was given in the template
  915. context.
  916. ``form_index`` is the number of the form within the ``Formset``. If
  917. ``form_index`` has a value of ``None``, non-form errors (errors you can
  918. access via ``formset.non_form_errors()``) will be checked.
  919. ``field`` is the name of the field on the form to check. If ``field``
  920. has a value of ``None``, non-field errors (errors you can access via
  921. ``form.non_field_errors()``) will be checked.
  922. ``errors`` is an error string, or a list of error strings, that are
  923. expected as a result of form validation.
  924. .. method:: SimpleTestCase.assertContains(response, text, count=None, status_code=200, msg_prefix='', html=False)
  925. Asserts that a ``Response`` instance produced the given ``status_code`` and
  926. that ``text`` appears in the content of the response. If ``count`` is
  927. provided, ``text`` must occur exactly ``count`` times in the response.
  928. Set ``html`` to ``True`` to handle ``text`` as HTML. The comparison with
  929. the response content will be based on HTML semantics instead of
  930. character-by-character equality. Whitespace is ignored in most cases,
  931. attribute ordering is not significant. See
  932. :meth:`~SimpleTestCase.assertHTMLEqual` for more details.
  933. .. method:: SimpleTestCase.assertNotContains(response, text, status_code=200, msg_prefix='', html=False)
  934. Asserts that a ``Response`` instance produced the given ``status_code`` and
  935. that ``text`` does not appears in the content of the response.
  936. Set ``html`` to ``True`` to handle ``text`` as HTML. The comparison with
  937. the response content will be based on HTML semantics instead of
  938. character-by-character equality. Whitespace is ignored in most cases,
  939. attribute ordering is not significant. See
  940. :meth:`~SimpleTestCase.assertHTMLEqual` for more details.
  941. .. method:: SimpleTestCase.assertTemplateUsed(response, template_name, msg_prefix='')
  942. Asserts that the template with the given name was used in rendering the
  943. response.
  944. The name is a string such as ``'admin/index.html'``.
  945. You can use this as a context manager, like this::
  946. with self.assertTemplateUsed('index.html'):
  947. render_to_string('index.html')
  948. with self.assertTemplateUsed(template_name='index.html'):
  949. render_to_string('index.html')
  950. .. method:: SimpleTestCase.assertTemplateNotUsed(response, template_name, msg_prefix='')
  951. Asserts that the template with the given name was *not* used in rendering
  952. the response.
  953. You can use this as a context manager in the same way as
  954. :meth:`~SimpleTestCase.assertTemplateUsed`.
  955. .. method:: SimpleTestCase.assertRedirects(response, expected_url, status_code=302, target_status_code=200, msg_prefix='', fetch_redirect_response=True)
  956. Asserts that the response return a ``status_code`` redirect status, it
  957. redirected to ``expected_url`` (including any GET data), and the final
  958. page was received with ``target_status_code``.
  959. If your request used the ``follow`` argument, the ``expected_url`` and
  960. ``target_status_code`` will be the url and status code for the final
  961. point of the redirect chain.
  962. .. versionadded:: 1.7
  963. If ``fetch_redirect_response`` is ``False``, the final page won't be
  964. loaded. Since the test client can't fetch externals URLs, this is
  965. particularly useful if ``expected_url`` isn't part of your Django app.
  966. .. versionadded:: 1.7
  967. Scheme is handled correctly when making comparisons between two URLs. If
  968. there isn't any scheme specified in the location where we are redirected to,
  969. the original request's scheme is used. If present, the scheme in
  970. ``expected_url`` is the one used to make the comparisons to.
  971. .. method:: SimpleTestCase.assertHTMLEqual(html1, html2, msg=None)
  972. Asserts that the strings ``html1`` and ``html2`` are equal. The comparison
  973. is based on HTML semantics. The comparison takes following things into
  974. account:
  975. * Whitespace before and after HTML tags is ignored.
  976. * All types of whitespace are considered equivalent.
  977. * All open tags are closed implicitly, e.g. when a surrounding tag is
  978. closed or the HTML document ends.
  979. * Empty tags are equivalent to their self-closing version.
  980. * The ordering of attributes of an HTML element is not significant.
  981. * Attributes without an argument are equal to attributes that equal in
  982. name and value (see the examples).
  983. The following examples are valid tests and don't raise any
  984. ``AssertionError``::
  985. self.assertHTMLEqual('<p>Hello <b>world!</p>',
  986. '''<p>
  987. Hello <b>world! <b/>
  988. </p>''')
  989. self.assertHTMLEqual(
  990. '<input type="checkbox" checked="checked" id="id_accept_terms" />',
  991. '<input id="id_accept_terms" type='checkbox' checked>')
  992. ``html1`` and ``html2`` must be valid HTML. An ``AssertionError`` will be
  993. raised if one of them cannot be parsed.
  994. Output in case of error can be customized with the ``msg`` argument.
  995. .. method:: SimpleTestCase.assertHTMLNotEqual(html1, html2, msg=None)
  996. Asserts that the strings ``html1`` and ``html2`` are *not* equal. The
  997. comparison is based on HTML semantics. See
  998. :meth:`~SimpleTestCase.assertHTMLEqual` for details.
  999. ``html1`` and ``html2`` must be valid HTML. An ``AssertionError`` will be
  1000. raised if one of them cannot be parsed.
  1001. Output in case of error can be customized with the ``msg`` argument.
  1002. .. method:: SimpleTestCase.assertXMLEqual(xml1, xml2, msg=None)
  1003. Asserts that the strings ``xml1`` and ``xml2`` are equal. The
  1004. comparison is based on XML semantics. Similarly to
  1005. :meth:`~SimpleTestCase.assertHTMLEqual`, the comparison is
  1006. made on parsed content, hence only semantic differences are considered, not
  1007. syntax differences. When unvalid XML is passed in any parameter, an
  1008. ``AssertionError`` is always raised, even if both string are identical.
  1009. Output in case of error can be customized with the ``msg`` argument.
  1010. .. method:: SimpleTestCase.assertXMLNotEqual(xml1, xml2, msg=None)
  1011. Asserts that the strings ``xml1`` and ``xml2`` are *not* equal. The
  1012. comparison is based on XML semantics. See
  1013. :meth:`~SimpleTestCase.assertXMLEqual` for details.
  1014. Output in case of error can be customized with the ``msg`` argument.
  1015. .. method:: SimpleTestCase.assertInHTML(needle, haystack, count=None, msg_prefix='')
  1016. Asserts that the HTML fragment ``needle`` is contained in the ``haystack`` one.
  1017. If the ``count`` integer argument is specified, then additionally the number
  1018. of ``needle`` occurrences will be strictly verified.
  1019. Whitespace in most cases is ignored, and attribute ordering is not
  1020. significant. The passed-in arguments must be valid HTML.
  1021. .. method:: SimpleTestCase.assertJSONEqual(raw, expected_data, msg=None)
  1022. Asserts that the JSON fragments ``raw`` and ``expected_data`` are equal.
  1023. Usual JSON non-significant whitespace rules apply as the heavyweight is
  1024. delegated to the :mod:`json` library.
  1025. Output in case of error can be customized with the ``msg`` argument.
  1026. .. method:: TransactionTestCase.assertQuerysetEqual(qs, values, transform=repr, ordered=True)
  1027. Asserts that a queryset ``qs`` returns a particular list of values ``values``.
  1028. The comparison of the contents of ``qs`` and ``values`` is performed using
  1029. the function ``transform``; by default, this means that the ``repr()`` of
  1030. each value is compared. Any other callable can be used if ``repr()`` doesn't
  1031. provide a unique or helpful comparison.
  1032. By default, the comparison is also ordering dependent. If ``qs`` doesn't
  1033. provide an implicit ordering, you can set the ``ordered`` parameter to
  1034. ``False``, which turns the comparison into a Python set comparison.
  1035. .. versionchanged:: 1.6
  1036. The method now checks for undefined order and raises ``ValueError``
  1037. if undefined order is spotted. The ordering is seen as undefined if
  1038. the given ``qs`` isn't ordered and the comparison is against more
  1039. than one ordered values.
  1040. .. method:: TransactionTestCase.assertNumQueries(num, func, *args, **kwargs)
  1041. Asserts that when ``func`` is called with ``*args`` and ``**kwargs`` that
  1042. ``num`` database queries are executed.
  1043. If a ``"using"`` key is present in ``kwargs`` it is used as the database
  1044. alias for which to check the number of queries. If you wish to call a
  1045. function with a ``using`` parameter you can do it by wrapping the call with
  1046. a ``lambda`` to add an extra parameter::
  1047. self.assertNumQueries(7, lambda: my_function(using=7))
  1048. You can also use this as a context manager::
  1049. with self.assertNumQueries(2):
  1050. Person.objects.create(name="Aaron")
  1051. Person.objects.create(name="Daniel")
  1052. .. _topics-testing-email:
  1053. Email services
  1054. --------------
  1055. If any of your Django views send email using :doc:`Django's email
  1056. functionality </topics/email>`, you probably don't want to send email each time
  1057. you run a test using that view. For this reason, Django's test runner
  1058. automatically redirects all Django-sent email to a dummy outbox. This lets you
  1059. test every aspect of sending email -- from the number of messages sent to the
  1060. contents of each message -- without actually sending the messages.
  1061. The test runner accomplishes this by transparently replacing the normal
  1062. email backend with a testing backend.
  1063. (Don't worry -- this has no effect on any other email senders outside of
  1064. Django, such as your machine's mail server, if you're running one.)
  1065. .. currentmodule:: django.core.mail
  1066. .. data:: django.core.mail.outbox
  1067. During test running, each outgoing email is saved in
  1068. ``django.core.mail.outbox``. This is a simple list of all
  1069. :class:`~django.core.mail.EmailMessage` instances that have been sent.
  1070. The ``outbox`` attribute is a special attribute that is created *only* when
  1071. the ``locmem`` email backend is used. It doesn't normally exist as part of the
  1072. :mod:`django.core.mail` module and you can't import it directly. The code
  1073. below shows how to access this attribute correctly.
  1074. Here's an example test that examines ``django.core.mail.outbox`` for length
  1075. and contents::
  1076. from django.core import mail
  1077. from django.test import TestCase
  1078. class EmailTest(TestCase):
  1079. def test_send_email(self):
  1080. # Send message.
  1081. mail.send_mail('Subject here', 'Here is the message.',
  1082. 'from@example.com', ['to@example.com'],
  1083. fail_silently=False)
  1084. # Test that one message has been sent.
  1085. self.assertEqual(len(mail.outbox), 1)
  1086. # Verify that the subject of the first message is correct.
  1087. self.assertEqual(mail.outbox[0].subject, 'Subject here')
  1088. As noted :ref:`previously <emptying-test-outbox>`, the test outbox is emptied
  1089. at the start of every test in a Django ``*TestCase``. To empty the outbox
  1090. manually, assign the empty list to ``mail.outbox``::
  1091. from django.core import mail
  1092. # Empty the test outbox
  1093. mail.outbox = []
  1094. .. _skipping-tests:
  1095. Skipping tests
  1096. --------------
  1097. .. currentmodule:: django.test
  1098. The unittest library provides the :func:`@skipIf <unittest.skipIf>` and
  1099. :func:`@skipUnless <unittest.skipUnless>` decorators to allow you to skip tests
  1100. if you know ahead of time that those tests are going to fail under certain
  1101. conditions.
  1102. For example, if your test requires a particular optional library in order to
  1103. succeed, you could decorate the test case with :func:`@skipIf
  1104. <unittest.skipIf>`. Then, the test runner will report that the test wasn't
  1105. executed and why, instead of failing the test or omitting the test altogether.
  1106. To supplement these test skipping behaviors, Django provides two
  1107. additional skip decorators. Instead of testing a generic boolean,
  1108. these decorators check the capabilities of the database, and skip the
  1109. test if the database doesn't support a specific named feature.
  1110. The decorators use a string identifier to describe database features.
  1111. This string corresponds to attributes of the database connection
  1112. features class. See ``django.db.backends.BaseDatabaseFeatures``
  1113. class for a full list of database features that can be used as a basis
  1114. for skipping tests.
  1115. .. function:: skipIfDBFeature(feature_name_string)
  1116. Skip the decorated test or ``TestCase`` if the named database feature is
  1117. supported.
  1118. For example, the following test will not be executed if the database
  1119. supports transactions (e.g., it would *not* run under PostgreSQL, but
  1120. it would under MySQL with MyISAM tables)::
  1121. class MyTests(TestCase):
  1122. @skipIfDBFeature('supports_transactions')
  1123. def test_transaction_behavior(self):
  1124. # ... conditional test code
  1125. .. versionchanged:: 1.7
  1126. ``skipIfDBFeature`` can now be used to decorate a ``TestCase`` class.
  1127. .. function:: skipUnlessDBFeature(feature_name_string)
  1128. Skip the decorated test or ``TestCase`` if the named database feature is *not*
  1129. supported.
  1130. For example, the following test will only be executed if the database
  1131. supports transactions (e.g., it would run under PostgreSQL, but *not*
  1132. under MySQL with MyISAM tables)::
  1133. class MyTests(TestCase):
  1134. @skipUnlessDBFeature('supports_transactions')
  1135. def test_transaction_behavior(self):
  1136. # ... conditional test code
  1137. .. versionchanged:: 1.7
  1138. ``skipUnlessDBFeature`` can now be used to decorate a ``TestCase`` class.