2021-03-11 13:49:09 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
import copy
|
|
|
|
from time import sleep
|
|
|
|
|
2021-03-24 12:52:01 +00:00
|
|
|
from flaky import flaky
|
|
|
|
|
|
|
|
from util import start_cloudflared, wait_tunnel_ready, check_tunnel_not_connected
|
2021-03-11 13:49:09 +00:00
|
|
|
|
|
|
|
|
2021-03-16 13:55:41 +00:00
|
|
|
@flaky(max_runs=3, min_passes=1)
|
2021-03-11 13:49:09 +00:00
|
|
|
class TestReconnect():
|
|
|
|
default_ha_conns = 4
|
|
|
|
default_reconnect_secs = 5
|
|
|
|
extra_config = {
|
|
|
|
"stdin-control": True,
|
|
|
|
}
|
|
|
|
|
|
|
|
def test_named_reconnect(self, tmp_path, component_tests_config):
|
|
|
|
config = component_tests_config(self.extra_config)
|
2021-03-24 12:52:01 +00:00
|
|
|
with start_cloudflared(tmp_path, config, new_process=True, allow_input=True, capture_output=False) as cloudflared:
|
2021-03-11 13:49:09 +00:00
|
|
|
# Repeat the test multiple times because some issues only occur after multiple reconnects
|
|
|
|
self.assert_reconnect(config, cloudflared, 5)
|
|
|
|
|
|
|
|
def test_classic_reconnect(self, tmp_path, component_tests_config):
|
|
|
|
extra_config = copy.copy(self.extra_config)
|
|
|
|
extra_config["hello-world"] = True
|
|
|
|
config = component_tests_config(
|
|
|
|
additional_config=extra_config, named_tunnel=False)
|
2021-03-24 12:52:01 +00:00
|
|
|
with start_cloudflared(tmp_path, config, cfd_args=[], new_process=True, allow_input=True, capture_output=False) as cloudflared:
|
2021-03-11 13:49:09 +00:00
|
|
|
self.assert_reconnect(config, cloudflared, 1)
|
|
|
|
|
|
|
|
def send_reconnect(self, cloudflared, secs):
|
|
|
|
# Although it is recommended to use the Popen.communicate method, we cannot
|
|
|
|
# use it because it blocks on reading stdout and stderr until EOF is reached
|
|
|
|
cloudflared.stdin.write(f"reconnect {secs}s\n".encode())
|
|
|
|
cloudflared.stdin.flush()
|
|
|
|
|
|
|
|
def assert_reconnect(self, config, cloudflared, repeat):
|
2021-03-11 20:43:31 +00:00
|
|
|
wait_tunnel_ready(tunnel_url=config.get_url())
|
2021-03-11 13:49:09 +00:00
|
|
|
for _ in range(repeat):
|
|
|
|
for i in range(self.default_ha_conns):
|
|
|
|
self.send_reconnect(cloudflared, self.default_reconnect_secs)
|
|
|
|
expect_connections = self.default_ha_conns-i-1
|
|
|
|
if expect_connections > 0:
|
2021-03-11 20:43:31 +00:00
|
|
|
# Don't check if tunnel returns 200 here because there is a race condition between wait_tunnel_ready
|
|
|
|
# retrying to get 200 response and reconnecting
|
2021-03-12 13:37:53 +00:00
|
|
|
wait_tunnel_ready(
|
|
|
|
require_min_connections=expect_connections)
|
2021-03-11 13:49:09 +00:00
|
|
|
else:
|
2021-03-11 20:43:31 +00:00
|
|
|
check_tunnel_not_connected()
|
2021-03-11 13:49:09 +00:00
|
|
|
|
|
|
|
sleep(self.default_reconnect_secs + 10)
|
2021-03-12 13:37:53 +00:00
|
|
|
wait_tunnel_ready(tunnel_url=config.get_url(),
|
|
|
|
require_min_connections=self.default_ha_conns)
|