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

  1. package httplib
  2. import (
  3. "io/ioutil"
  4. "testing"
  5. )
  6. func TestGetUrl(t *testing.T) {
  7. resp, err := Get("http://beego.me/").Debug(true).Response()
  8. if err != nil {
  9. t.Fatal(err)
  10. }
  11. if resp.Body == nil {
  12. t.Fatal("body is nil")
  13. }
  14. data, err := ioutil.ReadAll(resp.Body)
  15. defer resp.Body.Close()
  16. if err != nil {
  17. t.Fatal(err)
  18. }
  19. if len(data) == 0 {
  20. t.Fatal("data is no")
  21. }
  22. str, err := Get("http://beego.me/").String()
  23. if err != nil {
  24. t.Fatal(err)
  25. }
  26. if len(str) == 0 {
  27. t.Fatal("has no info")
  28. }
  29. }