mirror of
https://github.com/jazzband/django-axes.git
synced 2026-05-11 09:03:12 +00:00
Added 12 tests that verify lockouts for default, AXES_ONLY_USER_FAILURES, and LOCK_OUT_BY_COMBINATION_USER_AND_IP settings, under four conditions each: same/different user, and same/different IP address. Truth Table: ¦ ¦ ¦ ¦ ¦ ¦ ¦User IP Action ¦ ¦ ¦ ¦ ¦ ¦|-------------------------------- IP Only | Same Same Block (Default) | Same Different Allow ¦ ¦ ¦ ¦ ¦ ¦| Different Same Block ¦ ¦ ¦ ¦ ¦ ¦| Different Different Allow ¦ ¦ ¦ ¦ ¦ ¦|-------------------------------- User Only | Same Same Block ¦ ¦ ¦ ¦ ¦ ¦| Same Different Block ¦ ¦ ¦ ¦ ¦ ¦| Different Same Allow ¦ ¦ ¦ ¦ ¦ ¦| Different Different Allow ¦ ¦ ¦ ¦ ¦ ¦|-------------------------------- User and IP | Same Same Block ¦ ¦ ¦ ¦ ¦ ¦| Same Different Allow ¦ ¦ ¦ ¦ ¦ ¦| Different Same Allow ¦ ¦ ¦ ¦ ¦ ¦| Different Different Allow
25 lines
592 B
Python
Executable file
25 lines
592 B
Python
Executable file
#!/usr/bin/env python
|
|
|
|
import os
|
|
import sys
|
|
|
|
import django
|
|
from django.conf import settings
|
|
from django.test.utils import get_runner
|
|
|
|
|
|
def run_tests(settings_module, *modules):
|
|
os.environ['DJANGO_SETTINGS_MODULE'] = settings_module
|
|
django.setup()
|
|
TestRunner = get_runner(settings)
|
|
test_runner = TestRunner()
|
|
failures = test_runner.run_tests(*modules)
|
|
sys.exit(bool(failures))
|
|
|
|
|
|
if __name__ == '__main__':
|
|
run_tests('axes.test_settings', [
|
|
'axes.tests.AccessAttemptTest',
|
|
'axes.tests.AccessAttemptConfigTest',
|
|
'axes.tests.UtilsTest',
|
|
])
|