我创建了一些 Go 函数,它们对 Internet 上的服务进行 HTTP GET 调用并解析结果。
我现在正在为这些函数编写测试用例。在我的测试用例中,我使用 go 包httptest
来模拟对这些外部服务的调用。下面是我的代码。为简洁起见,特意删除了错误检查。这里是go-playground。
package main
import (
"fmt"
"io"
"context"
"net/http"
"net/http/httptest"
)
func handlerResponse() http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusOK)
w.Write([]byte(`{"A":"B"}`))
})
}
func buildMyRequest(ctx context.Context, url string) *http.Request {
request, _ := http.NewRequestWithContext(ctx, "GET", url, nil)
return request
}
func myPrint(response *http.Response) {
b := make([]byte, 60000)
for {
_, err := response.Body.Read(b)
if err == io.EOF {
break
}
}
fmt.Println(string(b))
}
func main() {
srv := httptest.NewServer(handlerResponse())
client := http.Client{}
myResponse1, _ := client.Do(buildMyRequest(context.Background(), srv.URL))
fmt.Println("myResponse1:")
myPrint(myResponse1)
myResponse2, _ := client.Do(buildMyRequest(context.Background(), srv.URL))
fmt.Println("myResponse2:")
myPrint(myResponse2)
}
这是它产生的输出:
myResponse1:
{"A":"B"}
myResponse2:
{"A":"B"}
如您所见,我创建了一些虚拟 HTTP 响应数据{"A":"B"}
,当您向 发送 HTTP 请求时srv.URL
,它实际上会命中一个短暂的 HTTP 服务器,该服务器使用虚拟数据进行响应。凉爽的!
当您向 发送第二个 HTTP 请求时srv.URL
,它会再次使用相同的虚拟数据进行响应。但这就是我的问题出现的地方。{"C":"D"}
我希望临时 HTTP 服务器在第二次和第三次{"E":"F"}
收到请求时返回一些不同的数据。
如何更改main()
函数的第一行,以便服务器在随后的 HTTP 调用中响应我想要的数据?