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

52 lines
1.1 KiB
Go
Raw Permalink Normal View History

2014-04-12 13:18:18 +08:00
// Beego (http://beego.me/)
// @description beego is an open-source, high-performance web framework for the Go programming language.
// @link http://github.com/astaxie/beego for the canonical source repository
// @license http://github.com/astaxie/beego/blob/master/LICENSE
// @authors astaxie
package httplib
2013-08-03 22:20:09 +08:00
import (
2014-05-08 16:58:08 +08:00
"fmt"
2013-08-03 22:20:09 +08:00
"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")
}
}
2014-05-08 16:58:08 +08:00
func TestPost(t *testing.T) {
b := Post("http://beego.me/").Debug(true)
b.Param("username", "astaxie")
b.Param("password", "hello")
b.PostFile("uploadfile", "httplib.go")
str, err := b.String()
if err != nil {
t.Fatal(err)
}
fmt.Println(str)
}