python-覆盖率显示的Django测试百分比太低

前端之家收集整理的这篇文章主要介绍了python-覆盖率显示的Django测试百分比太低 前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我目前正在使用一些api-unit-tests测试我的django(2.1.0)应用程序.我使用django rest框架(3.9.0)建立了一个登录名.为此,我使用如下代码

class logoutTest(APITestCase):
    def test_login_post_unauth(self):
        response = requests.post('http://127.0.0.1:8000/myapp/user_info/')
        self.assertEqual(response.status_code,401)

    def test_login_put_auth(self):
        token = auth()
        payload = {'Authorization': 'Token '+token}
        response = requests.put('http://127.0.0.1:8000/myapp/user_info/',headers=payload)
        self.assertEqual(response.status_code,405)

    def test_login_delete_auth(self):
        token = auth()
        payload = {'Authorization': 'Token '+token}
        response = requests.delete('http://127.0.0.1:8000/myapp/user_info/',405)

当我使用时,测试正在运行:

覆盖范围运行–source =’. manage.py测试myapp

就像你看到的:

Creating test database for alias 'default'...
System check identified no issues (0 silenced).
....................................
----------------------------------------------------------------------
Ran 36 tests in 5.082s

OK
Destroying test database for alias 'default'...

但是当我做覆盖率报告时

myapp / auth.py 72 46 36%

尽管事实上我的api测试使用了我的auth.py中的代码.
我的auth.py看起来像这样:


    def logout(request):
        if request.method == 'GET':
            request.user.auth_token.delete()
            return JsonResponse({'message':'You are sucessfully logged out'},status=200)
        return JsonResponse({'error': 'Other Methods than GET not allowed'},status=405)

但是报道说

return JsonResponse({‘error’:’除GET之外,不允许使用其他方法’},status = 405)将永远不会使用.

你有想法吗?

最佳答案
我找到了答案.我写错了测试. Django提供了自己的测试工具,您应该使用它们!并且不要在请求中写任何东西,因为覆盖将在未使用的情况下将您的代码(例如auth.py)标识为未使用,因为您的测试未使用Django测试工具进行
原文链接:https://www.f2er.com/python/533256.html

猜你在找的Python相关文章