В настоящее время я тестирую свое приложение django (2.1.0) с некоторыми апи-юнит-тестами. Я использовал django rest framework (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/', headers=payload)
self.assertEqual(response.status_code, 405)
Тесты выполняются, когда я использую:
coverage run --source='.' manage.py test 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': 'Other Methods than GET not allowed'}, status=405) will never be used.
У вас есть идея?