1
0
mirror of https://github.com/astaxie/beego.git synced 2025-01-10 15:07:13 +00:00
Beego/httplib/httplib_test.go

33 lines
512 B
Go
Raw Permalink Normal View History

package httplib
2013-08-03 22:20:09 +08:00
import (
"io/ioutil"
"testing"
)
func TestGetUrl(t *testing.T) {
2013-12-07 13:26:22 +08:00
resp, err := Get("http://beego.me/").Debug(true).Response()
2013-08-03 22:20:09 +08:00
if err != nil {
t.Fatal(err)
}
if resp.Body == nil {
t.Fatal("body is nil")
}
data, err := ioutil.ReadAll(resp.Body)
defer resp.Body.Close()
if err != nil {
t.Fatal(err)
}
if len(data) == 0 {
t.Fatal("data is no")
}
2013-08-03 22:22:37 +08:00
str, err := Get("http://beego.me/").String()
2013-08-03 22:20:09 +08:00
if err != nil {
t.Fatal(err)
}
if len(str) == 0 {
t.Fatal("has no info")
}
}