storage

package
v0.0.0-...-69db04a Latest Latest
Warning

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

Go to latest
Published: May 4, 2019 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func StorageTestSuite

func StorageTestSuite(t *testing.T, store Storage)

StorageTestSuite define the test suite to ensure storage implementation is valid and compliant with the storage specification.

Types

type ScrollOptions

type ScrollOptions struct {
	PageToken string
	PageSize  int
	OrderBy   *ScrollOrderOptions
}

ScrollOptions contains pagination and order options for scroll.

type ScrollOrderOptions

type ScrollOrderOptions struct {
	Column string
	Order  string
}

ScrollOrderOptions contains order options for scroll.

type Storage

type Storage interface {
	GetPolicy(id string) (*policy.Policy, error)
	PutPolicy(pol *policy.Policy) (*policy.Policy, error)
	DelPolicy(id string) error
	ScrollPolicy(opts *ScrollOptions) ([]*policy.Policy, string, error)
}

Storage define storage interface without any implementation.

Directories

Path Synopsis
Package memorystore contains an in memory implementation of the Judge storage interface.
Package memorystore contains an in memory implementation of the Judge storage interface.

Jump to

Keyboard shortcuts

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