1
1
using Test
2
2
using DistributedNext
3
- import Sockets: getipaddr
3
+ import Sockets: getipaddr, listenany
4
4
5
5
import LibSSH as ssh
6
6
import LibSSH. Demo: DemoServer
@@ -26,8 +26,11 @@ function test_n_remove_pids(new_pids)
26
26
end
27
27
28
28
@testset " SSHManager" begin
29
- DemoServer (2222 ; auth_methods= [ssh. AuthMethod_None], allow_auth_none= true , verbose= false , timeout= 3600 ) do
30
- sshflags = ` -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o LogLevel=ERROR -p 2222 `
29
+ ssh_port, server = listenany (2222 )
30
+ close (server)
31
+
32
+ DemoServer (Int (ssh_port); auth_methods= [ssh. AuthMethod_None], allow_auth_none= true , verbose= false , timeout= 3600 ) do
33
+ sshflags = ` -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o LogLevel=ERROR -p $(ssh_port) `
31
34
# Issue #9951
32
35
hosts= []
33
36
localhost_aliases = [" localhost" , string (getipaddr ()), " 127.0.0.1" ]
66
69
print (" \n ssh addprocs with tunnel (SSH multiplexing)\n " )
67
70
new_pids = addprocs_with_testenv ([(" localhost" , num_workers)]; tunnel= true , multiplex= true , sshflags= sshflags)
68
71
@test length (new_pids) == num_workers
69
- controlpath = joinpath (ssh_dir, " julia-$(ENV [" USER" ]) @localhost:2222 " )
72
+ controlpath = joinpath (ssh_dir, " julia-$(ENV [" USER" ]) @localhost:$(ssh_port) " )
70
73
@test issocket (controlpath)
71
74
test_n_remove_pids (new_pids)
72
75
@test :ok == timedwait (()-> ! issocket (controlpath), 10.0 ; pollint= 0.5 )
82
85
h1 = " localhost"
83
86
user = ENV [" USER" ]
84
87
h2 = " $user @$h1 "
85
- h3 = " $h2 :2222 "
88
+ h3 = " $h2 :$(ssh_port) "
86
89
h4 = " $h3 $(string (getipaddr ())) "
87
- h5 = " $h4 :9300"
90
+ (bind_port, server) = listenany (9300 )
91
+ close (server)
92
+ h5 = " $h4 :$(bind_port) "
88
93
89
94
new_pids = addprocs_with_testenv ([h1, h2, h3, h4, h5]; sshflags= sshflags)
90
95
@test length (new_pids) == 5
0 commit comments