-
Notifications
You must be signed in to change notification settings - Fork 441
/
Copy pathtest_utils.py
46 lines (32 loc) · 1.33 KB
/
test_utils.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
35
36
37
38
39
40
41
42
43
44
45
46
import os
from unittest import TestCase
import dill
from celery.canvas import Signature
from django_celery_beat.utils import sign_task_signature, verify_task_signature, generate_keys
class UtilsTests(TestCase):
test_private_key_path = './test_id_rsa'
test_public_key_path = './test_id_rsa.pub'
@classmethod
def setUpClass(cls) -> None:
super(UtilsTests, cls).setUpClass()
os.environ.update({
'DJANGO_CELERY_BEAT_PRIVATE_KEY_PATH': cls.test_private_key_path,
'DJANGO_CELERY_BEAT_PUBLIC_KEY_PATH': cls.test_public_key_path,
})
generate_keys(
private_key_path=cls.test_private_key_path,
public_key_path=cls.test_public_key_path
)
def test_sign_verify_task_signature(self):
empty_task_signature = Signature()
serialized_empty_task = dill.dumps(empty_task_signature)
s = sign_task_signature(serialized_empty_task)
is_valid = verify_task_signature(serialized_empty_task, s)
self.assertTrue(is_valid)
@classmethod
def tearDownClass(cls) -> None:
super(UtilsTests, cls).tearDownClass()
if os.path.exists(cls.test_private_key_path):
os.remove(cls.test_private_key_path)
if os.path.exists(cls.test_public_key_path):
os.remove(cls.test_public_key_path)