You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

174 lines
10 KiB

  1. ![Ginkgo: A Go BDD Testing Framework](https://onsi.github.io/ginkgo/images/ginkgo.png)
  2. [![Build Status](https://travis-ci.org/onsi/ginkgo.svg?branch=master)](https://travis-ci.org/onsi/ginkgo)
  3. [![test](https://github.com/onsi/ginkgo/workflows/test/badge.svg?branch=master)](https://github.com/onsi/ginkgo/actions?query=workflow%3Atest+branch%3Amaster)
  4. Jump to the [docs](https://onsi.github.io/ginkgo/) | [中文文档](https://ke-chain.github.io/ginkgodoc) to learn more. To start rolling your Ginkgo tests *now* [keep reading](#set-me-up)!
  5. If you have a question, comment, bug report, feature request, etc. please open a GitHub issue, or visit the [Ginkgo Slack channel](https://app.slack.com/client/T029RQSE6/CQQ50BBNW).
  6. # Ginkgo 2.0 is coming soon!
  7. An effort is underway to develop and deliver Ginkgo 2.0. The work is happening in the [v2](https://github.com/onsi/ginkgo/tree/v2) branch and a changelog and migration guide is being maintained on that branch [here](https://github.com/onsi/ginkgo/blob/v2/docs/MIGRATING_TO_V2.md). Issue [#711](https://github.com/onsi/ginkgo/issues/711) is the central place for discussion and links to the original [proposal doc](https://docs.google.com/document/d/1h28ZknXRsTLPNNiOjdHIO-F2toCzq4xoZDXbfYaBdoQ/edit#).
  8. As described in the [changelog](https://github.com/onsi/ginkgo/blob/v2/docs/MIGRATING_TO_V2.md) and [proposal](https://docs.google.com/document/d/1h28ZknXRsTLPNNiOjdHIO-F2toCzq4xoZDXbfYaBdoQ/edit#), Ginkgo 2.0 will clean up the Ginkgo codebase, deprecate and remove some v1 functionality, and add several new much-requested features. To help users get ready for the migration, Ginkgo v1 has started emitting deprecation warnings for features that will no longer be supported with links to documentation for how to migrate away from these features. If you have concerns or comments please chime in on [#711](https://github.com/onsi/ginkgo/issues/711).
  9. The current timeline for completion of 2.0 looks like:
  10. - Early April 2021: first public release of 2.0, deprecation warnings land in v1.
  11. - May 2021: first beta/rc of 2.0 with most new functionality in place.
  12. - June/July 2021: 2.0 ships and fully replaces the 1.x codebase on master.
  13. ## TLDR
  14. Ginkgo builds on Go's `testing` package, allowing expressive [Behavior-Driven Development](https://en.wikipedia.org/wiki/Behavior-driven_development) ("BDD") style tests.
  15. It is typically (and optionally) paired with the [Gomega](https://github.com/onsi/gomega) matcher library.
  16. ```go
  17. Describe("the strings package", func() {
  18. Context("strings.Contains()", func() {
  19. When("the string contains the substring in the middle", func() {
  20. It("returns `true`", func() {
  21. Expect(strings.Contains("Ginkgo is awesome", "is")).To(BeTrue())
  22. })
  23. })
  24. })
  25. })
  26. ```
  27. ## Feature List
  28. - Ginkgo uses Go's `testing` package and can live alongside your existing `testing` tests. It's easy to [bootstrap](https://onsi.github.io/ginkgo/#bootstrapping-a-suite) and start writing your [first tests](https://onsi.github.io/ginkgo/#adding-specs-to-a-suite)
  29. - Ginkgo allows you to write tests in Go using expressive [Behavior-Driven Development](https://en.wikipedia.org/wiki/Behavior-driven_development) ("BDD") style:
  30. - Nestable [`Describe`, `Context` and `When` container blocks](https://onsi.github.io/ginkgo/#organizing-specs-with-containers-describe-and-context)
  31. - [`BeforeEach` and `AfterEach` blocks](https://onsi.github.io/ginkgo/#extracting-common-setup-beforeeach) for setup and teardown
  32. - [`It` and `Specify` blocks](https://onsi.github.io/ginkgo/#individual-specs-it) that hold your assertions
  33. - [`JustBeforeEach` blocks](https://onsi.github.io/ginkgo/#separating-creation-and-configuration-justbeforeeach) that separate creation from configuration (also known as the subject action pattern).
  34. - [`BeforeSuite` and `AfterSuite` blocks](https://onsi.github.io/ginkgo/#global-setup-and-teardown-beforesuite-and-aftersuite) to prep for and cleanup after a suite.
  35. - A comprehensive test runner that lets you:
  36. - Mark specs as [pending](https://onsi.github.io/ginkgo/#pending-specs)
  37. - [Focus](https://onsi.github.io/ginkgo/#focused-specs) individual specs, and groups of specs, either programmatically or on the command line
  38. - Run your tests in [random order](https://onsi.github.io/ginkgo/#spec-permutation), and then reuse random seeds to replicate the same order.
  39. - Break up your test suite into parallel processes for straightforward [test parallelization](https://onsi.github.io/ginkgo/#parallel-specs)
  40. - `ginkgo`: a command line interface with plenty of handy command line arguments for [running your tests](https://onsi.github.io/ginkgo/#running-tests) and [generating](https://onsi.github.io/ginkgo/#generators) test files. Here are a few choice examples:
  41. - `ginkgo -nodes=N` runs your tests in `N` parallel processes and print out coherent output in realtime
  42. - `ginkgo -cover` runs your tests using Go's code coverage tool
  43. - `ginkgo convert` converts an XUnit-style `testing` package to a Ginkgo-style package
  44. - `ginkgo -focus="REGEXP"` and `ginkgo -skip="REGEXP"` allow you to specify a subset of tests to run via regular expression
  45. - `ginkgo -r` runs all tests suites under the current directory
  46. - `ginkgo -v` prints out identifying information for each tests just before it runs
  47. And much more: run `ginkgo help` for details!
  48. The `ginkgo` CLI is convenient, but purely optional -- Ginkgo works just fine with `go test`
  49. - `ginkgo watch` [watches](https://onsi.github.io/ginkgo/#watching-for-changes) packages *and their dependencies* for changes, then reruns tests. Run tests immediately as you develop!
  50. - Built-in support for testing [asynchronicity](https://onsi.github.io/ginkgo/#asynchronous-tests)
  51. - Built-in support for [benchmarking](https://onsi.github.io/ginkgo/#benchmark-tests) your code. Control the number of benchmark samples as you gather runtimes and other, arbitrary, bits of numerical information about your code.
  52. - [Completions for Sublime Text](https://github.com/onsi/ginkgo-sublime-completions): just use [Package Control](https://sublime.wbond.net/) to install `Ginkgo Completions`.
  53. - [Completions for VSCode](https://github.com/onsi/vscode-ginkgo): just use VSCode's extension installer to install `vscode-ginkgo`.
  54. - [Ginkgo tools for VSCode](https://marketplace.visualstudio.com/items?itemName=joselitofilho.ginkgotestexplorer): just use VSCode's extension installer to install `ginkgoTestExplorer`.
  55. - Straightforward support for third-party testing libraries such as [Gomock](https://code.google.com/p/gomock/) and [Testify](https://github.com/stretchr/testify). Check out the [docs](https://onsi.github.io/ginkgo/#third-party-integrations) for details.
  56. - A modular architecture that lets you easily:
  57. - Write [custom reporters](https://onsi.github.io/ginkgo/#writing-custom-reporters) (for example, Ginkgo comes with a [JUnit XML reporter](https://onsi.github.io/ginkgo/#generating-junit-xml-output) and a TeamCity reporter).
  58. - [Adapt an existing matcher library (or write your own!)](https://onsi.github.io/ginkgo/#using-other-matcher-libraries) to work with Ginkgo
  59. ## [Gomega](https://github.com/onsi/gomega): Ginkgo's Preferred Matcher Library
  60. Ginkgo is best paired with Gomega. Learn more about Gomega [here](https://onsi.github.io/gomega/)
  61. ## [Agouti](https://github.com/sclevine/agouti): A Go Acceptance Testing Framework
  62. Agouti allows you run WebDriver integration tests. Learn more about Agouti [here](https://agouti.org)
  63. ## Getting Started
  64. You'll need the Go command-line tools. Follow the [installation instructions](https://golang.org/doc/install) if you don't have it installed.
  65. ### Global installation
  66. To install the Ginkgo command line interface:
  67. ```bash
  68. go get -u github.com/onsi/ginkgo/ginkgo
  69. ```
  70. Note that this will install it to `$GOBIN`, which will need to be in the `$PATH` (or equivalent). Run `go help install` for more information.
  71. ### Go module ["tools package"](https://github.com/golang/go/issues/25922):
  72. Create (or update) a file called `tools/tools.go` with the following contents:
  73. ```go
  74. // +build tools
  75. package tools
  76. import (
  77. _ "github.com/onsi/ginkgo/ginkgo"
  78. )
  79. // This file imports packages that are used when running go generate, or used
  80. // during the development process but not otherwise depended on by built code.
  81. ```
  82. The Ginkgo command can then be run via `go run github.com/onsi/ginkgo/ginkgo`.
  83. This approach allows the version of Ginkgo to be maintained under source control for reproducible results,
  84. and is well suited to automated test pipelines.
  85. ### Bootstrapping
  86. ```bash
  87. cd path/to/package/you/want/to/test
  88. ginkgo bootstrap # set up a new ginkgo suite
  89. ginkgo generate # will create a sample test file. edit this file and add your tests then...
  90. go test # to run your tests
  91. ginkgo # also runs your tests
  92. ```
  93. ## I'm new to Go: What are my testing options?
  94. Of course, I heartily recommend [Ginkgo](https://github.com/onsi/ginkgo) and [Gomega](https://github.com/onsi/gomega). Both packages are seeing heavy, daily, production use on a number of projects and boast a mature and comprehensive feature-set.
  95. With that said, it's great to know what your options are :)
  96. ### What Go gives you out of the box
  97. Testing is a first class citizen in Go, however Go's built-in testing primitives are somewhat limited: The [testing](https://golang.org/pkg/testing) package provides basic XUnit style tests and no assertion library.
  98. ### Matcher libraries for Go's XUnit style tests
  99. A number of matcher libraries have been written to augment Go's built-in XUnit style tests. Here are two that have gained traction:
  100. - [testify](https://github.com/stretchr/testify)
  101. - [gocheck](https://labix.org/gocheck)
  102. You can also use Ginkgo's matcher library [Gomega](https://github.com/onsi/gomega) in [XUnit style tests](https://onsi.github.io/gomega/#using-gomega-with-golangs-xunitstyle-tests)
  103. ### BDD style testing frameworks
  104. There are a handful of BDD-style testing frameworks written for Go. Here are a few:
  105. - [Ginkgo](https://github.com/onsi/ginkgo) ;)
  106. - [GoConvey](https://github.com/smartystreets/goconvey)
  107. - [Goblin](https://github.com/franela/goblin)
  108. - [Mao](https://github.com/azer/mao)
  109. - [Zen](https://github.com/pranavraja/zen)
  110. Finally, @shageman has [put together](https://github.com/shageman/gotestit) a comprehensive comparison of Go testing libraries.
  111. Go explore!
  112. ## License
  113. Ginkgo is MIT-Licensed
  114. ## Contributing
  115. See [CONTRIBUTING.md](CONTRIBUTING.md)