-
Notifications
You must be signed in to change notification settings - Fork 0
/
main_test.go
111 lines (82 loc) · 2.1 KB
/
main_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
package main
import (
"testing"
"twitch2discordbridge/configuration"
externalemotes "twitch2discordbridge/externalEmotes"
"twitch2discordbridge/utils"
twitchIrc "github.com/gempir/go-twitch-irc/v4"
"github.com/nicklaw5/helix"
)
func TestCheerMessage(t *testing.T) {
config, _ := configuration.LoadConfigFromFile("config.yaml")
helixApi, _ := helix.NewClient(&helix.Options{
ClientID: config.TwitchClientId,
UserAccessToken: config.OauthPassword,
})
message := twitchIrc.PrivateMessage{
User: twitchIrc.User{
DisplayName: "test",
},
Message: "this is a cheer message Cheer100",
Tags: map[string]string{
"bits": "100",
},
}
config.ShowBitGifters = true
if !utils.ParseCheerMessages(&message, helixApi, config) {
t.Error("should have been true")
}
if "test [bits: 100]" != message.User.DisplayName {
t.Errorf("wrong username, got [%s]", message.User.DisplayName)
}
if "this is a cheer message" != message.Message {
t.Errorf("wrong message, got [%s]", message.Message)
}
}
func TestHypeMessage(t *testing.T) {
config, _ := configuration.LoadConfigFromFile("config.yaml")
message := twitchIrc.PrivateMessage{
User: twitchIrc.User{
DisplayName: "test",
},
Message: "this is a cheer message Cheer100",
Tags: map[string]string{
"pinned-chat-paid-amount": "100",
},
}
config.ShowHyperChat = true
if !utils.ParseHypeChat(&message, config) {
t.Error("should have been true")
}
if "test [HypeChat: 100]" != message.User.DisplayName {
t.Errorf("wrong username, got [%s]", message.User.DisplayName)
}
}
func Test7TVgetEmotes(t *testing.T) {
var config, err = configuration.LoadConfigFromFile("./config.yaml")
if err != nil {
t.Error(err)
}
tclient, err := helix.NewClient(&helix.Options{
ClientID: config.TwitchClientId,
UserAccessToken: config.OauthPassword,
})
if err != nil {
t.Error(err)
}
userInfo, err := tclient.GetUsers(
&helix.UsersParams{
Logins: []string{config.Channel},
},
)
if err != nil {
t.Error(err)
}
var (
users = userInfo.Data.Users
user helix.User
)
if len(users) != 0 {
user = users[0]
}
}