Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test if port available before using it for testing. #166

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 24 additions & 6 deletions internal/test/ports.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,38 @@

package test

import "sync"
import (
"fmt"
"net"
"sync"
)

var portMutex sync.Mutex
var nodePortBase uint32 = 32000
var peerPortBase uint32 = 33000

const PortLimit = 1 << 16

func testPort(port uint32) bool {
l, err := net.Listen("tcp", fmt.Sprintf(":%d", port))
_ = l.Close()
return err == nil
}

func GetPorts() (nodePort, peerPort uint32) {
portMutex.Lock()
defer portMutex.Unlock()

nodePort = nodePortBase
peerPort = peerPortBase
nodePortBase++
peerPortBase++
for nodePortBase < PortLimit && peerPortBase < PortLimit {
nodePort = nodePortBase
peerPort = peerPortBase
nodePortBase++
peerPortBase++

if testPort(nodePort) && testPort(peerPort) {
return
}
}

return
panic("Could not find available port for testing")
}