2023-07-06 10:23:43 +00:00
|
|
|
|
package homeuserauthtest
|
2023-06-15 09:51:06 +00:00
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"fmt"
|
2023-07-05 11:00:33 +00:00
|
|
|
|
fstests "fusenapi/utils/fstests"
|
2023-06-15 09:51:06 +00:00
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
|
|
"github.com/474420502/requests"
|
|
|
|
|
"github.com/tidwall/gjson"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func TestCaseBasicInfoLogic(t *testing.T) {
|
|
|
|
|
var err error
|
|
|
|
|
var resp *requests.Response
|
|
|
|
|
var result gjson.Result
|
|
|
|
|
|
|
|
|
|
// 获取 session,并携带 JWT token
|
2023-07-24 11:17:02 +00:00
|
|
|
|
ses := fstests.GetSessionWithUserToken(t, userserver, cnf.Host, cnf.Port)
|
2023-06-15 09:51:06 +00:00
|
|
|
|
|
|
|
|
|
// 向服务器发送 GET 请求,获取用户基本信息
|
2023-07-24 11:17:02 +00:00
|
|
|
|
resp, err = ses.Get(fmt.Sprintf("http://%s:%d/api/user/basic-info", cnf.Host, cnf.Port)).TestExecute(gserver)
|
2023-06-15 09:51:06 +00:00
|
|
|
|
if err != nil {
|
|
|
|
|
t.Error(err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 检查返回值中的 code 字段是否存在,并且值是否为 200
|
|
|
|
|
result = resp.Json().Get("code")
|
|
|
|
|
if !result.Exists() {
|
|
|
|
|
t.Error("code is not exists")
|
|
|
|
|
}
|
|
|
|
|
if result.Int() != 200 {
|
|
|
|
|
t.Error("code != 200")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 检查返回值中的 msg 字段是否存在,并且值是否为 "success"
|
|
|
|
|
result = resp.Json().Get("msg")
|
|
|
|
|
if !result.Exists() {
|
|
|
|
|
t.Error("msg is not exists")
|
|
|
|
|
}
|
|
|
|
|
if result.String() != "success" {
|
|
|
|
|
t.Error(result.String())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 检查返回值中的 data 字段是否存在
|
|
|
|
|
result = resp.Json().Get("data")
|
|
|
|
|
if !result.Exists() {
|
|
|
|
|
t.Error("data is not exists")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 检查返回值中的 type 字段是否存在,并且值是否为 0
|
|
|
|
|
result = resp.Json().Get("data.type")
|
|
|
|
|
if !result.Exists() {
|
|
|
|
|
t.Error("type is not exists")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 检查返回值中的 is_order_status_email 字段是否存在,并且值是否为 false
|
|
|
|
|
result = resp.Json().Get("data.is_order_status_email")
|
|
|
|
|
if !result.Exists() {
|
|
|
|
|
t.Error("is_order_status_email is not exists")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 检查返回值中的 is_email_advertisement 字段是否存在,并且值是否为 false
|
|
|
|
|
result = resp.Json().Get("data.is_email_advertisement")
|
|
|
|
|
if !result.Exists() {
|
|
|
|
|
t.Error("is_email_advertisement is not exists")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 检查返回值中的 is_order_status_phone 字段是否存在,并且值是否为 false
|
|
|
|
|
result = resp.Json().Get("data.is_order_status_phone")
|
|
|
|
|
if !result.Exists() {
|
|
|
|
|
t.Error("is_order_status_phone is not exists")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 检查返回值中的 is_phone_advertisement 字段是否存在,并且值是否为 false
|
|
|
|
|
result = resp.Json().Get("data.is_phone_advertisement")
|
|
|
|
|
if !result.Exists() {
|
|
|
|
|
t.Error("is_phone_advertisement is not exists")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 检查返回值中的 is_open_render 字段是否存在,并且值是否为 false
|
|
|
|
|
result = resp.Json().Get("data.is_open_render")
|
|
|
|
|
if !result.Exists() {
|
|
|
|
|
t.Error("is_open_render is not exists")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 检查返回值中的 is_thousand_face 字段是否存在,并且值是否为 false
|
|
|
|
|
result = resp.Json().Get("data.is_thousand_face")
|
|
|
|
|
if !result.Exists() {
|
|
|
|
|
t.Error("is_thousand_face is not exists")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 检查返回值中的 is_low_rendering 字段是否存在,并且值是否为 false
|
|
|
|
|
result = resp.Json().Get("data.is_low_rendering")
|
|
|
|
|
if !result.Exists() {
|
|
|
|
|
t.Error("is_low_rendering is not exists")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 检查返回值中的 is_remove_bg 字段是否存在,并且值是否为 true
|
|
|
|
|
result = resp.Json().Get("data.is_remove_bg")
|
|
|
|
|
if !result.Exists() {
|
|
|
|
|
t.Error("is_remove_bg is not exists")
|
|
|
|
|
}
|
2023-06-20 11:52:38 +00:00
|
|
|
|
|
2023-06-15 09:51:06 +00:00
|
|
|
|
}
|