- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我有以下代码:
package main
import (
"encoding/json"
"fmt"
"io/ioutil"
"log"
"net/http"
"time"
)
type twitterResult struct {
Results []struct {
Text string `json:"text"`
Ids string `json:"id_str"`
Name string `json:"from_user_name"`
Username string `json:"from_user"`
UserId string `json:"from_user_id_str"`
}
}
var (
twitterUrl = "http://search.twitter.com/search.json?q=%23UCL"
pauseDuration = 5 * time.Second
)
func retrieveTweets(c chan<- *twitterResult) {
for {
resp, err := http.Get(twitterUrl)
if err != nil {
log.Fatal(err)
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
r := new(twitterResult) //or &twitterResult{} which returns *twitterResult
err = json.Unmarshal(body, &r)
if err != nil {
log.Fatal(err)
}
c <- r
time.Sleep(pauseDuration)
}
}
func displayTweets(c chan *twitterResult) {
tweets := <-c
for _, v := range tweets.Results {
fmt.Printf("%v:%v\n", v.Username, v.Text)
}
}
func main() {
c := make(chan *twitterResult)
go retrieveTweets(c)
for {
displayTweets(c)
}
}
我想为它写一些测试,但我不知道如何使用httptest包http://golang.org/pkg/net/http/httptest/会很感激一些指针
我想出了这个(无耻地从 go OAuth https://code.google.com/p/goauth2/source/browse/oauth/oauth_test.go 的测试中复制):
var request = struct {
path, query string // request
contenttype, body string // response
}{
path: "/search.json?",
query: "q=%23Kenya",
contenttype: "application/json",
body: twitterResponse,
}
var (
twitterResponse = `{ 'results': [{'text':'hello','id_str':'34455w4','from_user_name':'bob','from_user_id_str':'345424'}]}`
)
func TestRetrieveTweets(t *testing.T) {
handler := func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", request.contenttype)
io.WriteString(w, request.body)
}
server := httptest.NewServer(http.HandlerFunc(handler))
defer server.Close()
resp, err := http.Get(server.URL)
if err != nil {
t.Fatalf("Get: %v", err)
}
checkBody(t, resp, twitterResponse)
}
func checkBody(t *testing.T, r *http.Response, body string) {
b, err := ioutil.ReadAll(r.Body)
if err != nil {
t.Error("reading reponse body: %v, want %q", err, body)
}
if g, w := string(b), body; g != w {
t.Errorf("request body mismatch: got %q, want %q", g, w)
}
}
最佳答案
httptest 进行两种类型的测试:响应和服务器
react 测试:
func TestHeader3D(t *testing.T) {
resp := httptest.NewRecorder()
uri := "/3D/header/?"
path := "/home/test"
unlno := "997225821"
param := make(url.Values)
param["param1"] = []string{path}
param["param2"] = []string{unlno}
req, err := http.NewRequest("GET", uri+param.Encode(), nil)
if err != nil {
t.Fatal(err)
}
http.DefaultServeMux.ServeHTTP(resp, req)
if p, err := ioutil.ReadAll(resp.Body); err != nil {
t.Fail()
} else {
if strings.Contains(string(p), "Error") {
t.Errorf("header response shouldn't return error: %s", p)
} else if !strings.Contains(string(p), `expected result`) {
t.Errorf("header response doen't match:\n%s", p)
}
}
}
服务器测试(这是你需要使用的):
func TestIt(t *testing.T){
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/json")
fmt.Fprintln(w, `{"fake twitter json string"}`)
}))
defer ts.Close()
twitterUrl = ts.URL
c := make(chan *twitterResult)
go retrieveTweets(c)
tweet := <-c
if tweet != expected1 {
t.Fail()
}
tweet = <-c
if tweet != expected2 {
t.Fail()
}
}
顺便说一句,你不需要传入 r 的指针,因为它已经是一个指针。
err = json.Unmarshal(body, r)
编辑:对于我的记录器测试,我可以像这样使用我的 http 处理程序:
handler(resp, req)
但是我的原始代码没有使用默认的多路复用器(而是来自 Gorilla/mux),并且我对多路复用器进行了一些包装,例如插入服务器日志,并添加请求上下文(Gorilla/context),所以我必须从 mux 开始并调用 ServeHTTP
关于http - 如何使用 httptest 在 Go 中测试 http 调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16154999/
如题,什么时候使用httptest.Server和httptest.ResponseRecorder? 在我看来,我还可以使用 httptest.Server 测试我的处理程序以返回正确的响应。我可以
我想知道如何测试用 fasthttp 编写的应用程序使用 httptest package在 Go 的基础库中。 我找到了 this guide这很好地解释了测试,但问题是 httptest 不满足
当您返回 500 服务器错误时,如何使用 httptest 获取错误消息?注册页面在手动测试时有效,所以这似乎是一些管道问题,但我找不到消息是什么。 func TestSignUp(t *testin
我已经用谷歌搜索了所有内容,但找不到任何东西。 我有一个接受 http.Client 的结构,它会发送多个 GET 请求。在我的测试中,我想模拟响应,这样它就不会发送真正的请求。 目前我已经弄清楚如何
在我的处理程序测试中,我多次使用 header 中带有身份验证 token 的测试请求服务模式。为了对此进行抽象,并为自己节省大量行数,我编写了以下函数: func serveTestReq(payl
一段时间以来,我一直在尝试弄清楚如何为使用上下文作为其定义的一部分的处理程序编写单元测试。 例子 func Handler(ctx context.Context, w http.ResponseWr
我的项目文件夹是这样的。它是一个大型 API,我仅将文件分开用于组织用途。 $ tree src/后端/ src/backend/ ├── cats │ ├── cat_test.go │ ├
我有一些看起来像这样的东西: func (client *MyCustomClient) CheckURL(url string, json_response *MyCustomResponseStr
所以这个真的很奇怪,我正在尝试获得呈现 JSON 的模拟响应。我的测试看起来像这样: import ( "fmt" "net/http" "net/http/httptest"
我目前在我的 LAMP 服务器上设置了一个域,我想添加另一个域。我尝试自己做,但是当我遇到问题时,我遵循 this . 我设置了 example.com,它工作正常,所有流量都会重定向到它的 http
我正在创建一个请求 stub ,以便将其传递给被测试的函数: request := httptest.NewRequest("GET", "http://example.com/foo", nil)
我正在尝试这段 Go 代码 package main import ( "github.com/gorilla/mux" "io" "log" "net/http" )
我喜欢在某些情况下将缓冲的 net/http.ResponseWriter 呈现为 net/http.Response 的能力 net/http/httptest.ResponseRecorder会给
我想知道 this (httptest) 包可用于测试 HTTP/2 特定功能。 谁能给我举一些例子吗? 我知道该工具 h2i ,但它是一个交互式工具。 我正在寻找可编程的东西。 编辑: 我真正想要的
我正在尝试测试我编写的与外部 API 对话的库。我想出了这段代码: import ( "fmt" "net/http" "net/http/httptest" "net
我对 Golang 还是个新手。你对如何在你的 Go 测试文件中有效地创建多个 httptest.NewRequest 有什么想法吗?通常我发起一个新变量两个创建新请求。 例如: r1 := http
如何在隔离单元测试中使用httptest或http包模拟服务器故障? 详细信息: 我一直在使用 gorilla websockets,所以 mt, msg, err := t.conn.ReadMes
我有以下代码: package main import ( "encoding/json" "fmt" "io/ioutil" "log" "net/http"
使用这个 curl 命令,我可以在后端创建零件。请求已成功验证。curl -XPOST -H"Content-Type: application/json" localhost:8080/v1/par
当使用下面的 httptest 服务器测试 https url 的获取请求时,我得到了 http: 服务器给 Golang httptest 中的 HTTPS 客户端的 HTTP 响应。当我使用以“h
我是一名优秀的程序员,十分优秀!