forked from tw-bc-group/fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ports.go
52 lines (43 loc) · 1.15 KB
/
ports.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*
Copyright IBM Corp All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package integration
import (
"fmt"
"os"
"github.com/onsi/ginkgo"
)
// TestPortRange represents a port range
type TestPortRange int
const (
basePort = 20000
portsPerNode = 50
portsPerSuite = 10 * portsPerNode
)
const (
DiscoveryBasePort TestPortRange = basePort + portsPerSuite*iota
E2EBasePort
GossipBasePort
IdemixBasePort
LedgerPort
LifecyclePort
MSPPort
NWOBasePort
PluggableBasePort
PrivateDataBasePort
RaftBasePort
SBEBasePort
)
// On linux, the default ephemeral port range is 32768-60999 and can be
// allocated by the system for the client side of TCP connections or when
// programs explicitly request one. Given linux is our default CI system,
// we want to try avoid ports in that range.
func (t TestPortRange) StartPortForNode() int {
const startEphemeral, endEphemeral = 32768, 60999
port := int(t) + portsPerNode*(ginkgo.GinkgoParallelNode()-1)
if port >= startEphemeral-portsPerNode && port <= endEphemeral-portsPerNode {
fmt.Fprintf(os.Stderr, "WARNING: port %d is part of the default ephemeral port range on linux", port)
}
return port
}