-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunittest_lucit_licensing_python.py
98 lines (83 loc) · 3.62 KB
/
unittest_lucit_licensing_python.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# File: test_functions.py
#
# Project website: https://www.lucit.tech/lucit-licensing-python.html
# Github: https://github.com/LUCIT-Systems-and-Development/lucit-licensing-python
# Documentation: https://lucit-licensing-python.docs.lucit.tech
# PyPI: https://pypi.org/project/lucit-licensing-python
# LUCIT Online Shop: https://shop.lucit.services/software
#
# License: LSOSL - LUCIT Synergetic Open Source License
# https://github.com/LUCIT-Systems-and-Development/lucit-licensing-python/blob/master/LICENSE
#
# Author: LUCIT Systems and Development
#
# Copyright (c) 2023-2023, LUCIT Systems and Development (https://www.lucit.tech)
# All rights reserved.
import asyncio
import logging
import time
import pprint
from lucit_licensing_python.licensing_manager import LucitLicensingManager
class LTC:
def __init__(self, api_secret=None, license_token=None):
self.api_secret = api_secret
self.license_token = license_token
self.llm = LucitLicensingManager(api_secret=api_secret, license_token=license_token,
program_used="unicorn-binance-websocket-api", start=False)
self.sigterm = False
def close(self):
self.sigterm = True
return self.llm.close()
async def test_licensing(self):
while self.sigterm is False:
start_time = time.time()
test = self.llm.test()
if "Connection Error - Connection could not be established." not in str(test):
print(f"/test:\r\n{test}")
timestamp = self.llm.get_timestamp()
if "Connection Error - Connection could not be established." not in str(timestamp):
print(f"\r\n/timestamp:\r\n{timestamp}")
version = self.llm.get_version()
if "Connection Error - Connection could not be established." not in str(version):
print(f"\r\n/version:\r\n{version}")
quotas = self.llm.get_quotas(api_secret=self.api_secret, license_token=self.license_token)
print(f"\r\n/quotas:")
pprint.pprint(quotas)
status = self.llm.verify()
if "error" in str(status):
if "404 Not Found" in str(status['error']) \
or "403 Forbidden" in str(status['error']):
if "Forbidden - Timestamp not valid" in status['error']:
print(f"Timestamp not valid - Syncing time ...")
self.llm.sync_time()
print(f"Negative License Verification: {status}")
break
elif "429 Too Many Requests" in str(status['error']):
print(f"{status['error']}")
time.sleep(20)
print(f"\r\n/verify:")
pprint.pprint(status)
quotas = self.llm.get_quotas(api_secret=self.api_secret, license_token=self.license_token)
print(f"\r\n/quotas:")
pprint.pprint(quotas)
print(f"Runtime: {(time.time()-start_time)}")
self.sigterm = True
self.close()
if __name__ == "__main__":
logging.getLogger("lucit_licensing_python")
logging.basicConfig(level=logging.INFO,
format="{asctime} [{levelname:8}] {process} {thread} {module}: {message}",
style="{")
ltc = LTC()
try:
asyncio.run(ltc.test_licensing())
except KeyboardInterrupt:
print("\r\nGracefully stopping ...")
ltc.close()
except Exception as error_msg:
print(f"\r\nERROR: {error_msg}")
print("Gracefully stopping ...")
ltc.close()