doulu1945 2015-07-28 19:54
浏览 105
已采纳

Golang HTTP集成测试

I have a small service written in Go. I'm already testing it with httptest et al, but, I'm mocking the database and etc...

What I would like to do:

  • Start up the very same server I use in production with an empty database
  • Run tests against it using HTTP
  • Get the coverage of those tests

The empty database part is not a problem, since I made everything configurable via environment variables.

Make requests to it is also not the problem, as it is just standard Go code...

The problem is: I don't know how to start the server in a way that I could measure the coverage of it (and it's sub-packages). Also, the main server code is inside a main function... I don't even know if I can call it from somewhere else (I tried the standard way, but not with reflection and stuff like that).

I'm kind of new using Go, so, this I might be talking nonsense.

  • 写回答

1条回答 默认 最新

  • dongyue1988 2015-07-28 20:05
    关注

    You can start the http server in your test, and make requests against it.

    For more convenience, you can use httptest.Server in the test, and give it your primary http.Handler. The httptest.Server has some methods to better control to start and stop the server, and provides a URL field to give you the local address of the server.

    ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
        fmt.Fprintln(w, "Hello, client")
    }))
    defer ts.Close()
    
    res, err := http.Get(ts.URL)
    if err != nil {
        log.Fatal(err)
    }
    greeting, err := ioutil.ReadAll(res.Body)
    res.Body.Close()
    if err != nil {
        log.Fatal(err)
    }
    
    fmt.Printf("%s", greeting)
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 下图接收小电路,谁知道原理
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度