herald.go/server/udp_test.go

84 lines
2 KiB
Go
Raw Normal View History

package server
import (
2021-11-25 00:24:06 +01:00
"log"
"os/exec"
"strings"
"testing"
)
// TestAddPeer tests the ability to add peers
func TestUDPPing(t *testing.T) {
2021-11-25 00:24:06 +01:00
args := makeDefaultArgs()
2021-11-25 00:56:34 +01:00
args.DisableStartUDP = true
2021-11-25 00:24:06 +01:00
tests := []struct {
name string
wantIP string
wantCountry string
wantProtocolVersion int
wantHeightMin int
wantFlags byte
}{
{
name: "Correctly parse information from production server.",
wantIP: "SETME",
wantCountry: "US",
wantProtocolVersion: 1,
wantHeightMin: 1060000,
wantFlags: 1,
},
}
2021-11-25 00:24:06 +01:00
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
2021-11-25 00:24:06 +01:00
toAddr := "spv16.lbry.com"
toPort := "50001"
2021-11-25 00:24:06 +01:00
pong, err := UDPPing(toAddr, toPort)
gotCountry := pong.DecodeCountry()
if err != nil {
log.Println(err)
}
2021-11-25 00:24:06 +01:00
res, err := exec.Command("dig", "@resolver4.opendns.com", "myip.opendns.com", "+short").Output()
2021-11-25 00:24:06 +01:00
if err != nil {
log.Println(err)
}
2021-11-25 00:24:06 +01:00
digIP := strings.TrimSpace(string(res))
udpIP := pong.DecodeAddress().String()
tt.wantIP = digIP
2021-11-25 00:24:06 +01:00
log.Println("Height:", pong.DecodeHeight())
log.Printf("Flags: %x\n", pong.DecodeFlags())
log.Println("ProtocolVersion:", pong.DecodeProtocolVersion())
log.Printf("Tip: %x\n", pong.DecodeTip())
2021-11-25 00:24:06 +01:00
gotHeight := pong.DecodeHeight()
gotProtocolVersion := pong.DecodeProtocolVersion()
gotFlags := pong.DecodeFlags()
gotIP := udpIP
2021-11-25 00:24:06 +01:00
if gotIP != tt.wantIP {
t.Errorf("ip: got: '%s', want: '%s'\n", gotIP, tt.wantIP)
}
if gotCountry != tt.wantCountry {
t.Errorf("country: got: '%s', want: '%s'\n", gotCountry, tt.wantCountry)
}
if gotHeight < tt.wantHeightMin {
t.Errorf("height: got: %d, want >=: %d\n", gotHeight, tt.wantHeightMin)
}
if gotProtocolVersion != tt.wantProtocolVersion {
t.Errorf("protocolVersion: got: %d, want: %d\n", gotProtocolVersion, tt.wantProtocolVersion)
}
if gotFlags != tt.wantFlags {
t.Errorf("flags: got: %d, want: %d\n", gotFlags, tt.wantFlags)
}
})
}
}