35 lines
688 B
Go
35 lines
688 B
Go
package main
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/ryanehamil/lookupip/src/ipapi"
|
|
)
|
|
|
|
// TestBuildURL
|
|
// Tests that the buildURL function returns a correct URL
|
|
func TestLookup(t *testing.T) {
|
|
var tests = []struct {
|
|
input string
|
|
want string
|
|
explain string
|
|
}{
|
|
{"", "Any IPV4", "Lookup my own IP"},
|
|
{"8.8.8.8", "8.8.8.8", "Lookup Google's DNS"},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
ip := test.input
|
|
properties := ""
|
|
// Use the IP-API to lookup anything
|
|
data, _ := ipapi.Lookup(&ip, &properties)
|
|
|
|
got := ipapi.GetProperties(data, properties, detail)
|
|
|
|
if got != test.want {
|
|
t.Errorf("%q. lookup(%q) = %v, want %v", test.explain, test.input, got, test.want)
|
|
}
|
|
|
|
}
|
|
}
|