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.
69 lines
1.7 KiB
69 lines
1.7 KiB
#!/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()
|
|
|