Documentation ¶
Overview ¶
Package tests contains supporting code for running tests.
Index ¶
Constants ¶
const ( Success = "\u2713" Failed = "\u2717" )
Success and failure markers.
Variables ¶
This section is empty.
Functions ¶
func IntPointer ¶
IntPointer is a helper to get a *int from a int. It is in the tests package because we normally don't want to deal with pointers to basic types but it's useful in some tests.
func NewUnit ¶
func NewUnit(t *testing.T, dbc DBContainer) (*zap.SugaredLogger, *sqlx.DB, func())
[PS] Unit Test NewUnit creates a test database inside a Docker container. It creates the required table structure but the database is otherwise empty. It returns the database to use as well as a function to call at the end of the test.
func StringPointer ¶
StringPointer is a helper to get a *string from a string. It is in the tests package because we normally don't want to deal with pointers to basic types but it's useful in some tests.
Types ¶
type DBContainer ¶
DBContainer provides configuration for a container to run.
type Test ¶
type Test struct { DB *sqlx.DB Log *zap.SugaredLogger Auth *auth.Auth Teardown func() // contains filtered or unexported fields }
======================================================== [PS] Integration Test Test owns state for running and shutting down tests.
func NewIntegration ¶
func NewIntegration(t *testing.T, dbc DBContainer) *Test
NewIntegration creates a database, seeds it, constructs an authenticator.