1 #!/usr/bin/env python3
2 # Copyright (c) 2021-2021 The Limenka developers
3 # Distributed under the MIT software license, see the accompanying
4 # file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 """
6 Test ports handling for I2P hosts
7 """
8 9 10 from test_framework.test_framework import LimenkaTestFramework
11 12 PROXY = "127.0.0.1:60000"
13 14 class I2PPorts(LimenkaTestFramework):
15 def set_test_params(self):
16 self.num_nodes = 1
17 # The test assumes that an I2P SAM proxy is not listening here.
18 self.extra_args = [[f"-i2psam={PROXY}"]]
19 20 def run_test(self):
21 node = self.nodes[0]
22 23 self.log.info("Ensure we don't try to connect if port!=0")
24 addr = "zsxwyo6qcn3chqzwxnseusqgsnuw3maqnztkiypyfxtya4snkoka.b32.i2p:8333"
25 with node.assert_debug_log(expected_msgs=[f"Error connecting to {addr}, connection refused due to arbitrary port 8333"]):
26 node.addnode(node=addr, command="onetry")
27 28 self.log.info("Ensure we try to connect if port=0 and get an error due to missing I2P proxy")
29 addr = "h3r6bkn46qxftwja53pxiykntegfyfjqtnzbm6iv6r5mungmqgmq.b32.i2p:0"
30 with node.assert_debug_log(expected_msgs=[f"Error connecting to {addr}: Cannot connect to {PROXY}"]):
31 node.addnode(node=addr, command="onetry")
32 33 34 if __name__ == '__main__':
35 I2PPorts(__file__).main()
36