mirror of https://github.com/gogits/gogs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
512 B
32 lines
512 B
package httplib |
|
|
|
import ( |
|
"io/ioutil" |
|
"testing" |
|
) |
|
|
|
func TestGetUrl(t *testing.T) { |
|
resp, err := Get("http://beego.me/").Debug(true).Response() |
|
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") |
|
} |
|
|
|
str, err := Get("http://beego.me/").String() |
|
if err != nil { |
|
t.Fatal(err) |
|
} |
|
if len(str) == 0 { |
|
t.Fatal("has no info") |
|
} |
|
}
|
|
|