Host-customized fork of https://github.com/tecnovert/basicswap/
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.
203 lines
7.7 KiB
203 lines
7.7 KiB
#!/usr/bin/env python3 |
|
# -*- coding: utf-8 -*- |
|
|
|
# Copyright (c) 2019-2022 tecnovert |
|
# Distributed under the MIT software license, see the accompanying |
|
# file LICENSE or http://www.opensource.org/licenses/mit-license.php. |
|
|
|
import os |
|
import sys |
|
import json |
|
import shutil |
|
import logging |
|
import unittest |
|
import threading |
|
import multiprocessing |
|
|
|
from io import StringIO |
|
from unittest.mock import patch |
|
|
|
import basicswap.config as cfg |
|
from tests.basicswap.util import ( |
|
read_json_api, |
|
waitForServer, |
|
) |
|
|
|
bin_path = os.path.expanduser(os.getenv('TEST_BIN_PATH', '')) |
|
test_base_path = os.path.expanduser(os.getenv('TEST_PREPARE_PATH', '~/test_basicswap')) |
|
test_path_plain = os.path.join(test_base_path, 'plain') |
|
test_path_encrypted = os.path.join(test_base_path, 'encrypted') |
|
test_path_encrypt = os.path.join(test_base_path, 'encrypt') |
|
|
|
delay_event = threading.Event() |
|
logger = logging.getLogger() |
|
logger.level = logging.DEBUG |
|
logger.addHandler(logging.StreamHandler(sys.stdout)) |
|
|
|
|
|
def start_prepare(args, env_pairs=[]): |
|
for pair in env_pairs: |
|
os.environ[pair[0]] = pair[1] |
|
print(pair[0], os.environ[pair[0]]) |
|
import bin.basicswap_prepare as prepareSystemThread |
|
with patch.object(sys, 'argv', args): |
|
prepareSystemThread.main() |
|
del prepareSystemThread |
|
|
|
|
|
def start_run(args, env_pairs=[]): |
|
for pair in env_pairs: |
|
os.environ[pair[0]] = pair[1] |
|
print(pair[0], os.environ[pair[0]]) |
|
import bin.basicswap_run as runSystemThread |
|
with patch.object(sys, 'argv', args): |
|
runSystemThread.main() |
|
del runSystemThread |
|
|
|
|
|
class Test(unittest.TestCase): |
|
@classmethod |
|
def tearDownClass(self): |
|
try: |
|
for test_dir in (test_path_plain, test_path_encrypted, test_path_encrypt): |
|
if os.path.exists(test_dir): |
|
shutil.rmtree(test_dir) |
|
except Exception as ex: |
|
logger.warning('tearDownClass %s', str(ex)) |
|
super(Test, self).tearDownClass() |
|
|
|
def test_plain(self): |
|
if os.path.exists(test_path_plain): |
|
shutil.rmtree(test_path_plain) |
|
if bin_path != '': |
|
os.makedirs(test_path_plain) |
|
os.symlink(bin_path, os.path.join(test_path_plain, 'bin')) |
|
|
|
testargs = ('basicswap-prepare', '-datadir=' + test_path_plain, '-withcoin=litecoin') |
|
process = multiprocessing.Process(target=start_prepare, args=(testargs,)) |
|
process.start() |
|
process.join() |
|
|
|
config_path = os.path.join(test_path_plain, cfg.CONFIG_FILENAME) |
|
self.assertTrue(os.path.exists(config_path)) |
|
|
|
import bin.basicswap_prepare as prepareSystem |
|
try: |
|
logging.info('Test no overwrite') |
|
testargs = ['basicswap-prepare', '-datadir=' + test_path_plain, '-withcoin=litecoin'] |
|
with patch('sys.stderr', new=StringIO()) as fake_stderr: |
|
with patch.object(sys, 'argv', testargs): |
|
with self.assertRaises(SystemExit) as cm: |
|
prepareSystem.main() |
|
|
|
self.assertEqual(cm.exception.code, 1) |
|
logger.info('fake_stderr.getvalue() %s', fake_stderr.getvalue()) |
|
self.assertTrue('exists, exiting' in fake_stderr.getvalue()) |
|
|
|
logger.info('Test addcoin new') |
|
testargs = ['basicswap-prepare', '-datadir=' + test_path_plain, '-addcoin=namecoin'] |
|
with patch.object(sys, 'argv', testargs): |
|
prepareSystem.main() |
|
with open(config_path) as fs: |
|
settings = json.load(fs) |
|
self.assertTrue(settings['chainclients']['namecoin']['connection_type'] == 'rpc') |
|
|
|
logger.info('Test disablecoin') |
|
testargs = ['basicswap-prepare', '-datadir=' + test_path_plain, '-disablecoin=namecoin'] |
|
with patch.object(sys, 'argv', testargs): |
|
prepareSystem.main() |
|
with open(config_path) as fs: |
|
settings = json.load(fs) |
|
self.assertTrue(settings['chainclients']['namecoin']['connection_type'] == 'none') |
|
|
|
logger.info('Test addcoin existing') |
|
testargs = ['basicswap-prepare', '-datadir=' + test_path_plain, '-addcoin=namecoin'] |
|
with patch.object(sys, 'argv', testargs): |
|
prepareSystem.main() |
|
with open(config_path) as fs: |
|
settings = json.load(fs) |
|
self.assertTrue(settings['chainclients']['namecoin']['connection_type'] == 'rpc') |
|
finally: |
|
del prepareSystem |
|
|
|
def test_encrypted(self): |
|
if os.path.exists(test_path_encrypted): |
|
shutil.rmtree(test_path_encrypted) |
|
if bin_path != '': |
|
os.makedirs(test_path_encrypted) |
|
os.symlink(bin_path, os.path.join(test_path_encrypted, 'bin')) |
|
|
|
env_vars = [('WALLET_ENCRYPTION_PWD', 'test123'), ] |
|
testargs = ('basicswap-prepare', '-datadir=' + test_path_encrypted, '-withcoin=litecoin,monero') |
|
process = multiprocessing.Process(target=start_prepare, args=(testargs, env_vars)) |
|
process.start() |
|
process.join() |
|
assert (process.exitcode == 0) |
|
|
|
logger.info('Should not be able to add a coin without setting WALLET_ENCRYPTION_PWD') |
|
testargs = ('basicswap-prepare', '-datadir=' + test_path_encrypted, '-addcoin=bitcoin') |
|
process = multiprocessing.Process(target=start_prepare, args=(testargs, [])) |
|
process.start() |
|
process.join() |
|
assert (process.exitcode == 1) |
|
|
|
testargs = ('basicswap-prepare', '-datadir=' + test_path_encrypted, '-addcoin=bitcoin') |
|
process = multiprocessing.Process(target=start_prepare, args=(testargs, env_vars)) |
|
process.start() |
|
process.join() |
|
assert (process.exitcode == 0) |
|
|
|
def test_encrypt(self): |
|
if os.path.exists(test_path_encrypt): |
|
shutil.rmtree(test_path_encrypt) |
|
if bin_path != '': |
|
os.makedirs(test_path_encrypt) |
|
os.symlink(bin_path, os.path.join(test_path_encrypt, 'bin')) |
|
|
|
testargs = ('basicswap-prepare', '-regtest=1', '-datadir=' + test_path_encrypt, '-withcoin=litecoin,monero') |
|
process = multiprocessing.Process(target=start_prepare, args=(testargs, )) |
|
process.start() |
|
process.join() |
|
assert (process.exitcode == 0) |
|
|
|
logger.info('basicswap-run should fail if WALLET_ENCRYPTION_PWD is set') |
|
env_vars = [('WALLET_ENCRYPTION_PWD', 'test123'), ] |
|
testargs = ('basicswap-run', '-regtest=1', '-datadir=' + test_path_encrypt) |
|
process = multiprocessing.Process(target=start_run, args=(testargs, env_vars)) |
|
process.start() |
|
process.join() |
|
assert (process.exitcode == 1) |
|
|
|
testargs = ('basicswap-run', '-regtest=1', '-datadir=' + test_path_encrypt) |
|
process = multiprocessing.Process(target=start_run, args=(testargs, )) |
|
process.start() |
|
|
|
waitForServer(delay_event, 12700) |
|
rv = read_json_api(12700, 'setpassword', {'oldpassword': 'wrongpass', 'newpassword': 'test123'}) |
|
assert ('error' in rv) |
|
|
|
rv = read_json_api(12700, 'setpassword', {'oldpassword': '', 'newpassword': 'test123'}) |
|
assert ('success' in rv) |
|
|
|
rv = read_json_api(12700, 'setpassword', {'oldpassword': 'test123', 'newpassword': 'next123'}) |
|
assert ('success' in rv) |
|
|
|
rv = read_json_api(12700, 'lock') |
|
assert ('success' in rv) |
|
|
|
rv = read_json_api(12700, 'wallets') |
|
assert ('error' in rv) |
|
|
|
rv = read_json_api(12700, 'unlock', {'password': 'next123'}) |
|
assert ('success' in rv) |
|
|
|
rv = read_json_api(12700, 'wallets') |
|
assert ('PART' in rv) |
|
|
|
process.terminate() |
|
process.join() |
|
assert (process.exitcode == 0) |
|
|
|
|
|
if __name__ == '__main__': |
|
unittest.main()
|
|
|