Documentation ¶
Index ¶
- Constants
- func GetDB(t testing.TB, uri string, opts ...GetDBOption) (db.Database, string)
- func GetDBInstance(pool *dockertest.Pool) (string, func())
- func Must(t testing.TB, err error)
- func MustDo(t testing.TB, what string, err error)
- func NewBlockAdapterByType(t testing.TB, translator block.UploadIDTranslator, blockstoreType string) block.Adapter
- func NewClientFromCreds(logger logging.Logger, accessKeyID string, secretAccessKey string, ...) (*api.ClientWithResponses, error)
- func ParseEndpointURL(logger logging.Logger, endpointURL string) string
- func RandomRune(rand *rand.Rand, num, den int) rune
- func RandomString(rand *rand.Rand, size int) string
- func SetupTestingEnv(params *SetupTestingEnvParams) (logging.Logger, api.ClientWithResponsesInterface, *s3.S3)
- type GetDBOption
- type GetDBOptions
- type SetupTestingEnvParams
- type UploadIDTranslator
Constants ¶
View Source
const ( DBContainerTimeoutSeconds = 60 * 30 // 30 minutes EnvKeyUseBlockAdapter = "USE_BLOCK_ADAPTER" )
Variables ¶
This section is empty.
Functions ¶
func GetDBInstance ¶
func GetDBInstance(pool *dockertest.Pool) (string, func())
func NewBlockAdapterByType ¶
func NewClientFromCreds ¶ added in v0.43.0
func NewClientFromCreds(logger logging.Logger, accessKeyID string, secretAccessKey string, endpointURL string) (*api.ClientWithResponses, error)
Creates a client using the credentials of a user
func ParseEndpointURL ¶ added in v0.43.0
Parses the given endpoint string
func RandomRune ¶ added in v0.51.0
RandomRune returns a random Unicode rune from rand, weighting at least num out of den runes to be ASCII.
func RandomString ¶ added in v0.51.0
RandomString returns a random UTF-8 string of size or almost size bytes from rand. It is weighted towards using many ASCII characters.
func SetupTestingEnv ¶
func SetupTestingEnv(params *SetupTestingEnvParams) (logging.Logger, api.ClientWithResponsesInterface, *s3.S3)
Types ¶
type GetDBOption ¶
type GetDBOption func(options *GetDBOptions)
func WithGetDBApplyDDL ¶
func WithGetDBApplyDDL(apply bool) GetDBOption
type GetDBOptions ¶
type GetDBOptions struct {
ApplyDDL bool
}
type SetupTestingEnvParams ¶
type UploadIDTranslator ¶
type UploadIDTranslator struct { T *testing.T TransMap map[string]string ExpectedID string // contains filtered or unexported fields }
func (*UploadIDTranslator) RemoveUploadID ¶
func (d *UploadIDTranslator) RemoveUploadID(inputUploadID string)
func (*UploadIDTranslator) SetUploadID ¶
func (d *UploadIDTranslator) SetUploadID(uploadID string) string
func (*UploadIDTranslator) TranslateUploadID ¶
func (d *UploadIDTranslator) TranslateUploadID(simulationID string) string
Click to show internal directories.
Click to hide internal directories.