From 0ac982aafad55c246dd65a2eaafc3cb2a1f00027 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Thu, 6 Jul 2023 01:03:30 +0200 Subject: test: try mitigating port clashes Also, I don't think calling random.seed is necessary. --- test/py/lib/net.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 test/py/lib/net.py (limited to 'test/py/lib/net.py') diff --git a/test/py/lib/net.py b/test/py/lib/net.py new file mode 100644 index 0000000..816dd99 --- /dev/null +++ b/test/py/lib/net.py @@ -0,0 +1,21 @@ +# Copyright (c) 2023 Egor Tensin +# This file is part of the "cimple" project. +# For details, see https://github.com/egor-tensin/cimple. +# Distributed under the MIT License. + +from contextlib import closing +import random +import socket + + +def port_is_open(host, port): + with closing(socket.socket(socket.AF_INET, socket.SOCK_STREAM)) as sock: + return sock.connect_ex((host, port)) == 0 + + +def random_unused_port(): + while True: + port = random.randint(20000, 40000) + if port_is_open('127.0.0.1', port): + continue + return port -- cgit v1.2.3