2019-07-26 23:20:27 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
import sys, os
|
|
|
|
sys.path.append(".")
|
2019-09-13 02:22:25 +00:00
|
|
|
sys.path.append("onionr/")
|
2019-07-26 23:20:27 +00:00
|
|
|
import unittest, uuid
|
|
|
|
|
|
|
|
TEST_DIR = 'testdata/%s-%s' % (uuid.uuid4(), os.path.basename(__file__)) + '/'
|
|
|
|
print("Test directory:", TEST_DIR)
|
|
|
|
os.environ["ONIONR_HOME"] = TEST_DIR
|
|
|
|
import netcontroller
|
|
|
|
|
|
|
|
class GetOpenPortTest(unittest.TestCase):
|
|
|
|
def test_open_port(self):
|
|
|
|
open_port = int(netcontroller.get_open_port())
|
|
|
|
self.assertGreaterEqual(open_port, 1024)
|
|
|
|
|
2019-09-13 02:22:25 +00:00
|
|
|
unittest.main()
|