forked from CatchZeng/dingtalk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
markdown_test.go
63 lines (54 loc) · 1.26 KB
/
markdown_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
package dingtalk
import (
"reflect"
"testing"
)
func TestMarkdownMessage_ToByte(t *testing.T) {
msg := NewMarkdownMessage()
_, _ = msg.ToByte()
if msg.MsgType != MsgTypeMarkdown {
t.Errorf("MarkdownMessage.ToByte() type error")
}
}
func TestNewMarkdownMessage(t *testing.T) {
tests := []struct {
name string
want *MarkdownMessage
}{
{
name: "Should return a MarkdownMessage instance",
want: &MarkdownMessage{},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := NewMarkdownMessage(); !reflect.DeepEqual(got, tt.want) {
t.Errorf("NewMarkdownMessage() = %v, want %v", got, tt.want)
}
})
}
}
func TestMarkdownMessage_SetMarkdown(t *testing.T) {
got := NewMarkdownMessage()
got.SetMarkdown("title", "text")
want := NewMarkdownMessage()
want.Markdown = Markdown{
Title: "title",
Text: "text",
}
if !reflect.DeepEqual(got, want) {
t.Errorf("SetMarkdown() = %v, want %v", got, want)
}
}
func TestMarkdownMessage_SetAt(t *testing.T) {
got := NewMarkdownMessage()
got.SetAt([]string{"atMobiles"}, false)
want := NewMarkdownMessage()
want.At = At{
AtMobiles: []string{"atMobiles"},
IsAtAll: false,
}
if !reflect.DeepEqual(got, want) {
t.Errorf("SetMarkdown() = %v, want %v", got, want)
}
}