-2

我想测试 API 函数,但参数给出了问题。

 func SetAPIConfigHandler(w http.ResponseWriter, r *http.Request) {
    var apiConfig model.Configuration
    err := json.NewDecoder(r.Body).Decode(&apiConfig)
    if err != nil {
        responderror(w, http.StatusBadRequest, err.Error())
    } else {
        utils.Domain = apiConfig.Domain
        utils.BaseURL = apiConfig.BaseURL
        utils.Tenant = apiConfig.Tenant
        respondJSON(w, http.StatusOK, apiConfig)
    }
}
4

1 回答 1

2

您可以使用 httptest 对其进行测试,如下所示:

    req := httptest.NewRequest("GET", "http://example.com/foo", nil)
    w := httptest.NewRecorder()
    SetAPIConfigHandler(w, req)

    resp := w.Result()
    body, _ := io.ReadAll(resp.Body)

    fmt.Println(resp.StatusCode)
    fmt.Println(resp.Header.Get("Content-Type"))
    fmt.Println(string(body))
于 2021-06-17T09:19:58.713 回答