Django中的单元测试怎么写?

Django 框架自带了单元测试工具,利用该工具,我们可以方便地对单元进行错误检查,以提高项目的质量。

在 Django 框架中,当新建一个应用时,会默认新建一个用于单元测试的 test.py 文件,我们的单元测试代码就写在 test.py 里。

一个简单的测试案例

在建立user应用,user应用中书写一个测试案例:

from django.test import TestCase

# Create your tests here.

def add(a,b):

    return a + b

if __name__ == '__main__':

    c = add(1,2)

    assert c == 3

    c = add(1.0,2)

    assert c == 3.0

    c = add(3,5)

    assert c == 9.0

右击,点击运行该test.py文件,用例不通过则会报错:

使用unittest模块

Unittest模块的测试用例,默认必须以test_开头,否则找不到用例,该用例不执行。

from django.test import TestCase

import unittest

# Create your tests here.

def add(a,b):

    return a + b

class AddTest(unittest.TestCase):

    def test_init(self):

        self.assertEqual(add(1,2),3)

    def test_float(self):

        self.assertEqual(add(1.0, 2), 3.0)

    def test_err(self):

        self.assertEqual(add(3,5),9.0)

if __name__ == '__main__':

    unittest.main()

运行:

结果要比自己写assert要清晰 

​​​​​​​使用django内置的单元测试

Django.test中的TestCase其实是unittest的子类,因此在使用时,用例也必须以test_开头,否则会出现找不到用例的情况。

案例一:简单使用

from django.test import TestCase

from .models import User

# Create your tests here.

class simpleCase(TestCase):

    # 测试之前

    def setUp(self):

        # 测试模型-测试类型的数据是不会放入到你的数据库里面的

        User.objects.create(username='lili',password='123456',email='270108125@qq.com',is_active=False)

    def test_model_add(self):

        user = User.objects.get(username='lili')

        self.assertIsNot(user,None)

在项目目录下,运行:python manage.py test

将查询用户名改为:lili1,即查询不到。

def test_model_add(self):

    user = User.objects.get(username='lili1')

    self.assertIsNot(user,None)

案例二:登录验证

用代码访问网址的方法:

from django.test import Client

c = Client()

response = c.post('/login/', {'username': 'john', 'password': 'smith'})

response.status_code

response = c.get('/customer/details/')

response.content

测试登录:

import hashlib

from django.test import TestCase

from .models import User

from django.test import Client

# Create your tests here.

class simpleCase(TestCase):

    # 测试之前

    def setUp(self):

        # 测试模型

        sha256 = hashlib.sha256()

        sha256.update('12345678'.encode('utf-8'))

        comparePwd = sha256.hexdigest()

        User.objects.create(username='lili',password=comparePwd,email='270108125@qq.com',is_active=False)

        self.client = Client()

    def test_model_add(self):

        user = User.objects.get(username='lili')

        self.assertIsNot(user,None)

    def test_get_login(self):

        response = self.client.get('/login/')

        self.assertEqual(response.status_code,200)

    def test_post_login_1(self):

        self.client.post('/login/', {'user_name': 'lili', 'pwd': '12345678'})

        sess = self.client.session.get('is_login', None)

        self.assertEqual(sess, 1)

    def test_post_login_2(self):

        self.client.post('/login/', {'user_name': 'yuanyuan1', 'pwd': '12345678'})

        sess = self.client.session.get('is_login', None)

        self.assertEqual(sess, None)

登录的视图实现:

def login(request):

    if request.method == 'GET':

        return render(request,'login.html')

    else:

        username = request.POST.get('user_name')

        password = request.POST.get('pwd')

        sha256 = hashlib.sha256()

        sha256.update(password.encode('utf-8'))

        comparePwd = sha256.hexdigest()

        user = User.objects.filter(username=username,password=comparePwd)

        if not user:

            print("1-----")

            return render(request, 'login.html', {

                'errMsg': '用户名和密码不正确'

            })

        else:

            print("0-----")

            request.session['is_login'] = 1

            request.session['user_name'] = username

            return HttpResponseRedirect('/index/')

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

嵌入式园姐

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值