difference between django.test.TestCase vs unittest vs django.utils.unittest.TestCase

半腔热情 提交于 2019-12-03 16:30:04

问题


I am still using Django 1.2.1, and I think with the newer Django we don't import unittest and then do unittest.TestCase.

Illustration

import unittest
class TestThis(unittest.TestCase):

from django.utils.unittest import TestCase
class TestThis(TestCase):

from django.test import TestCase
class TestThis(TestCase):

According to PyCon2011 talk, the second one is slightly more efficient.

Here is the diagram showing the relations:

So django.utils.unittest and django.test inherit from either unittest or unittest2.

I am not sure if the following is correct or not. Please help editing.

 ________________________________________________________________
|  Name                   |  Django Version  |  Python Version  |
-----------------------------------------------------------------
|  unittest               |     >= 1.0       |      >= 2.6      |
-----------------------------------------------------------------
|  django.utils.unittest  |     >= 1.3       |       ??         |
-----------------------------------------------------------------
|  django.test            |     >= 1.0       |      >= 2.6      |
|   - SimpleTestCase            >= 1.4              >= 2.7      |
|   - LiveServerTestCase        >= 1.4              >= 2.7      |
-----------------------------------------------------------------

In terms of efficiency, which one of the three is better? Many Django developers mock when they test, so sometimes database are not even necessary. Is there a way not creating tables when we run manage.py test myapp.MyClass ? For older version (prior to 1.3), which one is better?


回答1:


Django's TestCase enhances unittest.TestCase with some extra features:

  • Automatic loading of fixtures.
  • Wraps each test in a transaction.
  • Creates a TestClient instance.
  • Django-specific assertions for testing for things like redirection and form errors.

Generally speaking, you should most likely be using one of Django's TestCase subclasses. Usually this will be django.test.TestCase, which, for efficiency, wraps the test in a DB transaction and uses rollback to 'undo' the test in the DB. If you need to manually manage transactions within your test, you would need to use django.test.TransactionTestCase, since you can't start / rollback a transaction within a transaction.

There are some minor caveats to using django.test.TestCase, see the note here for more information.

ALSO:

If you're just looking for a way to run your tests faster, have a look at running your tests in memory, and (if you're using South), set SOUTH_TESTS_MIGRATE = False to tell South to use a (much faster) syncdb when creating the test DB, rather than running migrations.



来源:https://stackoverflow.com/questions/10064846/difference-between-django-test-testcase-vs-unittest-vs-django-utils-unittest-tes

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!