mirror of
https://github.com/basicswap/basicswap.git
synced 2025-11-06 18:58:10 +01:00
tests: Fix test_xmr_persistent
This commit is contained in:
0
tests/basicswap/selenium/__init__.py
Normal file
0
tests/basicswap/selenium/__init__.py
Normal file
69
tests/basicswap/selenium/test_swap_direction.py
Normal file
69
tests/basicswap/selenium/test_swap_direction.py
Normal file
@@ -0,0 +1,69 @@
|
||||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright (c) 2022 tecnovert
|
||||
# Distributed under the MIT software license, see the accompanying
|
||||
# file LICENSE or http://www.opensource.org/licenses/mit-license.php.
|
||||
|
||||
import time
|
||||
|
||||
from tests.basicswap.util import (
|
||||
read_json_api,
|
||||
)
|
||||
|
||||
from selenium import webdriver
|
||||
from selenium.webdriver.chrome.service import Service
|
||||
|
||||
|
||||
def test_html(driver):
|
||||
node_1_port = 12701
|
||||
node_2_port = 12702
|
||||
node1_url = f'http://localhost:{node_1_port}'
|
||||
node2_url = f'http://localhost:{node_2_port}'
|
||||
|
||||
offer_data = {
|
||||
'addr_from': -1,
|
||||
'coin_from': 'PART',
|
||||
'coin_to': 'XMR',
|
||||
'amt_from': 1,
|
||||
'amt_to': 2,
|
||||
'lockhrs': 24}
|
||||
rv = read_json_api(node_1_port, 'offers/new', offer_data)
|
||||
offer0_id = rv['offer_id']
|
||||
|
||||
offer_data = {
|
||||
'addr_from': -1,
|
||||
'coin_from': 'PART',
|
||||
'coin_to': 'BTC',
|
||||
'amt_from': 3,
|
||||
'amt_to': 4,
|
||||
'lockhrs': 24}
|
||||
rv = read_json_api(node_1_port, 'offers/new', offer_data)
|
||||
offer0_id = rv['offer_id']
|
||||
|
||||
# Wait for offer to propagate
|
||||
offers_api_1 = read_json_api(node_1_port, 'offers')
|
||||
print('offers_api_1', offers_api_1)
|
||||
|
||||
offers_api_2 = read_json_api(node_2_port, 'offers')
|
||||
while len(offers_api_2) < 1:
|
||||
rv = read_json_api(node_2_port, 'offers')
|
||||
print('offers_api_2', offers_api_2)
|
||||
|
||||
driver.get(f'{node1_url}/offers')
|
||||
time.sleep(1)
|
||||
|
||||
driver.get(f'{node2_url}/offers')
|
||||
time.sleep(300)
|
||||
|
||||
raise ValueError('TODO')
|
||||
|
||||
print('Done.')
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
driver = webdriver.Chrome(service=Service('/opt/chromedriver96'))
|
||||
try:
|
||||
test_html(driver)
|
||||
finally:
|
||||
driver.close()
|
||||
Reference in New Issue
Block a user