-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtest.py
34 lines (26 loc) · 775 Bytes
/
test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import random
import pprint
from fastapi.testclient import TestClient
from app import app
client = TestClient(app)
def getRandLetter():
return chr(random.randint(ord("a"), ord("z")))
def getRandWord():
wlen = 10
wlst = [getRandLetter() for _ in range(wlen)]
word = "".join(wlst)
return word
def dec(curWrd):
diffList = []
prm = {"msg": curWrd}
rsp = client.post("/encrypt", json={"msg": curWrd}).json()
encrypted = rsp["encrypted"]
diffList.append(len(encrypted) / len(curWrd))
prm = {"dec": encrypted, "destroy": "True"}
rbp = client.post("/decrypt", json=prm).json()
pprint.pprint(rbp)
decrypted = rbp["msg"]
return decrypted
def test_answer():
curWrd = getRandWord()
assert dec(curWrd) == curWrd