mCaptcha-cache/tests/mcaptcha.py

103 lines
2.7 KiB
Python
Raw Normal View History

#!/bin/env /usr/bin/python3
#
# Copyright (C) 2021 Aravinth Manivannan <realaravinth@batsense.net>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
import json
2021-06-07 14:44:39 +03:00
import utils
2021-06-08 16:43:57 +03:00
r = utils.connect()
2021-06-07 14:44:39 +03:00
utils.ping(r)
MCAPTCHA = {
2021-06-07 14:44:39 +03:00
"levels": [
{"visitor_threshold": 50, "difficulty_factor": 50},
{"visitor_threshold": 500, "difficulty_factor": 500}
],
"duration": 5
}
COMMANDS = {
"ADD_CAPTCHA": "MCAPTCHA_CACHE.ADD_CAPTCHA",
2021-06-07 14:44:39 +03:00
"DELETE_CAPTCHA": "MCAPTCHA_CACHE.DELETE_CAPTCHA",
"CAPTCHA_EXISTS": "MCAPTCHA_CACHE.CAPTCHA_EXISTS",
2021-07-19 13:51:48 +03:00
"RENAME_CAPTCHA": "MCAPTCHA_CACHE.RENAME_CAPTCHA",
}
payload = json.dumps(MCAPTCHA)
2021-06-07 14:44:39 +03:00
def delete_captcha(key):
r.execute_command(COMMANDS["DELETE_CAPTCHA"], key)
2021-07-19 13:51:48 +03:00
def add_captcha(key):
r.execute_command(COMMANDS["ADD_CAPTCHA"], key, payload)
2021-06-07 14:44:39 +03:00
2021-07-19 13:51:48 +03:00
def rename_captcha(key, new_key):
r.execute_command(COMMANDS["RENAME_CAPTCHA"], key, new_key)
2021-06-07 14:44:39 +03:00
def captcha_exists(key):
exists = r.execute_command(COMMANDS["CAPTCHA_EXISTS"], key)
if exists == 0:
return True
if exists == 1:
return False
2021-07-19 13:51:48 +03:00
def register(key):
2021-06-07 14:44:39 +03:00
if captcha_exists(key):
delete_captcha(key)
2021-07-19 13:51:48 +03:00
add_captcha(key)
2021-06-07 14:44:39 +03:00
async def captcha_exists_works():
key = "captcha_delete_works"
if captcha_exists(key):
delete_captcha(key)
assert captcha_exists(key) is False
register(key)
assert captcha_exists(key) is True
2021-06-08 16:43:57 +03:00
print("[*] Captcha delete works")
2021-06-07 14:44:39 +03:00
async def register_captcha_works():
key = "register_captcha_works"
register(key)
assert captcha_exists(key) is True
2021-06-08 16:43:57 +03:00
print("[*] Add captcha works")
2021-06-07 14:44:39 +03:00
async def delete_captcha_works():
key = "delete_captcha_works"
register(key)
exists = captcha_exists(key)
assert exists is True
delete_captcha(key)
assert captcha_exists(key) is False
2021-06-08 16:43:57 +03:00
print("[*] Delete captcha works")
2021-07-19 13:51:48 +03:00
async def rename_captcha_works():
key = "rename_captcha_works"
new_key = "new_key_rename_captcha_works"
register(key)
exists = captcha_exists(key)
assert exists is True
rename_captcha(key, new_key)
assert captcha_exists(key) is False
assert captcha_exists(new_key) is True
print("[*] Rename captcha works")