mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
363 B
15 lines
363 B
from django.test import TestCase |
|
|
|
# Create your tests here. |
|
|
|
from .utils import random_string, signer |
|
|
|
|
|
def test_signer_len(): |
|
results = {} |
|
for i in range(1, 4096): |
|
s = random_string(i) |
|
encs = signer.sign(s) |
|
results[i] = (len(encs)/len(s)) |
|
results = sorted(results.items(), key=lambda x: x[1], reverse=True) |
|
print(results)
|
|
|