-
Notifications
You must be signed in to change notification settings - Fork 34
/
template_test.go
59 lines (52 loc) · 1.13 KB
/
template_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
package weixin
import "testing"
func TestSetIndustry(t *testing.T) {
err := SetIndustry(1, 4)
if err != nil {
t.Error(err)
t.FailNow()
}
}
func TestAddTemplate(t *testing.T) {
templateId, err := AddTemplate("TM00015")
if err != nil {
t.Error(err)
t.FailNow()
}
t.Logf("templateId=%s", templateId)
}
func TestSendTemplateMsg(t *testing.T) {
tm := &TemplateMsg{
ToUser: "odSYLjwG_jAujPH-XJfDseBjuggo",
TemplateId: "peyNhQaS0BmNk7_ynbfS9aao323c_7Kz0p3qSknu-o0",
URL: "http://show.money",
Data: TemplateData{
First: KeywordPair{
Value: "这是一个测试模板消息",
Color: "#00ff00",
},
Keyword1: KeywordPair{
Value: "这是一个测试模板消息",
Color: "#0ff000",
},
Keyword2: KeywordPair{
Value: "这是一个测试模板消息",
Color: "#ff0000",
},
Keyword3: KeywordPair{
Value: "这是一个测试模板消息",
Color: "#0000ff",
},
Remark: KeywordPair{
Value: "这是一个测试模板消息",
Color: "#000ff0",
},
},
}
msgId, err := SendTemplateMsg(tm)
if err != nil {
t.Error(err)
t.FailNow()
}
t.Logf("msgId=%d", msgId)
}