Merge pull request #3384 from nspcc-dev/TestWSClientsLimit
rpcsrv: fix TestWSClientsLimit
This commit is contained in:
commit
89ef26164c
1 changed files with 27 additions and 14 deletions
|
@ -4,6 +4,7 @@ import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"strings"
|
"strings"
|
||||||
|
"sync"
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
@ -601,28 +602,40 @@ func TestWSClientsLimit(t *testing.T) {
|
||||||
cfg.ApplicationConfiguration.RPC.MaxWebSocketClients = limit
|
cfg.ApplicationConfiguration.RPC.MaxWebSocketClients = limit
|
||||||
})
|
})
|
||||||
|
|
||||||
dialer := websocket.Dialer{HandshakeTimeout: 5 * time.Second}
|
dialer := websocket.Dialer{HandshakeTimeout: 10 * time.Second}
|
||||||
url := "ws" + strings.TrimPrefix(httpSrv.URL, "http") + "/ws"
|
url := "ws" + strings.TrimPrefix(httpSrv.URL, "http") + "/ws"
|
||||||
wss := make([]*websocket.Conn, effectiveClients)
|
wss := make([]*websocket.Conn, effectiveClients)
|
||||||
|
var wg sync.WaitGroup
|
||||||
|
|
||||||
for i := 0; i < len(wss)+1; i++ {
|
// Dial effectiveClients connections in parallel
|
||||||
ws, r, err := dialer.Dial(url, nil)
|
for i := 0; i < effectiveClients; i++ {
|
||||||
if r != nil && r.Body != nil {
|
wg.Add(1)
|
||||||
defer r.Body.Close()
|
j := i
|
||||||
}
|
go func() {
|
||||||
if i < effectiveClients {
|
defer wg.Done()
|
||||||
|
ws, r, err := dialer.Dial(url, nil)
|
||||||
|
if r != nil {
|
||||||
|
defer r.Body.Close()
|
||||||
|
}
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
wss[i] = ws
|
wss[j] = ws
|
||||||
// Check that it's completely ready.
|
|
||||||
doSomeWSRequest(t, ws)
|
doSomeWSRequest(t, ws)
|
||||||
} else {
|
}()
|
||||||
require.Error(t, err)
|
}
|
||||||
}
|
|
||||||
|
wg.Wait()
|
||||||
|
|
||||||
|
// Attempt one more connection, which should fail
|
||||||
|
_, r, err := dialer.Dial(url, nil)
|
||||||
|
require.Error(t, err, "The connection beyond the limit should fail")
|
||||||
|
if r != nil {
|
||||||
|
r.Body.Close()
|
||||||
}
|
}
|
||||||
// Check connections are still alive (it actually is necessary to add
|
// Check connections are still alive (it actually is necessary to add
|
||||||
// some use of wss to keep connections alive).
|
// some use of wss to keep connections alive).
|
||||||
for i := 0; i < len(wss); i++ {
|
for _, ws := range wss {
|
||||||
doSomeWSRequest(t, wss[i])
|
doSomeWSRequest(t, ws)
|
||||||
|
ws.Close()
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue