mirror of
https://github.com/basicswap/basicswap.git
synced 2025-11-07 11:18:10 +01:00
226 lines
7.0 KiB
Python
226 lines
7.0 KiB
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright (c) 2022-2024 tecnovert
|
|
# Copyright (c) 2024 The Basicswap developers
|
|
# Distributed under the MIT software license, see the accompanying
|
|
# file LICENSE or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
import json
|
|
import time
|
|
|
|
from selenium.webdriver.common.by import By
|
|
from selenium.webdriver.support.wait import WebDriverWait
|
|
from selenium.webdriver.support.select import Select
|
|
from selenium.webdriver.support import expected_conditions as EC
|
|
|
|
from util import (
|
|
BSX_0_PORT,
|
|
get_driver,
|
|
)
|
|
from basicswap.explorers import default_coingecko_api_key
|
|
|
|
|
|
def click_option(el, option_text):
|
|
for option in el.find_elements(By.TAG_NAME, "option"):
|
|
if option.text == option_text:
|
|
option.click()
|
|
break
|
|
|
|
|
|
def test_settings(driver):
|
|
base_url = f"http://localhost:{BSX_0_PORT}"
|
|
|
|
url = base_url + "/settings"
|
|
driver.get(url)
|
|
|
|
wait = WebDriverWait(driver, 10)
|
|
general_tab = wait.until(EC.element_to_be_clickable((By.ID, "general-tab")))
|
|
general_tab.click()
|
|
|
|
btn_apply_general = wait.until(
|
|
EC.element_to_be_clickable((By.NAME, "apply_general"))
|
|
)
|
|
|
|
el = driver.find_element(By.NAME, "debugmode")
|
|
selected_option = Select(el).first_selected_option
|
|
print(f"Debug mode current text: '{selected_option.text}'")
|
|
|
|
if selected_option.text == "True":
|
|
click_option(el, "False")
|
|
expected_debug_state = False
|
|
else:
|
|
click_option(el, "True")
|
|
expected_debug_state = True
|
|
|
|
el = driver.find_element(By.NAME, "debugui")
|
|
selected_option = Select(el).first_selected_option
|
|
print(f"Debug UI current text: '{selected_option.text}'")
|
|
|
|
if selected_option.text == "False":
|
|
click_option(el, "True")
|
|
expected_debug_ui_state = True
|
|
else:
|
|
click_option(el, "False")
|
|
expected_debug_ui_state = False
|
|
|
|
btn_apply_general.click()
|
|
time.sleep(1)
|
|
|
|
settings_path_0 = "/tmp/test_persistent/client0/basicswap.json"
|
|
with open(settings_path_0) as fs:
|
|
settings = json.load(fs)
|
|
|
|
assert settings["debug"] is expected_debug_state
|
|
assert settings["debug_ui"] is expected_debug_ui_state
|
|
|
|
try:
|
|
el = driver.find_element(By.NAME, "showchart")
|
|
selected_option = Select(el).first_selected_option
|
|
print(f"Show chart current text: '{selected_option.text}'")
|
|
|
|
if selected_option.text in ["True", "False"]:
|
|
if selected_option.text == "True":
|
|
click_option(el, "False")
|
|
expected_chart_state = False
|
|
else:
|
|
click_option(el, "True")
|
|
expected_chart_state = True
|
|
|
|
difficult_text = "`~!@#$%^&*()-_=+[{}]\\|;:'\",<>./? "
|
|
el = driver.find_element(By.NAME, "chartapikey")
|
|
el.clear()
|
|
el.send_keys(difficult_text)
|
|
|
|
btn_apply_chart = wait.until(
|
|
EC.element_to_be_clickable((By.NAME, "apply_chart"))
|
|
)
|
|
btn_apply_chart.click()
|
|
time.sleep(1)
|
|
|
|
with open(settings_path_0) as fs:
|
|
settings = json.load(fs)
|
|
|
|
assert settings["show_chart"] is expected_chart_state
|
|
coingecko_api_key = bytes.fromhex(
|
|
settings.get("coingecko_api_key_enc", "")
|
|
).decode("utf-8")
|
|
assert coingecko_api_key == difficult_text
|
|
|
|
hex_text = default_coingecko_api_key
|
|
el = driver.find_element(By.NAME, "coingeckoapikey")
|
|
el.clear()
|
|
el.send_keys(hex_text)
|
|
btn_apply_chart = wait.until(
|
|
EC.element_to_be_clickable((By.NAME, "apply_chart"))
|
|
)
|
|
btn_apply_chart.click()
|
|
time.sleep(1)
|
|
|
|
el = driver.find_element(By.NAME, "coingeckoapikey")
|
|
assert el.get_property("value") == hex_text
|
|
|
|
with open(settings_path_0) as fs:
|
|
settings = json.load(fs)
|
|
|
|
assert settings.get("coingecko_api_key") == hex_text
|
|
else:
|
|
print("Chart settings not accessible, skipping chart tests")
|
|
expected_chart_state = None
|
|
except Exception as e:
|
|
print(f"Chart settings not accessible: {e}, skipping chart tests")
|
|
expected_chart_state = None
|
|
|
|
general_tab = wait.until(EC.element_to_be_clickable((By.ID, "general-tab")))
|
|
general_tab.click()
|
|
|
|
btn_apply_general = wait.until(
|
|
EC.element_to_be_clickable((By.NAME, "apply_general"))
|
|
)
|
|
|
|
if expected_debug_state:
|
|
click_option(driver.find_element(By.NAME, "debugmode"), "False")
|
|
else:
|
|
click_option(driver.find_element(By.NAME, "debugmode"), "True")
|
|
|
|
if expected_debug_ui_state:
|
|
click_option(driver.find_element(By.NAME, "debugui"), "False")
|
|
else:
|
|
click_option(driver.find_element(By.NAME, "debugui"), "True")
|
|
|
|
btn_apply_general.click()
|
|
|
|
if expected_chart_state is not None:
|
|
btn_apply_chart = wait.until(
|
|
EC.element_to_be_clickable((By.NAME, "apply_chart"))
|
|
)
|
|
|
|
if expected_chart_state:
|
|
click_option(driver.find_element(By.NAME, "showchart"), "False")
|
|
else:
|
|
click_option(driver.find_element(By.NAME, "showchart"), "True")
|
|
|
|
btn_apply_chart.click()
|
|
time.sleep(1)
|
|
|
|
# Apply XMR settings with blank nodes list
|
|
try:
|
|
driver.find_element(By.ID, "coins-tab").click()
|
|
time.sleep(1)
|
|
|
|
btn_apply_monero = wait.until(
|
|
EC.element_to_be_clickable((By.NAME, "apply_monero"))
|
|
)
|
|
el = driver.find_element(By.NAME, "remotedaemonurls_monero")
|
|
el.clear()
|
|
btn_apply_monero.click()
|
|
time.sleep(1)
|
|
|
|
with open(settings_path_0) as fs:
|
|
settings = json.load(fs)
|
|
assert len(settings["chainclients"]["monero"]["remote_daemon_urls"]) == 0
|
|
|
|
btn_apply_monero = wait.until(
|
|
EC.element_to_be_clickable((By.NAME, "apply_monero"))
|
|
)
|
|
el = driver.find_element(By.NAME, "remotedaemonurls_monero")
|
|
el.clear()
|
|
el.send_keys("node.xmr.to:18081\nnode1.xmr.to:18082")
|
|
btn_apply_monero.click()
|
|
time.sleep(1)
|
|
|
|
with open(settings_path_0) as fs:
|
|
settings = json.load(fs)
|
|
remotedaemonurls = settings["chainclients"]["monero"]["remote_daemon_urls"]
|
|
assert len(remotedaemonurls) == 2
|
|
|
|
btn_apply_monero = wait.until(
|
|
EC.element_to_be_clickable((By.NAME, "apply_monero"))
|
|
)
|
|
el = driver.find_element(By.NAME, "remotedaemonurls_monero")
|
|
el.clear()
|
|
btn_apply_monero.click()
|
|
time.sleep(1)
|
|
|
|
with open(settings_path_0) as fs:
|
|
settings = json.load(fs)
|
|
assert len(settings["chainclients"]["monero"]["remote_daemon_urls"]) == 0
|
|
|
|
print("Monero settings test completed successfully")
|
|
except Exception as e:
|
|
print(f"Monero settings not accessible: {e}, skipping Monero tests")
|
|
|
|
print("Test Passed!")
|
|
|
|
|
|
def run_tests():
|
|
driver = get_driver()
|
|
try:
|
|
test_settings(driver)
|
|
finally:
|
|
driver.close()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
run_tests()
|