This repository was archived by the owner on Jan 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrobot_test.go
107 lines (85 loc) · 2.81 KB
/
robot_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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
package grobot
import (
"io/ioutil"
"net/http"
"net/http/httptest"
"testing"
"github.com/stretchr/testify/assert"
)
// 机器人发送文本消息
func TestRobot_SendTextMessage(t *testing.T) {
want := `{"msgtype":"text","text":{"content":"test"}}`
ts := testHttp(t, want, `{"errmsg":"ok","errcode":0}`, http.StatusOK)
defer ts.Close()
robot := getTestRobot(ts.URL)
err := robot.SendTextMessage("test")
assert.Nil(t, err)
}
// 机器人发送 Markdown 消息
func TestRobot_SendMarkdownMessage(t *testing.T) {
want := `{"markdown":{"title":"title","text":"text"},"msgtype":"markdown"}`
ts := testHttp(t, want, `{"errmsg":"ok","errcode":0}`, http.StatusOK)
defer ts.Close()
robot := getTestRobot(ts.URL)
err := robot.SendMarkdownMessage("title", "text")
assert.Nil(t, err)
}
func TestRobotSendMessageFailed_WebhookReturnEmpty(t *testing.T) {
want := `{"markdown":{"title":"title","text":"text"},"msgtype":"markdown"}`
ts := testHttp(t, want, "", http.StatusOK)
defer ts.Close()
robot := getTestRobot(ts.URL)
err := robot.SendMarkdownMessage("title", "text")
assert.Equal(t, "HttpResponseBodyDecodeFailed:unexpected end of JSON input,RawBody:", err.Error())
}
func TestRobotSendMessageFailed_ResponseUnsuccessfully(t *testing.T) {
want := `{"markdown":{"title":"title","text":"text"},"msgtype":"markdown"}`
ts := testHttp(t, want, `{"errcode":400,"errmsg":"bas request"}`, http.StatusBadRequest)
defer ts.Close()
robot := getTestRobot(ts.URL)
err := robot.SendMarkdownMessage("title", "text")
assert.Equal(t, `HttpResponseStatusCode:400,RawBody:{"errcode":400,"errmsg":"bas request"}`, err.Error())
}
// mock http client
func testHttp(t *testing.T, want string, resp string, statusCode int) *httptest.Server {
return httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(statusCode)
w.Write([]byte(resp))
assert.Equal(t, "POST", r.Method)
b, _ := ioutil.ReadAll(r.Body)
assert.Equal(t, want, string(b))
r.ParseForm()
assert.Equal(t, "token", r.Form.Get("token"))
}))
}
func getTestRobot(api string) *Robot {
return &Robot{
Webhook: stringBuilder(api, "/send?token=token"),
ParseTextMessage: testTestBodyFunc,
ParseMarkdownMessage: testMarkdownParser,
}
}
type testTextMessage struct {
Content string `json:"content"`
}
func testTestBodyFunc(text string) map[string]interface{} {
msg := testTextMessage{text}
body := make(map[string]interface{})
body["msgtype"] = "text"
body["text"] = msg
return body
}
type testMarkdownMessage struct {
Title string `json:"title"`
Text string `json:"text"`
}
func testMarkdownParser(title string, text string) map[string]interface{} {
msg := testMarkdownMessage{
Title: title,
Text: text,
}
body := make(map[string]interface{})
body["msgtype"] = "markdown"
body["markdown"] = msg
return body
}