forked from hashicorp/raft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tcp_transport_test.go
38 lines (34 loc) · 928 Bytes
/
tcp_transport_test.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
package raft
import (
"net"
"testing"
)
func TestTCPTransport_BadAddr(t *testing.T) {
_, err := NewTCPTransportWithLogger("0.0.0.0:0", nil, 1, 0, newTestLogger(t))
if err != errNotAdvertisable {
t.Fatalf("err: %v", err)
}
}
func TestTCPTransport_EmptyAddr(t *testing.T) {
_, err := NewTCPTransportWithLogger(":0", nil, 1, 0, newTestLogger(t))
if err != errNotAdvertisable {
t.Fatalf("err: %v", err)
}
}
func TestTCPTransport_WithAdvertise(t *testing.T) {
ips, err := net.LookupIP("localhost")
if err != nil {
t.Fatal(err)
}
if len(ips) == 0 {
t.Fatalf("localhost did not resolve to any IPs")
}
addr := &net.TCPAddr{IP: ips[0], Port: 12345}
trans, err := NewTCPTransportWithLogger("0.0.0.0:0", addr, 1, 0, newTestLogger(t))
if err != nil {
t.Fatalf("err: %v", err)
}
if trans.LocalAddr() != ServerAddress(net.JoinHostPort(ips[0].String(), "12345")) {
t.Fatalf("bad: %v", trans.LocalAddr())
}
}