Go Test It

Go 语言测试库的比较。「Comparison of go lang testing libraries」

Github星跟蹤圖

Go Test It Build Status

Summary from the July presentation: There are a couple of interesting testing libraries in go. "testing" comes with the standard library, and gives only very basic support for asserting facts.

Of the other libraries, I recommend looking at "testify/assert", "zen", and "gocheck". testify/assert is used in conjunction with testing to which it adds a lot of useful assertions, but doesn't change the basics of how a test is written. Zen implements the best version of BDD style testing I have seen in go. Essentially, you write one test into which you embed describes, its, and expects. Like testify/assert "gocheck" comes with many matchers out of the box. Gocheck requires creating a suite struct and uses a non-standard way of running the test methods. Its most useful feature to me are setup and teardown methods to allow tests in a suite to share common code. The shared state can lead to problems with concurrent code.

As far as the other libraries go, check them out to see the different styles. Beware of go-spec: The version tested here, never fails assertions!

So, summary of the summary: if you are just trying to test stuff and need assertions, go with testify/assert. If you want to see and play with BDD for go, use zen.

Slides from my presentation at Denver Gopher's 7/25/2013

Comparison of go lang testing libraries

Libraries in comparison

Libraries in need of addition

  • GoConvey
  • submit a pull request!

Assertions/Matchers

*CollectionContains allows checks for All, Any, Exactly, InOrder, and InPartialOrder

Sample tests

The code to be tested is taken from the cloudfoundry loggregator project. Specifically, we are testing a piece that receives data on a channel and sends it off via UPD. We will be testing that the code sends data, but that it does not send any empty data it might receive.

All the tests are in packages relating to their name within the gotestit package.

Sources

https://code.google.com/p/go-wiki/wiki/Projects#Testing

主要指標

概覽
名稱與所有者shageman/gotestit
主編程語言Go
編程語言Shell (語言數: 2)
平台Linux, Mac, Windows
許可證
所有者活动
創建於2013-07-04 06:38:26
推送於2014-01-19 01:06:07
最后一次提交2014-01-18 17:06:07
發布數0
用户参与
星數157
關注者數7
派生數14
提交數43
已啟用問題?
問題數3
打開的問題數2
拉請求數2
打開的拉請求數0
關閉的拉請求數0
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?