2015-04-08 02:20:04 -04:00
|
|
|
package portallocator
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net"
|
|
|
|
"testing"
|
2015-05-12 19:39:30 -04:00
|
|
|
|
2015-09-07 13:33:28 -04:00
|
|
|
_ "github.com/docker/libnetwork/testutils"
|
2015-04-08 02:20:04 -04:00
|
|
|
)
|
|
|
|
|
2015-04-16 18:16:11 -04:00
|
|
|
func resetPortAllocator() {
|
|
|
|
instance = newInstance()
|
|
|
|
}
|
|
|
|
|
2015-04-08 02:20:04 -04:00
|
|
|
func TestRequestNewPort(t *testing.T) {
|
2015-05-14 17:59:17 -04:00
|
|
|
p := Get()
|
2015-04-16 18:16:11 -04:00
|
|
|
defer resetPortAllocator()
|
2015-04-08 02:20:04 -04:00
|
|
|
|
2015-04-10 14:59:05 -04:00
|
|
|
port, err := p.RequestPort(defaultIP, "tcp", 0)
|
2015-04-08 02:20:04 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2015-04-10 14:59:05 -04:00
|
|
|
if expected := p.Begin; port != expected {
|
2015-04-08 02:20:04 -04:00
|
|
|
t.Fatalf("Expected port %d got %d", expected, port)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRequestSpecificPort(t *testing.T) {
|
2015-05-14 17:59:17 -04:00
|
|
|
p := Get()
|
2015-04-16 18:16:11 -04:00
|
|
|
defer resetPortAllocator()
|
2015-04-08 02:20:04 -04:00
|
|
|
|
2015-04-10 14:59:05 -04:00
|
|
|
port, err := p.RequestPort(defaultIP, "tcp", 5000)
|
2015-04-08 02:20:04 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2015-04-16 18:16:11 -04:00
|
|
|
|
2015-04-08 02:20:04 -04:00
|
|
|
if port != 5000 {
|
|
|
|
t.Fatalf("Expected port 5000 got %d", port)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestReleasePort(t *testing.T) {
|
2015-05-14 17:59:17 -04:00
|
|
|
p := Get()
|
2015-04-08 02:20:04 -04:00
|
|
|
|
2015-04-10 14:59:05 -04:00
|
|
|
port, err := p.RequestPort(defaultIP, "tcp", 5000)
|
2015-04-08 02:20:04 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if port != 5000 {
|
|
|
|
t.Fatalf("Expected port 5000 got %d", port)
|
|
|
|
}
|
|
|
|
|
2015-04-10 14:59:05 -04:00
|
|
|
if err := p.ReleasePort(defaultIP, "tcp", 5000); err != nil {
|
2015-04-08 02:20:04 -04:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestReuseReleasedPort(t *testing.T) {
|
2015-05-14 17:59:17 -04:00
|
|
|
p := Get()
|
2015-04-16 18:16:11 -04:00
|
|
|
defer resetPortAllocator()
|
2015-04-08 02:20:04 -04:00
|
|
|
|
2015-04-10 14:59:05 -04:00
|
|
|
port, err := p.RequestPort(defaultIP, "tcp", 5000)
|
2015-04-08 02:20:04 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if port != 5000 {
|
|
|
|
t.Fatalf("Expected port 5000 got %d", port)
|
|
|
|
}
|
|
|
|
|
2015-04-10 14:59:05 -04:00
|
|
|
if err := p.ReleasePort(defaultIP, "tcp", 5000); err != nil {
|
2015-04-08 02:20:04 -04:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2015-04-10 14:59:05 -04:00
|
|
|
port, err = p.RequestPort(defaultIP, "tcp", 5000)
|
2015-04-08 02:20:04 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2017-06-12 14:30:30 -04:00
|
|
|
if port != 5000 {
|
|
|
|
t.Fatalf("Expected port 5000 got %d", port)
|
|
|
|
}
|
2015-04-08 02:20:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestReleaseUnreadledPort(t *testing.T) {
|
2015-05-14 17:59:17 -04:00
|
|
|
p := Get()
|
2015-04-16 18:16:11 -04:00
|
|
|
defer resetPortAllocator()
|
2015-04-08 02:20:04 -04:00
|
|
|
|
2015-04-10 14:59:05 -04:00
|
|
|
port, err := p.RequestPort(defaultIP, "tcp", 5000)
|
2015-04-08 02:20:04 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if port != 5000 {
|
|
|
|
t.Fatalf("Expected port 5000 got %d", port)
|
|
|
|
}
|
|
|
|
|
2017-06-12 14:30:30 -04:00
|
|
|
_, err = p.RequestPort(defaultIP, "tcp", 5000)
|
2015-04-08 02:20:04 -04:00
|
|
|
|
|
|
|
switch err.(type) {
|
|
|
|
case ErrPortAlreadyAllocated:
|
|
|
|
default:
|
|
|
|
t.Fatalf("Expected port allocation error got %s", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestUnknowProtocol(t *testing.T) {
|
2015-05-14 17:59:17 -04:00
|
|
|
if _, err := Get().RequestPort(defaultIP, "tcpp", 0); err != ErrUnknownProtocol {
|
2015-04-08 02:20:04 -04:00
|
|
|
t.Fatalf("Expected error %s got %s", ErrUnknownProtocol, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestAllocateAllPorts(t *testing.T) {
|
2015-05-14 17:59:17 -04:00
|
|
|
p := Get()
|
2015-04-16 18:16:11 -04:00
|
|
|
defer resetPortAllocator()
|
2015-04-08 02:20:04 -04:00
|
|
|
|
2015-04-10 14:59:05 -04:00
|
|
|
for i := 0; i <= p.End-p.Begin; i++ {
|
|
|
|
port, err := p.RequestPort(defaultIP, "tcp", 0)
|
2015-04-08 02:20:04 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2015-04-10 14:59:05 -04:00
|
|
|
if expected := p.Begin + i; port != expected {
|
2015-04-08 02:20:04 -04:00
|
|
|
t.Fatalf("Expected port %d got %d", expected, port)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-10 14:59:05 -04:00
|
|
|
if _, err := p.RequestPort(defaultIP, "tcp", 0); err != ErrAllPortsAllocated {
|
2015-04-08 02:20:04 -04:00
|
|
|
t.Fatalf("Expected error %s got %s", ErrAllPortsAllocated, err)
|
|
|
|
}
|
|
|
|
|
2015-04-10 14:59:05 -04:00
|
|
|
_, err := p.RequestPort(defaultIP, "udp", 0)
|
2015-04-08 02:20:04 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// release a port in the middle and ensure we get another tcp port
|
2015-04-10 14:59:05 -04:00
|
|
|
port := p.Begin + 5
|
|
|
|
if err := p.ReleasePort(defaultIP, "tcp", port); err != nil {
|
2015-04-08 02:20:04 -04:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2015-04-10 14:59:05 -04:00
|
|
|
newPort, err := p.RequestPort(defaultIP, "tcp", 0)
|
2015-04-08 02:20:04 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if newPort != port {
|
|
|
|
t.Fatalf("Expected port %d got %d", port, newPort)
|
|
|
|
}
|
|
|
|
|
|
|
|
// now pm.last == newPort, release it so that it's the only free port of
|
|
|
|
// the range, and ensure we get it back
|
2015-04-10 14:59:05 -04:00
|
|
|
if err := p.ReleasePort(defaultIP, "tcp", newPort); err != nil {
|
2015-04-08 02:20:04 -04:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2015-04-10 14:59:05 -04:00
|
|
|
port, err = p.RequestPort(defaultIP, "tcp", 0)
|
2015-04-08 02:20:04 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if newPort != port {
|
|
|
|
t.Fatalf("Expected port %d got %d", newPort, port)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkAllocatePorts(b *testing.B) {
|
2015-05-14 17:59:17 -04:00
|
|
|
p := Get()
|
2015-04-16 18:16:11 -04:00
|
|
|
defer resetPortAllocator()
|
2015-04-08 02:20:04 -04:00
|
|
|
|
|
|
|
for i := 0; i < b.N; i++ {
|
2015-04-10 14:59:05 -04:00
|
|
|
for i := 0; i <= p.End-p.Begin; i++ {
|
|
|
|
port, err := p.RequestPort(defaultIP, "tcp", 0)
|
2015-04-08 02:20:04 -04:00
|
|
|
if err != nil {
|
|
|
|
b.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2015-04-10 14:59:05 -04:00
|
|
|
if expected := p.Begin + i; port != expected {
|
2015-04-08 02:20:04 -04:00
|
|
|
b.Fatalf("Expected port %d got %d", expected, port)
|
|
|
|
}
|
|
|
|
}
|
2015-04-10 14:59:05 -04:00
|
|
|
p.ReleaseAll()
|
2015-04-08 02:20:04 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestPortAllocation(t *testing.T) {
|
2015-05-14 17:59:17 -04:00
|
|
|
p := Get()
|
2015-04-16 18:16:11 -04:00
|
|
|
defer resetPortAllocator()
|
2015-04-08 02:20:04 -04:00
|
|
|
|
|
|
|
ip := net.ParseIP("192.168.0.1")
|
|
|
|
ip2 := net.ParseIP("192.168.0.2")
|
2015-04-10 14:59:05 -04:00
|
|
|
if port, err := p.RequestPort(ip, "tcp", 80); err != nil {
|
2015-04-08 02:20:04 -04:00
|
|
|
t.Fatal(err)
|
|
|
|
} else if port != 80 {
|
|
|
|
t.Fatalf("Acquire(80) should return 80, not %d", port)
|
|
|
|
}
|
2015-04-10 14:59:05 -04:00
|
|
|
port, err := p.RequestPort(ip, "tcp", 0)
|
2015-04-08 02:20:04 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if port <= 0 {
|
|
|
|
t.Fatalf("Acquire(0) should return a non-zero port")
|
|
|
|
}
|
|
|
|
|
2015-04-10 14:59:05 -04:00
|
|
|
if _, err := p.RequestPort(ip, "tcp", port); err == nil {
|
2015-04-08 02:20:04 -04:00
|
|
|
t.Fatalf("Acquiring a port already in use should return an error")
|
|
|
|
}
|
|
|
|
|
2015-04-10 14:59:05 -04:00
|
|
|
if newPort, err := p.RequestPort(ip, "tcp", 0); err != nil {
|
2015-04-08 02:20:04 -04:00
|
|
|
t.Fatal(err)
|
|
|
|
} else if newPort == port {
|
|
|
|
t.Fatalf("Acquire(0) allocated the same port twice: %d", port)
|
|
|
|
}
|
|
|
|
|
2015-04-10 14:59:05 -04:00
|
|
|
if _, err := p.RequestPort(ip, "tcp", 80); err == nil {
|
2015-04-08 02:20:04 -04:00
|
|
|
t.Fatalf("Acquiring a port already in use should return an error")
|
|
|
|
}
|
2015-04-10 14:59:05 -04:00
|
|
|
if _, err := p.RequestPort(ip2, "tcp", 80); err != nil {
|
2015-04-08 02:20:04 -04:00
|
|
|
t.Fatalf("It should be possible to allocate the same port on a different interface")
|
|
|
|
}
|
2015-04-10 14:59:05 -04:00
|
|
|
if _, err := p.RequestPort(ip2, "tcp", 80); err == nil {
|
2015-04-08 02:20:04 -04:00
|
|
|
t.Fatalf("Acquiring a port already in use should return an error")
|
|
|
|
}
|
2015-04-10 14:59:05 -04:00
|
|
|
if err := p.ReleasePort(ip, "tcp", 80); err != nil {
|
2015-04-08 02:20:04 -04:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2015-04-10 14:59:05 -04:00
|
|
|
if _, err := p.RequestPort(ip, "tcp", 80); err != nil {
|
2015-04-08 02:20:04 -04:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2015-04-10 14:59:05 -04:00
|
|
|
port, err = p.RequestPort(ip, "tcp", 0)
|
2015-04-08 02:20:04 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2015-04-10 14:59:05 -04:00
|
|
|
port2, err := p.RequestPort(ip, "tcp", port+1)
|
2015-04-08 02:20:04 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2015-04-10 14:59:05 -04:00
|
|
|
port3, err := p.RequestPort(ip, "tcp", 0)
|
2015-04-08 02:20:04 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if port3 == port2 {
|
|
|
|
t.Fatal("Requesting a dynamic port should never allocate a used port")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-11 21:19:42 -04:00
|
|
|
func TestPortAllocationWithCustomRange(t *testing.T) {
|
|
|
|
p := Get()
|
|
|
|
defer resetPortAllocator()
|
|
|
|
|
|
|
|
start, end := 8081, 8082
|
|
|
|
specificPort := 8000
|
|
|
|
|
|
|
|
//get an ephemeral port.
|
|
|
|
port1, err := p.RequestPortInRange(defaultIP, "tcp", 0, 0)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
//request invalid ranges
|
|
|
|
if _, err := p.RequestPortInRange(defaultIP, "tcp", 0, end); err == nil {
|
|
|
|
t.Fatalf("Expected error for invalid range %d-%d", 0, end)
|
|
|
|
}
|
|
|
|
if _, err := p.RequestPortInRange(defaultIP, "tcp", start, 0); err == nil {
|
|
|
|
t.Fatalf("Expected error for invalid range %d-%d", 0, end)
|
|
|
|
}
|
|
|
|
if _, err := p.RequestPortInRange(defaultIP, "tcp", 8081, 8080); err == nil {
|
|
|
|
t.Fatalf("Expected error for invalid range %d-%d", 0, end)
|
|
|
|
}
|
|
|
|
|
|
|
|
//request a single port
|
|
|
|
port, err := p.RequestPortInRange(defaultIP, "tcp", specificPort, specificPort)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if port != specificPort {
|
|
|
|
t.Fatalf("Expected port %d, got %d", specificPort, port)
|
|
|
|
}
|
|
|
|
|
|
|
|
//get a port from the range
|
|
|
|
port2, err := p.RequestPortInRange(defaultIP, "tcp", start, end)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if port2 < start || port2 > end {
|
|
|
|
t.Fatalf("Expected a port between %d and %d, got %d", start, end, port2)
|
|
|
|
}
|
|
|
|
//get another ephemeral port (should be > port1)
|
|
|
|
port3, err := p.RequestPortInRange(defaultIP, "tcp", 0, 0)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if port3 < port1 {
|
|
|
|
t.Fatalf("Expected new port > %d in the ephemeral range, got %d", port1, port3)
|
|
|
|
}
|
|
|
|
//get another (and in this case the only other) port from the range
|
|
|
|
port4, err := p.RequestPortInRange(defaultIP, "tcp", start, end)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if port4 < start || port4 > end {
|
|
|
|
t.Fatalf("Expected a port between %d and %d, got %d", start, end, port4)
|
|
|
|
}
|
|
|
|
if port4 == port2 {
|
|
|
|
t.Fatal("Allocated the same port from a custom range")
|
|
|
|
}
|
|
|
|
//request 3rd port from the range of 2
|
|
|
|
if _, err := p.RequestPortInRange(defaultIP, "tcp", start, end); err != ErrAllPortsAllocated {
|
|
|
|
t.Fatalf("Expected error %s got %s", ErrAllPortsAllocated, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-08 02:20:04 -04:00
|
|
|
func TestNoDuplicateBPR(t *testing.T) {
|
2015-05-14 17:59:17 -04:00
|
|
|
p := Get()
|
2015-04-16 18:16:11 -04:00
|
|
|
defer resetPortAllocator()
|
2015-04-08 02:20:04 -04:00
|
|
|
|
2015-04-10 14:59:05 -04:00
|
|
|
if port, err := p.RequestPort(defaultIP, "tcp", p.Begin); err != nil {
|
2015-04-08 02:20:04 -04:00
|
|
|
t.Fatal(err)
|
2015-04-10 14:59:05 -04:00
|
|
|
} else if port != p.Begin {
|
|
|
|
t.Fatalf("Expected port %d got %d", p.Begin, port)
|
2015-04-08 02:20:04 -04:00
|
|
|
}
|
|
|
|
|
2015-04-10 14:59:05 -04:00
|
|
|
if port, err := p.RequestPort(defaultIP, "tcp", 0); err != nil {
|
2015-04-08 02:20:04 -04:00
|
|
|
t.Fatal(err)
|
2015-04-10 14:59:05 -04:00
|
|
|
} else if port == p.Begin {
|
2015-04-08 02:20:04 -04:00
|
|
|
t.Fatalf("Acquire(0) allocated the same port twice: %d", port)
|
|
|
|
}
|
|
|
|
}
|