加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
ikuai_test.go 1.48 KB
一键复制 编辑 原始数据 按行查看 历史
hgf 提交于 2024-06-07 12:42 . add:wan相关接口
package ikuai
import (
"github.com/jakeslee/ikuai/action"
"testing"
)
func getClient() *IKuai {
i := NewIKuai("http://ikuai.com", "admin", "hello12345", true, true)
return i
}
func TestLogin(t *testing.T) {
login, err := getClient().Login()
if err != nil {
t.Error(err)
}
t.Log(login)
}
func TestIKuai_ShowIPGroup(t *testing.T) {
client := getClient()
login, err := client.Login()
if err != nil {
t.Error(err)
}
res := &action.ShowIPGroupResult{}
ip, err := client.Run(login, action.NewIPGroupShowAction(), res)
if err != nil {
t.Error(err)
}
t.Log(ip)
}
func TestIKuai_ShowMonitorLan(t *testing.T) {
client := getClient()
_, err := client.Login()
if err != nil {
t.Error(err)
}
result, err := client.ShowMonitorLan()
if err != nil {
return
}
if err != nil {
t.Error(err)
}
t.Logf("%+v", result)
}
func TestIKuai_ShowSysStat(t *testing.T) {
client := getClient()
_, err := client.Login()
if err != nil {
t.Error(err)
}
result, err := client.ShowSysStat()
if err != nil {
return
}
if err != nil {
t.Error(err)
}
t.Logf("%+v", result)
}
func TestIKuai_ShowLanList(t *testing.T) {
client := getClient()
_, err := client.Login()
if err != nil {
t.Error(err)
}
result, err := client.ShowLanList()
if err != nil {
return
}
if err != nil {
t.Error(err)
}
t.Logf("%+v", result)
cresult, err := client.ShowWanVlanInterface("wan1")
if err != nil {
return
}
if err != nil {
t.Error(err)
}
t.Logf("%+v", cresult)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化