From 6365412312216391f58e2d4e0523ce6f4722179f Mon Sep 17 00:00:00 2001 From: nixbitcoin Date: Mon, 6 Jul 2020 12:33:24 +0000 Subject: [PATCH] test-script: remove nginx tls proxy test --- test/scenarios/default.py | 3 --- test/scenarios/withnetns.py | 3 --- 2 files changed, 6 deletions(-) diff --git a/test/scenarios/default.py b/test/scenarios/default.py index 1e5ff4d..19375a1 100644 --- a/test/scenarios/default.py +++ b/test/scenarios/default.py @@ -13,9 +13,6 @@ machine.wait_for_open_port(4224) # prometeus metrics provider # Check RPC connection to bitcoind machine.wait_until_succeeds(log_has_string("electrs", "NetworkInfo")) assert_running("nginx") -# SSL stratum server via nginx. Only check for open port, no content is served here -# as electrs isn't ready. -machine.wait_for_open_port(50003) # Stop electrs from spamming the test log with 'wait for bitcoind sync' messages succeed("systemctl stop electrs") diff --git a/test/scenarios/withnetns.py b/test/scenarios/withnetns.py index b5a6f32..99d8d73 100644 --- a/test/scenarios/withnetns.py +++ b/test/scenarios/withnetns.py @@ -27,9 +27,6 @@ machine.wait_until_succeeds( # Check RPC connection to bitcoind machine.wait_until_succeeds(log_has_string("electrs", "NetworkInfo")) assert_running("nginx") -# SSL stratum server via nginx. Only check for open port, no content is served here -# as electrs isn't ready. -machine.wait_until_succeeds("ip netns exec nb-nginx nc -z localhost 50003") # Stop electrs from spamming the test log with 'wait for bitcoind sync' messages succeed("systemctl stop electrs")