We believe a good acceptance test suite has the following properties:
- The tests are comprehensible to new team members
- The tests are extendable by non-team members
- The tests describe the intended functioning of the source under test
- The test coverage is discoverable
- Test errors facilitate fixing the error
- The tests may have unit tests
We have two sets of acceptance tests using different testing frameworks.
These are written in Go and use Gingko+Gomega.
# change directory into the "bake" acceptance test directory then run:
go run github.com/onsi/ginkgo/ginkgo
These are written in Go and use godog (a Cucumber test framework).
# from anywhere in the repo you can run:
go test -v --tags acceptance --timeout=1h github.com/pivotal-cf/kiln/internal/acceptance/workflows
Please follow existing style and make sure the acceptance unit tests both in the workflows and in the scenario package pass.