fusenapi/server/home-user-auth/test/acceptcookielogic_test.go

48 lines
1.1 KiB
Go
Raw Normal View History

package homeuserauthtest
2023-06-16 02:58:43 +00:00
import (
"fmt"
2023-07-05 11:00:33 +00:00
"fusenapi/utils/fstests"
2023-06-16 02:58:43 +00:00
"testing"
"github.com/474420502/requests"
"github.com/tidwall/gjson"
)
func TestAcceptCookieLogic(t *testing.T) {
var err error
var resp *requests.Response
var result gjson.Result
// 获取 session并携带 JWT token
ses := fstests.GetSesssion()
2023-06-16 02:58:43 +00:00
// 向服务器发送 GET 请求,获取 cookie 信息
2023-06-20 04:15:14 +00:00
resp, err = ses.Post(fmt.Sprintf("http://%s:%d/user/accept-cookie", cnf.Host, cnf.Port)).TestExecute(gserver)
2023-06-16 02:58:43 +00:00
if err != nil {
t.Error(err)
}
// 使用 gjson 解析返回的 json 数据
result = resp.Json() // gjson
// 检查返回值中的 code 字段是否存在,并且值是否为 200
code := result.Get("code").Int()
if code != 200 {
t.Errorf("Invalid code value: %d", code)
}
// 检查返回值中的 msg 字段是否存在,并且值是否为 "success"
msg := result.Get("msg").String()
if msg != "success" {
t.Errorf(`Invalid msg value: "%s"`, msg)
}
// 检查返回值中的 data 字段是否存在,并且值是否符合预期
token := result.Get("data.token").String()
if len(token) == 0 {
t.Error("Missing token field")
}
}