56 lines
1.3 KiB
Go
56 lines
1.3 KiB
Go
|
package logic
|
|||
|
|
|||
|
import (
|
|||
|
"fmt"
|
|||
|
"testing"
|
|||
|
|
|||
|
"github.com/474420502/requests"
|
|||
|
"github.com/tidwall/gjson"
|
|||
|
)
|
|||
|
|
|||
|
func TestCaseUserStatusConfigLogic(t *testing.T) {
|
|||
|
var err error
|
|||
|
var resp *requests.Response
|
|||
|
var result gjson.Result
|
|||
|
|
|||
|
// 获取 session,并携带 JWT token
|
|||
|
ses := GetSesssionWithUserToken(t, gserver)
|
|||
|
|
|||
|
// 向服务器发送 GET 请求,获取用户类型信息
|
|||
|
resp, err = ses.Post(fmt.Sprintf("http://%s:%d/user/status-config", cnf.Host, cnf.Port)).TestInServer(gserver)
|
|||
|
if err != nil {
|
|||
|
t.Error(err)
|
|||
|
}
|
|||
|
|
|||
|
// 使用 gjson 解析返回的 json 数据
|
|||
|
result = gjson.Parse(resp.ContentString())
|
|||
|
|
|||
|
// 检查返回值中的 code 字段是否存在,并且值是否为 200
|
|||
|
// 检查返回值中的 msg 字段是否存在,并且值是否为 "success"
|
|||
|
msg := result.Get("msg").String()
|
|||
|
if msg != "success" {
|
|||
|
t.Errorf(`Invalid msg value: "%s"`, msg)
|
|||
|
}
|
|||
|
|
|||
|
// 检查返回值中的 data 字段是否存在,并且值是否为数组类型
|
|||
|
dataArray := result.Get("data.search_list").Array()
|
|||
|
if len(dataArray) == 0 {
|
|||
|
t.Error("Empty data field")
|
|||
|
}
|
|||
|
|
|||
|
// 遍历每个元素,检查其 key 和 name 字段是否存在,并且值是否符合预期
|
|||
|
for _, item := range dataArray {
|
|||
|
|
|||
|
key := item.Get("key")
|
|||
|
name := item.Get("name")
|
|||
|
|
|||
|
if !key.Exists() {
|
|||
|
t.Errorf("key is not exists")
|
|||
|
}
|
|||
|
|
|||
|
if !name.Exists() {
|
|||
|
t.Errorf("name is not exists")
|
|||
|
}
|
|||
|
}
|
|||
|
}
|