mirror of
https://github.com/wyx2685/V2bX.git
synced 2025-03-14 08:18:13 -04:00
102 lines
1.9 KiB
Go
102 lines
1.9 KiB
Go
![]() |
package v2board_test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/Yuzuki616/V2bX/api"
|
||
|
"github.com/Yuzuki616/V2bX/api/v2board"
|
||
|
)
|
||
|
|
||
|
func CreateClient() api.API {
|
||
|
apiConfig := &api.Config{
|
||
|
APIHost: "http://localhost:9897",
|
||
|
Key: "qwertyuiopasdfghjkl",
|
||
|
NodeID: 1,
|
||
|
NodeType: "V2ray",
|
||
|
}
|
||
|
client := v2board.New(apiConfig)
|
||
|
return client
|
||
|
}
|
||
|
|
||
|
func TestGetV2rayNodeinfo(t *testing.T) {
|
||
|
client := CreateClient()
|
||
|
nodeInfo, err := client.GetNodeInfo()
|
||
|
if err != nil {
|
||
|
t.Error(err)
|
||
|
}
|
||
|
t.Log(nodeInfo)
|
||
|
}
|
||
|
|
||
|
func TestGetSSNodeinfo(t *testing.T) {
|
||
|
apiConfig := &api.Config{
|
||
|
APIHost: "http://127.0.0.1:668",
|
||
|
Key: "qwertyuiopasdfghjkl",
|
||
|
NodeID: 1,
|
||
|
NodeType: "Shadowsocks",
|
||
|
}
|
||
|
client := v2board.New(apiConfig)
|
||
|
nodeInfo, err := client.GetNodeInfo()
|
||
|
if err != nil {
|
||
|
t.Error(err)
|
||
|
}
|
||
|
t.Log(nodeInfo)
|
||
|
}
|
||
|
|
||
|
func TestGetTrojanNodeinfo(t *testing.T) {
|
||
|
apiConfig := &api.Config{
|
||
|
APIHost: "http://127.0.0.1:668",
|
||
|
Key: "qwertyuiopasdfghjkl",
|
||
|
NodeID: 1,
|
||
|
NodeType: "Trojan",
|
||
|
}
|
||
|
client := v2board.New(apiConfig)
|
||
|
nodeInfo, err := client.GetNodeInfo()
|
||
|
if err != nil {
|
||
|
t.Error(err)
|
||
|
}
|
||
|
t.Log(nodeInfo)
|
||
|
}
|
||
|
|
||
|
func TestGetUserList(t *testing.T) {
|
||
|
client := CreateClient()
|
||
|
|
||
|
userList, err := client.GetUserList()
|
||
|
if err != nil {
|
||
|
t.Error(err)
|
||
|
}
|
||
|
|
||
|
t.Log(userList)
|
||
|
}
|
||
|
|
||
|
func TestReportReportUserTraffic(t *testing.T) {
|
||
|
client := CreateClient()
|
||
|
userList, err := client.GetUserList()
|
||
|
if err != nil {
|
||
|
t.Error(err)
|
||
|
}
|
||
|
generalUserTraffic := make([]api.UserTraffic, len(*userList))
|
||
|
for i, userInfo := range *userList {
|
||
|
generalUserTraffic[i] = api.UserTraffic{
|
||
|
UID: userInfo.UID,
|
||
|
Upload: 114514,
|
||
|
Download: 114514,
|
||
|
}
|
||
|
}
|
||
|
//client.Debug()
|
||
|
err = client.ReportUserTraffic(&generalUserTraffic)
|
||
|
if err != nil {
|
||
|
t.Error(err)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func TestGetNodeRule(t *testing.T) {
|
||
|
client := CreateClient()
|
||
|
client.Debug()
|
||
|
ruleList, err := client.GetNodeRule()
|
||
|
if err != nil {
|
||
|
t.Error(err)
|
||
|
}
|
||
|
|
||
|
t.Log(ruleList)
|
||
|
}
|