代码拉取完成,页面将自动刷新
同步操作将从 MAKOTO/openwechat 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
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
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。