mirror of
https://github.com/minio/minio.git
synced 2025-01-26 22:23:15 -05:00
TestInitListeners: Use port 0 pick available port (#4508)
This commit is contained in:
parent
2c56788f8d
commit
8a6b0cc0cd
@ -109,20 +109,18 @@ func dial(addr string) error {
|
|||||||
|
|
||||||
// Tests initializing listeners.
|
// Tests initializing listeners.
|
||||||
func TestInitListeners(t *testing.T) {
|
func TestInitListeners(t *testing.T) {
|
||||||
portTest1 := getFreePort()
|
|
||||||
portTest2 := getFreePort()
|
|
||||||
testCases := []struct {
|
testCases := []struct {
|
||||||
serverAddr string
|
serverAddr string
|
||||||
shouldPass bool
|
shouldPass bool
|
||||||
}{
|
}{
|
||||||
// Test 1 with ip and port.
|
// Test 1 with ip and port.
|
||||||
{
|
{
|
||||||
serverAddr: "127.0.0.1:" + portTest1,
|
serverAddr: net.JoinHostPort("127.0.0.1", "0"),
|
||||||
shouldPass: true,
|
shouldPass: true,
|
||||||
},
|
},
|
||||||
// Test 2 only port.
|
// Test 2 only port.
|
||||||
{
|
{
|
||||||
serverAddr: ":" + portTest2,
|
serverAddr: net.JoinHostPort("", "0"),
|
||||||
shouldPass: true,
|
shouldPass: true,
|
||||||
},
|
},
|
||||||
// Test 3 with no port error.
|
// Test 3 with no port error.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user