This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/passbook/tfa/tests/test_middleware.py

26 lines
768 B
Python
Raw Normal View History

2018-11-16 09:08:15 +00:00
"""passbook Mod 2FA Middleware Test"""
2018-11-16 08:10:35 +00:00
import os
from django.contrib.auth.models import AnonymousUser
from django.test import RequestFactory, TestCase
from django.urls import reverse
2018-11-16 09:08:15 +00:00
from passbook.core.views import common
from passbook.tfa.middleware import tfa_force_verify
2018-11-16 08:10:35 +00:00
class TestMiddleware(TestCase):
2018-11-16 09:08:15 +00:00
"""passbook 2FA Middleware Test"""
2018-11-16 08:10:35 +00:00
def setUp(self):
os.environ['RECAPTCHA_TESTING'] = 'True'
self.factory = RequestFactory()
def test_tfa_force_verify_anon(self):
2018-11-16 09:08:15 +00:00
"""Test Anonymous TFA Force"""
2018-11-16 08:10:35 +00:00
request = self.factory.get(reverse('common-index'))
request.user = AnonymousUser()
response = tfa_force_verify(common.IndexView.as_view())(request)
self.assertEqual(response.status_code, 302)