我是 Go 新手。我使用 DeepMap OpenAPI 生成器和使用 pgxpool 的 Postgres 编写了一个基于 Echo 服务器构建的 API 服务器。它运行良好并且已经使用了一年,但这并不意味着它写得正确:)。
测试服务器一直使用 shell 脚本和一系列 Curl 调用,效果很好,但我正在尝试更新测试以使用 Go 的测试框架。我已经进行了一些基本测试,但是任何需要表单值的东西都不起作用——处理程序函数看不到任何表单值,所以我猜测请求没有封装它们,但我不明白为什么。
下面是CreateNode()
方法的第一部分,它实现了生成的API接口的一部分。我省略了身体;失败的部分是上下文中出现的内容。
func (si *ServerImplementation) CreateNode(ctx echo.Context) error { vals, err := ctx.FormParams() info("In CreateNode() with FormParams %v", vals) ...
这是测试函数:
func TestCreateNode(t *testing.T) { // not the actual expected return expected := "Node created, hooray\n" // initialize database with current schema api := &ServerImplementation{} err := api.Init("host=localhost database=pgx_test user=postgres") if err != nil { t.Fatal(err) } // handle teardown in this deferred function t.Cleanup(func() { t.Log("Cleaning up API") api.Close() }) // start up webserver e := echo.New() // this didn't work either //f := make(url.Values) //f.Set("name", "node1") //req := httptest.NewRequest(http.MethodPost, "/nodes/", strings.NewReader(f.Encode())) //req.Header.Add("Content-Type", "multipart/form-data") req := httptest.NewRequest(echo.POST, "/", strings.NewReader(`{"name":"node1"}`)) req.Header.Set(echo.HeaderContentType, echo.MIMEApplicationJSON) rec := httptest.NewRecorder() ctx := e.NewContext(req, rec) if assert.NoError(t, api.CreateNode(ctx)) { assert.Equal(t, http.StatusOK, rec.Code) assert.Equal(t, expected, rec.Body.String()) } }
我不会打扰完整的测试输出,因为当 CreateNode()
没有收到任何值时,一切都会失败:
=== RUN TestCreateNode 2023/08/26 15:09:43 INFO: In CreateNode() with FormParams map[] 2023/08/26 15:09:43 INFO: No name provided in CreateNode()
据我所知,我正在密切关注类似的示例。我希望这是足够的细节,但不想用不必要的支持代码来超载问题。
节点的端点是 /nodes
,API 的基本 URL 是 /api
,但这两者都没有在这里反映出来,从我看到的例子来看它们是不必要的。 Echo 的示例始终使用 /
作为端点。
好吧,我是叮当。
我把很多例子拼凑在一起,试图让一些东西发挥作用,只有一次我在测试功能中尝试了以下操作:
req.Header.Set("Testing", "Yes")
并在 CreateNode
中将其弹出:
info("Header: %v", ctx.Request().Header)
这给了我:
2023/08/26 20:04:36 INFO: Header: map[Content-Type:[application/x-www-form-urlencoded] Testing:[Yes]]
我看到该请求进展顺利,这与我形成请求的方式有关。
我再次检查了示例,意识到我正在根据一个示例设置表单值,但从另一个示例设置内容类型。作品如下:
f := make(url.Values) f.Set("name", "node1") req := httptest.NewRequest(http.MethodPost, "/", strings.NewReader(f.Encode())) req.Header.Set(echo.HeaderContentType, echo.MIMEApplicationForm)
当然,通过 JSON 执行此操作是行不通的,因为 CreateNode() 不是如何解析传入信息的。
这只是我的马虎!
以上是表单变量在测试中不可用的详细内容。更多信息请关注PHP中文网其他相关文章!