test

package
v1.30.0 Latest Latest
Warning

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

Go to latest
Published: Nov 13, 2018 License: BSD-2-Clause Imports: 4 Imported by: 0

Documentation

Index

Constants

View Source
const CharsetKeyInitial = test.CharsetAlphaNumeric
View Source
const CharsetKeyRemaining = CharsetKeyInitial + "._-"

Variables

This section is empty.

Functions

func RandomKey

func RandomKey() string

func RandomKeySegment

func RandomKeySegment() string

Types

type DeleteInput

type DeleteInput struct {
	Context context.Context
	Key     string
}

type DeleteOutput

type DeleteOutput struct {
	Deleted bool
	Error   error
}

type ExistsInput

type ExistsInput struct {
	Context context.Context
	Key     string
}

type ExistsOutput

type ExistsOutput struct {
	Exists bool
	Error  error
}

type GetInput

type GetInput struct {
	Context context.Context
	Key     string
}

type GetOutput

type GetOutput struct {
	Reader io.ReadCloser
	Error  error
}

type PutInput

type PutInput struct {
	Context context.Context
	Key     string
	Reader  io.Reader
}

type Store

type Store struct {
	ExistsInvocations int
	ExistsInputs      []ExistsInput
	ExistsStub        func(ctx context.Context, key string) (bool, error)
	ExistsOutputs     []ExistsOutput
	ExistsOutput      *ExistsOutput
	PutInvocations    int
	PutInputs         []PutInput
	PutStub           func(ctx context.Context, key string, reader io.Reader) error
	PutOutputs        []error
	PutOutput         *error
	GetInvocations    int
	GetInputs         []GetInput
	GetStub           func(ctx context.Context, key string) (io.ReadCloser, error)
	GetOutputs        []GetOutput
	GetOutput         *GetOutput
	DeleteInvocations int
	DeleteInputs      []DeleteInput
	DeleteStub        func(ctx context.Context, key string) (bool, error)
	DeleteOutputs     []DeleteOutput
	DeleteOutput      *DeleteOutput
}

func NewStore

func NewStore() *Store

func (*Store) AssertOutputsEmpty

func (s *Store) AssertOutputsEmpty()

func (*Store) Delete

func (s *Store) Delete(ctx context.Context, key string) (bool, error)

func (*Store) Exists

func (s *Store) Exists(ctx context.Context, key string) (bool, error)

func (*Store) Get

func (s *Store) Get(ctx context.Context, key string) (io.ReadCloser, error)

func (*Store) Put

func (s *Store) Put(ctx context.Context, key string, reader io.Reader) error

Jump to

Keyboard shortcuts

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