-
Notifications
You must be signed in to change notification settings - Fork 0
/
types_test.go
120 lines (111 loc) · 1.71 KB
/
types_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
108
109
110
111
112
113
114
115
116
117
118
119
120
package tg
import (
"encoding/json"
"testing"
"github.com/stretchr/testify/assert"
)
func TestUserBot_MarshalJSON(t *testing.T) {
data := `{
"id": 12345,
"is_bot": true,
"first_name": "Test Bot",
"username": "test_bot",
"can_join_groups": true,
"can_read_all_group_messages": true,
"supports_inline_queries": true
}`
botUser := UserBot{}
err := json.Unmarshal([]byte(data), &botUser)
if assert.NoError(t, err) {
assert.Equal(t, UserBot{
User: User{
ID: 12345,
IsBot: true,
FirstName: "Test Bot",
LastName: "",
Username: "test_bot",
},
CanJoinGroups: true,
CanReadAllGroupMessages: true,
SupportsInlineQueries: true,
}, botUser)
}
}
func TestMessage_IsCommand(t *testing.T) {
for _, tt := range []struct {
Msg Message
Result bool
}{
{
Message{
Text: "/start",
},
true,
},
{
Message{
Text: "/command fsdklfdgd",
},
true,
},
{
Message{
Text: "fsdfsdfsd",
},
false,
},
} {
r := tt.Msg.IsCommand()
assert.Equal(t, tt.Result, r)
}
}
func TestMessage_CommandArgs(t *testing.T) {
for _, tt := range []struct {
Msg Message
Result string
}{
{
Message{
Text: "/start",
},
"",
},
{
Message{
Text: "/start arg1 arg2",
},
"arg1 arg2",
},
{
Message{
Text: "fasdfsdfsd",
},
"",
},
} {
args := tt.Msg.CommandArgs()
assert.Equal(t, tt.Result, args)
}
}
func TestChat_IsPrivate(t *testing.T) {
for _, tt := range []struct {
Chat Chat
Result bool
}{
{
Chat{
Type: "private",
},
true,
},
{
Chat{
Type: "public",
},
false,
},
} {
r := tt.Chat.IsPrivate()
assert.Equal(t, tt.Result, r)
}
}