如何使用pytest测试Django模型?

时间:2016-04-06 09:14:11

标签: python django pytest django-testing pytest-django

我开始使用pytest。我已经配置了pytest,无论如何我都找不到使用pytest进行Django特定测试的资源。如何使用pytest_django测试模型?

我已经问了一个关于单元测试的问题,

  

how do I efficiently test this Django model?

我想知道如何使用py.test编写相同的测试?

在模型下面添加以及在unittest中编写的测试。

被测模型是,

class User(AbstractBaseUser, PermissionsMixin):
    username = models.CharField(max_length=25, unique=True, error_messages={
        'unique': 'The username is taken'
    })
    first_name = models.CharField(max_length=60, blank=True, null=True)
    last_name = models.CharField(max_length=60, blank=True, null=True)
    email = models.EmailField(unique=True, db_index=True, error_messages={
        'unique': 'This email id is already registered!'
    })

    is_active = models.BooleanField(default=True)
    is_staff = models.BooleanField(default=False)

    date_joined = models.DateTimeField(auto_now_add=True)

    USERNAME_FIELD = 'email'
    REQUIRED_FIELDS = ['username',]


    objects = UserManager()

    def get_full_name(self):
        return ' '.join([self.first_name, self.last_name])

    def get_short_name(self):
        return self.email

    def __unicode__(self):
        return self.username

unittest写的,

class SettingsTest(TestCase):    
    def test_account_is_configured(self):
        self.assertTrue('accounts' in INSTALLED_APPS)
        self.assertTrue('accounts.User' == AUTH_USER_MODEL)


class UserTest(TestCase):
    def setUp(self):
        self.username = "testuser"
        self.email = "testuser@testbase.com"
        self.first_name = "Test"
        self.last_name = "User"
        self.password = "z"

        self.test_user = User.objects.create_user(
            username=self.username,
            email=self.email,
            first_name=self.first_name,
            last_name=self.last_name
        )

    def test_create_user(self):
        self.assertIsInstance(self.test_user, User)

    def test_default_user_is_active(self):
        self.assertTrue(self.test_user.is_active)

    def test_default_user_is_staff(self):
        self.assertFalse(self.test_user.is_staff)

    def test_default_user_is_superuser(self):
        self.assertFalse(self.test_user.is_superuser)

    def test_get_full_name(self):
        self.assertEqual('Test User', self.test_user.get_full_name())

    def test_get_short_name(self):
        self.assertEqual(self.email, self.test_user.get_short_name())

    def test_unicode(self):
        self.assertEqual(self.username, self.test_user.__unicode__())

感谢您提供任何意见。

2 个答案:

答案 0 :(得分:4)

你可以使用这个将pytest与Django集成的插件: https://pytest-django.readthedocs.org/en/latest/tutorial.html

此处描述了pytest.ini的设置和更改: http://www.johnmcostaiii.net/2013/django-projects-to-django-apps-converting-the-unit-tests/

您可以从幻灯片57开始找到您的示例。 此套牌将用于测试视图以及模型和测试模型特定的设置:https://speakerdeck.com/pelme/testing-django-applications-with-py-dot-test-europython-2013

具体看看@ pytest.mark.django_db帮助文件:http://pytest-django.readthedocs.org/en/latest/helpers.html

在此处复制了在上面的套牌中提到的允许数据库访问的示例。没有mark.django_db,测试就会失败。

import pytest
@pytest.mark.django_db
def test_user_count():
    assert User.objects.count() == 0

答案 1 :(得分:4)

  

pytest支持运行Python unittest.py样式测试。它旨在利用现有的单元测试风格的项目来使用pytest功能。具体来说,pytest会自动在测试文件中收集unittest.TestCase子类及其测试方法。它将调用典型的setup / teardown方法,并且通常尝试编写测试套件以在unittest上运行,也可以使用pytest运行。

给定的测试可以使用py.test进行测试而无需任何修改,但py.test使测试更加pythonic。

class SettingsTest(TestCase):    
    def test_account_is_configured(self):
        assert 'accounts' in INSTALLED_APPS
        assert 'accounts.User' == AUTH_USER_MODEL


class UserTest(TestCase):
    def setUp(self):
        self.username = "testuser"
        self.email = "testuser@testbase.com"
        self.first_name = "Test"
        self.last_name = "User"
        self.password = "z"

        self.test_user = User.objects.create_user(
            username=self.username,
            email=self.email,
            first_name=self.first_name,
            last_name=self.last_name
        )

    def test_create_user(self):
        assert isinstance(self.test_user, User)

    def test_default_user_is_active(self):
        assert self.test_user.is_active

    def test_default_user_is_staff(self):
        assert not self.test_user.is_staff

    def test_default_user_is_superuser(self):
        assert not self.test_user.is_superuser

    def test_get_full_name(self):
        assert self.test_user.get_full_name() == 'Test User'

    def test_get_short_name(self):
        assert self.test_user.get_short_name() == self.email

    def test_unicode(self):
        assert self.test_user.__unicode__() == self.username

正如@Sid所提到的,您可以使用@pytest.mark.django_db标记(装饰器)在运行测试时访问数据库而不使用django.test.TestCase