40 lines
1020 B
Python
40 lines
1020 B
Python
#!/usr/bin/env python3
|
|
import sys, os
|
|
sys.path.append(".")
|
|
sys.path.append("src/")
|
|
import unittest, uuid
|
|
from time import sleep
|
|
|
|
TEST_DIR = 'testdata/%s-%s' % (uuid.uuid4(), os.path.basename(__file__)) + '/'
|
|
print("Test directory:", TEST_DIR)
|
|
os.environ["ONIONR_HOME"] = TEST_DIR
|
|
from utils import networkmerger
|
|
from coredb import keydb
|
|
import onionrsetup as setup
|
|
from utils import createdirs
|
|
from onionrthreads import add_onionr_thread
|
|
createdirs.create_dirs()
|
|
setup.setup_config()
|
|
class OnionrThreadsTests(unittest.TestCase):
|
|
|
|
def test_onionr_thread(self):
|
|
l = []
|
|
def _test_func(obj_list):
|
|
obj_list.append(1)
|
|
|
|
add_onionr_thread(_test_func, (l,), 0.05, 0)
|
|
sleep(0.05)
|
|
self.assertGreaterEqual(len(l), 1)
|
|
|
|
def test_onionr_thread_initial_sleep(self):
|
|
l = []
|
|
def _test_func(obj_list):
|
|
obj_list.append(1)
|
|
|
|
add_onionr_thread(_test_func, (l,), 0.05, 0.1)
|
|
sleep(0.06)
|
|
self.assertEqual(len(l), 0)
|
|
|
|
|
|
unittest.main()
|