1
0
mirror of https://github.com/astaxie/beego.git synced 2024-11-22 05:50:56 +00:00

TestToJson bug fixed

This commit is contained in:
JessonChan 2019-03-07 17:15:30 +08:00
parent 422e8285b5
commit 52f8ccd06c

View File

@ -206,10 +206,16 @@ func TestToJson(t *testing.T) {
t.Fatal(err)
}
t.Log(ip.Origin)
if n := strings.Count(ip.Origin, "."); n != 3 {
ips := strings.Split(ip.Origin, ",")
if len(ips) == 0 {
t.Fatal("response is not valid ip")
}
for i := range ips {
if net.ParseIP(strings.TrimSpace(ips[i])).To4() == nil {
t.Fatal("response is not valid ip")
}
}
}
func TestToFile(t *testing.T) {