-
Notifications
You must be signed in to change notification settings - Fork 3
/
get_dan_mu_list_test.go
89 lines (74 loc) · 1.85 KB
/
get_dan_mu_list_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
package douyuapi
import (
"errors"
"github.com/birjemin/douyuapi/utils"
"github.com/spf13/cast"
"io/ioutil"
"net/http"
"net/http/httptest"
"testing"
"time"
)
// TestGetDanMuList
func TestGetDanMuList(t *testing.T) {
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
path := r.URL.EscapedPath()
if path != getDanMuListURI {
t.Fatalf("path is invalid: %s, %s'", getDanMuListURI, path)
}
if err := r.ParseForm(); err != nil {
t.Fatal(err)
}
queries := []string{"aid", "auth", "time", "token"}
for _, v := range queries {
content := r.Form.Get(v)
if content == "" {
t.Fatalf("param %v can not be empty", v)
}
}
body, _ := ioutil.ReadAll(r.Body)
if string(body) == "" {
t.Fatal("body is empty")
}
w.WriteHeader(http.StatusOK)
var raw string
if r.Form.Get("time") == "100" {
raw = `{"code": 100, "msg":"", "data": ""}`
} else {
raw = `{"code": 0, "msg":"ok", "data":{"list":[{"room_id":1,"uid":1,"nickname":"","content":"","timestamp":1,"ip":"::0"}],"cnt":1,"page_context":12}}`
}
if _, err := w.Write([]byte(raw)); err != nil {
t.Fatal(err)
}
}))
defer ts.Close()
httpClient := &utils.HTTPClient{
Client: &http.Client{
Timeout: 5 * time.Second,
},
}
list := &GetDanMuList{
BaseClient: BaseClient{
Client: httpClient,
Secret: "test-secret",
AID: "test-aid",
},
Token: "test-token",
}
timestamp := utils.GetCurrTime()
msg := `{"cid_type":2,"rid":1}`
if ret, err := list.do(ts.URL+getDanMuListURI, msg, cast.ToString(timestamp)); err != nil {
t.Error(err)
} else {
if ret.Code != 0 || (ret.Data.List)[0].UID != 1 {
t.Error(errors.New("msg: " + ret.Msg))
}
}
if ret, err := list.do(ts.URL+getDanMuListURI, msg, "100"); err != nil {
t.Error(err)
} else {
if ret.Code != 100 {
t.Error(errors.New("msg: " + ret.Msg))
}
}
}