From 04214eaf89001fe35eb29137228cbefaf30f43d5 Mon Sep 17 00:00:00 2001 From: mangano-ito <47137677+mangano-ito@users.noreply.github.com> Date: Tue, 18 Jan 2022 16:56:48 +0900 Subject: [PATCH] test hosts with no port specified --- tests/client/test_options.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/client/test_options.py b/tests/client/test_options.py index 6f86a8a..1b5f4a7 100644 --- a/tests/client/test_options.py +++ b/tests/client/test_options.py @@ -105,3 +105,11 @@ def test_parse_subnetport_ip6_with_mask_and_port(): def test_convert_arg_line_to_args_skips_comments(): parser = sshuttle.options.MyArgumentParser() assert parser.convert_arg_line_to_args("# whatever something") == [] + + +def test_parse_subnetport_host(): + assert set(sshuttle.options.parse_subnetport('example.com')) \ + == set([ + (socket.AF_INET6, '2606:2800:220:1:248:1893:25c8:1946', 128, 0, 0), + (socket.AF_INET, '93.184.216.34', 32, 0, 0), + ])