chore(test): add more log
This commit is contained in:
parent
333455ae73
commit
bf33a3b8ec
@ -1,6 +1,7 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"encoding/base64"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"io"
|
"io"
|
||||||
"net/http"
|
"net/http"
|
||||||
@ -44,7 +45,12 @@ func TestRequest(t *testing.T) {
|
|||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
if c.C != http.StatusOK {
|
if c.C != http.StatusOK {
|
||||||
t.Fatal("status code", c.C)
|
s, err := base64.StdEncoding.DecodeString(c.D)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal("status code", c.C, "msg:", c.D)
|
||||||
|
} else {
|
||||||
|
t.Fatal("status code", c.C, "msg:", s)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if len(c.D) == 0 {
|
if len(c.D) == 0 {
|
||||||
t.Fatal("empty data")
|
t.Fatal("empty data")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user