testutil

package
v0.10.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 24, 2019 License: Apache-2.0 Imports: 11 Imported by: 1

Documentation

Index

Constants

View Source
const (

	// NilCloser is a no-op Closer.
	NilCloser = nilCloser(true)
)

Variables

This section is empty.

Functions

func Assert

func Assert(tb testing.TB, condition bool, msg string, v ...interface{})

Assert fails the test if the condition is false.

func DirHash added in v0.10.0

func DirHash(t *testing.T, path string) []byte

DirHash returns a hash of all files attribites and their content within a directory.

func DirSize added in v0.9.0

func DirSize(t *testing.T, path string) int64

DirSize returns the size in bytes of all files in a directory.

func Equals

func Equals(tb testing.TB, exp, act interface{}, msgAndArgs ...interface{})

Equals fails the test if exp is not equal to act.

func NewLogger added in v0.5.0

func NewLogger(t *testing.T) log.Logger

NewLogger returns a gokit compatible Logger which calls t.Log.

func NotEquals added in v0.5.0

func NotEquals(tb testing.TB, exp, act interface{})

NotEquals fails the test if exp is equal to act.

func NotOk

func NotOk(tb testing.TB, err error)

NotOk fails the test if an err is nil.

func Ok

func Ok(tb testing.TB, err error)

Ok fails the test if an err is not nil.

Types

type Closer

type Closer interface {
	// Close reaps the underlying directory and its children. The directory
	// could be deleted by its users already.
	Close()
}

Closer is the interface that wraps the Close method.

func NewCallbackCloser

func NewCallbackCloser(fn func()) Closer

NewCallbackCloser returns a Closer that calls the provided function upon closing.

type T

type T interface {
	Fatal(args ...interface{})
	Fatalf(format string, args ...interface{})
}

T implements the needed methods of testing.TB so that we do not need to actually import testing (which has the side effect of adding all the test flags, which we do not want in non-test binaries even if they make use of these utilities for some reason).

type TemporaryDirectory

type TemporaryDirectory interface {
	Closer

	// Path returns the underlying path for access.
	Path() string
}

TemporaryDirectory models a closeable path for transient POSIX disk activities.

func NewTemporaryDirectory

func NewTemporaryDirectory(name string, t T) (handler TemporaryDirectory)

NewTemporaryDirectory creates a new temporary directory for transient POSIX activities.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL