2022-03-04 09:26:28 +00:00
|
|
|
package params
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/prysmaticlabs/prysm/testing/assert"
|
|
|
|
"github.com/prysmaticlabs/prysm/testing/require"
|
|
|
|
)
|
|
|
|
|
|
|
|
func Test_port(t *testing.T) {
|
|
|
|
var existingRegistrations []int
|
|
|
|
|
|
|
|
p, err := port(2000, 3, 0, &existingRegistrations)
|
|
|
|
require.NoError(t, err)
|
|
|
|
assert.Equal(t, 2000, p)
|
|
|
|
p, err = port(2000, 3, 1, &existingRegistrations)
|
|
|
|
require.NoError(t, err)
|
|
|
|
assert.Equal(t, 2016, p)
|
|
|
|
p, err = port(2000, 3, 2, &existingRegistrations)
|
|
|
|
require.NoError(t, err)
|
|
|
|
assert.Equal(t, 2032, p)
|
|
|
|
_, err = port(2000, 3, 2, &existingRegistrations)
|
|
|
|
assert.NotNil(t, err)
|
|
|
|
// We pass the last unavailable port
|
|
|
|
_, err = port(2047, 3, 0, &existingRegistrations)
|
|
|
|
assert.NotNil(t, err)
|
|
|
|
}
|
2022-03-09 12:52:50 +00:00
|
|
|
|
|
|
|
func TestStandardPorts(t *testing.T) {
|
|
|
|
var existingRegistrations []int
|
|
|
|
testPorts := &ports{}
|
|
|
|
assert.NoError(t, initializeStandardPorts(2, 0, testPorts, &existingRegistrations))
|
2022-04-05 14:02:46 +00:00
|
|
|
assert.Equal(t, 15, len(existingRegistrations))
|
2022-03-09 12:52:50 +00:00
|
|
|
assert.NotEqual(t, 0, testPorts.PrysmBeaconNodeGatewayPort)
|
|
|
|
assert.NotEqual(t, 0, testPorts.PrysmBeaconNodeTCPPort)
|
|
|
|
assert.NotEqual(t, 0, testPorts.JaegerTracingPort)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestMulticlientPorts(t *testing.T) {
|
|
|
|
var existingRegistrations []int
|
|
|
|
testPorts := &ports{}
|
|
|
|
assert.NoError(t, initializeMulticlientPorts(2, 0, testPorts, &existingRegistrations))
|
|
|
|
assert.Equal(t, 3, len(existingRegistrations))
|
|
|
|
assert.NotEqual(t, 0, testPorts.LighthouseBeaconNodeHTTPPort)
|
|
|
|
assert.NotEqual(t, 0, testPorts.LighthouseBeaconNodeMetricsPort)
|
|
|
|
assert.NotEqual(t, 0, testPorts.LighthouseBeaconNodeP2PPort)
|
|
|
|
}
|