mirror of
https://github.com/basicswap/basicswap.git
synced 2024-11-17 00:07:56 +00:00
tests: Reduce test amounts.
This commit is contained in:
parent
5a0263ba5e
commit
a27cfcba0f
2 changed files with 16 additions and 3 deletions
|
@ -4129,7 +4129,7 @@ class BasicSwap(BaseApp):
|
|||
self.log.error(error_msg)
|
||||
|
||||
str_error = str(ex)
|
||||
if num_retries < 5 and 'not enough unlocked money' in str_error or 'transaction was rejected by daemon' in str_error:
|
||||
if num_retries < 5 and ('not enough unlocked money' in str_error or 'transaction was rejected by daemon' in str_error):
|
||||
delay = random.randrange(self.min_delay_retry, self.max_delay_retry)
|
||||
self.log.info('Retrying sending xmr swap chain B lock tx for bid %s in %d seconds', bid_id.hex(), delay)
|
||||
self.createEventInSession(delay, EventTypes.SEND_XMR_SWAP_LOCK_TX_B, bid_id, session)
|
||||
|
|
|
@ -576,12 +576,17 @@ class Test(unittest.TestCase):
|
|||
logging.info('---------- Test Multiple concurrent swaps')
|
||||
swap_clients = self.swap_clients
|
||||
|
||||
amt_1 = make_int(random.uniform(0.001, 100.0), scale=8, r=1)
|
||||
amt_2 = make_int(random.uniform(0.001, 100.0), scale=8, r=1)
|
||||
js_w0_before = json.loads(urlopen('http://127.0.0.1:1800/json/wallets').read())
|
||||
js_w1_before = json.loads(urlopen('http://127.0.0.1:1801/json/wallets').read())
|
||||
|
||||
amt_1 = make_int(random.uniform(0.001, 49.0), scale=8, r=1)
|
||||
amt_2 = make_int(random.uniform(0.001, 49.0), scale=8, r=1)
|
||||
|
||||
rate_1 = make_int(random.uniform(80.0, 110.0), scale=12, r=1)
|
||||
rate_2 = make_int(random.uniform(0.01, 0.5), scale=12, r=1)
|
||||
|
||||
logging.info('amt_1 {}, rate_1 {}'.format(amt_1, rate_1))
|
||||
logging.info('amt_2 {}, rate_2 {}'.format(amt_2, rate_2))
|
||||
offer1_id = swap_clients[0].postOffer(Coins.BTC, Coins.XMR, amt_1, rate_1, amt_1, SwapTypes.XMR_SWAP)
|
||||
offer2_id = swap_clients[0].postOffer(Coins.PART, Coins.XMR, amt_2, rate_2, amt_2, SwapTypes.XMR_SWAP)
|
||||
|
||||
|
@ -620,6 +625,14 @@ class Test(unittest.TestCase):
|
|||
wait_for_none_active(delay_event, 1800)
|
||||
wait_for_none_active(delay_event, 1801)
|
||||
|
||||
js_w0_after = json.loads(urlopen('http://127.0.0.1:1800/json/wallets').read())
|
||||
js_w1_after = json.loads(urlopen('http://127.0.0.1:1801/json/wallets').read())
|
||||
logging.info('[rm] js_w0_after {}'.format(json.dumps(js_w0_after, indent=4)))
|
||||
logging.info('[rm] js_w1_after {}'.format(json.dumps(js_w1_after, indent=4)))
|
||||
|
||||
assert(make_int(js_w1_after['2']['balance'], scale=8, r=1) - (make_int(js_w1_before['2']['balance'], scale=8, r=1) + amt_1) < 1000)
|
||||
|
||||
|
||||
def test_07_revoke_offer(self):
|
||||
logging.info('---------- Test offer revocaction')
|
||||
swap_clients = self.swap_clients
|
||||
|
|
Loading…
Reference in a new issue