summaryrefslogtreecommitdiff
path: root/randport
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2017-08-04 15:21:31 +0300
committerLars Wirzenius <liw@liw.fi>2017-08-04 15:21:31 +0300
commitc8dc380943f4f1a2533435c31a815ffed5af728d (patch)
tree24fcafc9987a19b4a09dc2b4af553a0fc99a1a96 /randport
parent3618aa15de7fdfe44c575a4f92b68f036363c556 (diff)
downloadqvisqve-c8dc380943f4f1a2533435c31a815ffed5af728d.tar.gz
Add: use random port to run qvarn backend during tests
This is not 100% reliable, due to a race condition: it's possible for the test code to pick a free port, and someone else to immediately reserve the port before Qvarn does. But it's too unlikely to be a real problem, for tests.
Diffstat (limited to 'randport')
-rwxr-xr-xrandport28
1 files changed, 28 insertions, 0 deletions
diff --git a/randport b/randport
new file mode 100755
index 0000000..d523401
--- /dev/null
+++ b/randport
@@ -0,0 +1,28 @@
+#!/usr/bin/python3
+#
+# Copyright (C) 2017 Lars Wirzenius
+#
+# Pick a random port that is free to be listened on. For testing.
+
+
+import errno
+import random
+import socket
+import sys
+
+
+MAX = 1000
+for i in range(MAX):
+ port = random.randint(1025, 2**15-1)
+ s = socket.socket()
+ try:
+ s.bind(('0.0.0.0', port))
+ except OSError as e:
+ if e.errno == errno.EADDRINUSE:
+ continue
+ raise
+ break
+else:
+ sys.stderr.write("Can't find a free port\n")
+ sys.exit(1)
+sys.stdout.write('{}\n'.format(port))