echoip/iputil/iputil_test.go

23 lines
337 B
Go
Raw Normal View History

2018-02-10 14:35:12 +01:00
package iputil
import (
"net"
"testing"
)
func TestToDecimal(t *testing.T) {
var tests = []struct {
in string
2018-02-10 18:10:16 +01:00
out uint64
2018-02-10 14:35:12 +01:00
}{
2018-02-10 18:10:16 +01:00
{"127.0.0.1", 2130706433},
{"::1", 1},
2018-02-10 14:35:12 +01:00
}
for _, tt := range tests {
i := ToDecimal(net.ParseIP(tt.in))
2018-02-10 18:10:16 +01:00
if tt.out != i {
2018-02-10 14:35:12 +01:00
t.Errorf("Expected %d, got %d for IP %s", tt.out, i, tt.in)
}
}
}