Go Test It

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

Github stars Tracking Chart

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

Main metrics

Overview
Name With Ownershageman/gotestit
Primary LanguageGo
Program languageShell (Language Count: 2)
PlatformLinux, Mac, Windows
License:
所有者活动
Created At2013-07-04 06:38:26
Pushed At2014-01-19 01:06:07
Last Commit At2014-01-18 17:06:07
Release Count0
用户参与
Stargazers Count157
Watchers Count7
Fork Count14
Commits Count43
Has Issues Enabled
Issues Count3
Issue Open Count2
Pull Requests Count2
Pull Requests Open Count0
Pull Requests Close Count0
项目设置
Has Wiki Enabled
Is Archived
Is Fork
Is Locked
Is Mirror
Is Private