1 Star 0 Fork 1

linkin999/openwechat

forked from MAKOTO/openwechat 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
bot_test.go 2.84 KB
一键复制 编辑 原始数据 按行查看 历史
多吃点苹果 提交于 2024-06-10 10:46 . add workflow (#503)
package openwechat
import (
"fmt"
"testing"
"time"
)
func TestLogin(t *testing.T) {
bot := DefaultBot(Desktop)
bot.LoginCallBack = func(body CheckLoginResponse) {
t.Log("login")
}
if err := bot.Login(); err != nil {
t.Error(err)
}
}
func TestLogout(t *testing.T) {
bot := DefaultBot(Desktop)
bot.LoginCallBack = func(body CheckLoginResponse) {
t.Log("login")
}
bot.LogoutCallBack = func(bot *Bot) {
t.Log("logout")
}
bot.MessageHandler = func(msg *Message) {
if msg.IsText() && msg.Content == "logout" {
if err := bot.Logout(); err != nil {
t.Error(err)
}
}
}
if err := bot.Login(); err != nil {
t.Error(err)
return
}
_ = bot.Block()
}
func TestMessageHandle(t *testing.T) {
bot := DefaultBot(Desktop)
bot.MessageHandler = func(msg *Message) {
if msg.IsText() && msg.Content == "ping" {
if _, err := msg.ReplyText("pong"); err != nil {
t.Error(err)
}
}
}
if err := bot.Login(); err != nil {
t.Error(err)
return
}
_ = bot.Block()
}
func TestFriends(t *testing.T) {
bot := DefaultBot(Desktop)
if err := bot.Login(); err != nil {
t.Error(err)
return
}
user, err := bot.GetCurrentUser()
if err != nil {
t.Error(err)
return
}
friends, err := user.Friends()
if err != nil {
t.Error(err)
return
}
t.Log(friends)
}
func TestGroups(t *testing.T) {
bot := DefaultBot(Desktop)
if err := bot.Login(); err != nil {
t.Error(err)
return
}
user, err := bot.GetCurrentUser()
if err != nil {
t.Error(err)
return
}
groups, err := user.Groups()
if err != nil {
t.Error(err)
return
}
t.Log(groups)
}
func TestPinUser(t *testing.T) {
bot := DefaultBot(Desktop)
if err := bot.Login(); err != nil {
t.Error(err)
return
}
user, err := bot.GetCurrentUser()
if err != nil {
t.Error(err)
return
}
friends, err := user.Friends()
if err != nil {
t.Error(err)
return
}
if friends.Count() > 0 {
f := friends.First()
if err = f.Pin(); err != nil {
t.Error(err)
return
}
time.Sleep(time.Second * 5)
if err = f.UnPin(); err != nil {
t.Error(err)
return
}
}
}
func TestSender(t *testing.T) {
bot := DefaultBot(Desktop)
bot.MessageHandler = func(msg *Message) {
if msg.IsSendByGroup() {
fmt.Println(msg.SenderInGroup())
} else {
fmt.Println(msg.Sender())
}
}
if err := bot.Login(); err != nil {
t.Error(err)
return
}
_ = bot.Block()
}
// TestGetUUID
// @description: 获取登录二维码(UUID)
// @param t
func TestGetUUID(t *testing.T) {
bot := DefaultBot(Desktop)
uuid, err := bot.Caller.GetLoginUUID(bot.Context())
if err != nil {
t.Error(err)
return
}
t.Log(uuid)
}
// TestLoginWithUUID
// @description: 使用UUID登录
// @param t
func TestLoginWithUUID(t *testing.T) {
uuid := "oZZsO0Qv8Q=="
bot := DefaultBot(Desktop, WithUUIDOption(uuid))
err := bot.Login()
if err != nil {
t.Errorf("登录失败: %v", err.Error())
return
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/windylinkin/openwechat.git
git@gitee.com:windylinkin/openwechat.git
windylinkin
openwechat
openwechat
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385