From 45e67b2695852c94d5da3f9b82f2b567cbbd2cc3 Mon Sep 17 00:00:00 2001 From: brunoerg Date: Sat, 26 Mar 2022 21:50:34 -0300 Subject: [PATCH] test: invalid -i2psam will raise an init error --- test/functional/feature_proxy.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/functional/feature_proxy.py b/test/functional/feature_proxy.py index 14308b3fd15bd..19be110f17e1e 100755 --- a/test/functional/feature_proxy.py +++ b/test/functional/feature_proxy.py @@ -33,6 +33,7 @@ - Test passing invalid -proxy - Test passing invalid -onion +- Test passing invalid -i2psam - Test passing -onlynet=onion without -proxy or -onion - Test passing -onlynet=onion with -onion=0 and with -noonion """ @@ -321,6 +322,11 @@ def networks_dict(d): msg = "Error: Invalid -onion address or hostname: 'xyz:abc'" self.nodes[1].assert_start_raises_init_error(expected_msg=msg) + self.log.info("Test passing invalid -i2psam raises expected init error") + self.nodes[1].extra_args = ["-i2psam=def:xyz"] + msg = "Error: Invalid -i2psam address or hostname: 'def:xyz'" + self.nodes[1].assert_start_raises_init_error(expected_msg=msg) + msg = ( "Error: Outbound connections restricted to Tor (-onlynet=onion) but " "the proxy for reaching the Tor network is not provided (no -proxy= "