Skip to content
Snippets Groups Projects
Unverified Commit c20e9b11 authored by Jeff Evans's avatar Jeff Evans Committed by GitHub
Browse files

Fix flakiness in test-ssh-tunnel-reconnection-h2 (#15088)

Add test utility fn to find a free port, and call that from test-ssh-tunnel-reconnection-h2 instead of picking a random one
parent 04de9f63
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,8 @@
[toucan.db :as db]
[toucan.models :as t.models]
[toucan.util.test :as tt])
(:import java.util.concurrent.TimeoutException
(:import java.net.ServerSocket
java.util.concurrent.TimeoutException
java.util.Locale
[org.quartz CronTrigger JobDetail JobKey Scheduler Trigger]))
......@@ -659,7 +660,7 @@
`(do-with-non-admin-groups-no-collection-perms
(assoc collection/root-collection
:namespace (name ~collection-namespace))
(fn [] ~@body) ))
(fn [] ~@body)))
(defn doall-recursive
"Like `doall`, but recursively calls doall on map values and nested sequences, giving you a fully non-lazy object.
......@@ -786,3 +787,10 @@
cols)
(fn []
~@body)))
(defn find-free-port
"Finds and returns an available port number on the current host. Does so by briefly creating a ServerSocket, which
is closed when returning."
[]
(with-open [socket (ServerSocket. 0)]
(.getLocalPort socket)))
......@@ -12,7 +12,8 @@
[metabase.util.ssh :as ssh]
[metabase.sync :as sync]
[metabase.test :as mt]
[metabase.test.data.interface :as tx])
[metabase.test.data.interface :as tx]
[metabase.test.util :as tu])
(:import [java.io BufferedReader InputStreamReader PrintWriter]
[java.net InetSocketAddress ServerSocket Socket]
org.apache.sshd.server.forward.AcceptAllForwardingFilter
......@@ -247,7 +248,7 @@
native queries against that table."
(mt/with-driver :h2
(testing "ssh tunnel is reestablished if it becomes closed, so subsequent queries still succeed (H2 version)"
(let [h2-port (+ 49152 (rand-int (- 65535 49152))) ; https://stackoverflow.com/a/2675399
(let [h2-port (tu/find-free-port)
server (init-h2-tcp-server h2-port)
uri (format "tcp://localhost:%d/./test_resources/ssh/tiny-db;USER=GUEST;PASSWORD=guest" h2-port)
h2-db {:port h2-port
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment