test

package
v1.5.11 Latest Latest
Warning

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

Go to latest
Published: Mar 12, 2024 License: Apache-2.0, MIT Imports: 29 Imported by: 3

Documentation

Overview

Package test offers some common functionalities that are used throughout many different tests in drand.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Addresses

func Addresses(n int) []string

Addresses returns a list of TCP localhost addresses starting from the given port= start.

func BatchIdentities

func BatchIdentities(n int, sch *crypto.Scheme, beaconID string) ([]*key.Pair, *key.Group)

BatchIdentities generates n insecure identities

func BatchTLSIdentities added in v0.3.7

func BatchTLSIdentities(n int, sch *crypto.Scheme, beaconID string) ([]*key.Pair, *key.Group)

BatchTLSIdentities generates n secure (TLS) identities

func ComputeDBName added in v1.5.3

func ComputeDBName() string

ComputeDBName helps generate new, unique database names during the runtime of a test. By adding the time, with milliseconds, we can avoid this, e.g. drand_test_09223736225

func DumpContainerLogs added in v1.5.3

func DumpContainerLogs(id string) []byte

DumpContainerLogs outputs logs from the running docker container.

func FreeBind added in v1.0.0

func FreeBind(a string) string

FreeBind provides an address for binding on provided address

func FreePort

func FreePort() string

FreePort returns an free TCP port. Taken from https://github.com/phayes/freeport/blob/master/freeport.go

func GenerateIDs

func GenerateIDs(n int) []*key.Pair

GenerateIDs returns n keys with random port localhost addresses

func GetBeaconIDFromEnv added in v1.4.6

func GetBeaconIDFromEnv() string

GetBeaconIDFromEnv read beacon id from an environment variable.

func ListFromPrivates

func ListFromPrivates(keys []*key.Pair) []*key.Node

ListFromPrivates returns a list of Identity from a list of Pair keys.

func LocalHost added in v1.0.0

func LocalHost() string

LocalHost returns the default local bind address: e.g. [::] or 127.0.0.1

func LogLevel added in v1.5.3

func LogLevel(t *testing.T) int

LogLevel returns the level to default the logger based on the DRAND_TEST_LOGS presence

func Logger added in v1.5.3

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

Logger returns a configured logger

func NewKeyStore

func NewKeyStore() key.Store

func NewPeer added in v0.3.7

func NewPeer(addr string) net.Peer

NewPeer returns a new net.Peer

func NewTLSPeer added in v0.3.7

func NewTLSPeer(addr string) net.Peer

NewTLSPeer returns a new net.Peer with TLS enabled

func NewUnit added in v1.5.3

func NewUnit(t *testing.T, c *Container, dbName string) (log.Logger, *sqlx.DB)

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 Ports added in v0.4.0

func Ports(n int) []string

Ports returns a list of ports starting from the given port= start. TODO: This function is flaky.

func StopContainer added in v1.5.3

func StopContainer(id string) error

StopContainer stops and removes the specified container.

func StopPGDB added in v1.5.3

func StopPGDB(c *Container)

StopPGDB stops a running database instance.

func StringToPoint added in v0.4.0

func StringToPoint(s string) (kyber.Point, error)

StringToPoint ...

Types

type Container added in v1.5.3

type Container struct {
	ID   string
	Host string // IP:Port
}

Container tracks information about the docker container started for tests.

func StartContainer added in v1.5.3

func StartContainer(image string, port string, args ...string) (*Container, error)

StartContainer starts the specified container for running tests.

func StartPGDB added in v1.5.3

func StartPGDB() (*Container, error)

StartPGDB starts a database instance.

type KeyStore

type KeyStore struct {
	// contains filtered or unexported fields
}

func (*KeyStore) LoadDistPublic

func (k *KeyStore) LoadDistPublic() (*key.DistPublic, error)

func (*KeyStore) LoadGroup

func (k *KeyStore) LoadGroup() (*key.Group, error)

func (*KeyStore) LoadKeyPair added in v0.3.6

func (k *KeyStore) LoadKeyPair(_ *crypto.Scheme) (*key.Pair, error)

func (*KeyStore) LoadShare

func (k *KeyStore) LoadShare(_ *crypto.Scheme) (*key.Share, error)

func (*KeyStore) Reset added in v0.5.2

func (k *KeyStore) Reset(...key.ResetOption) error

func (*KeyStore) SaveDistPublic

func (k *KeyStore) SaveDistPublic(d *key.DistPublic) error

func (*KeyStore) SaveGroup

func (k *KeyStore) SaveGroup(g *key.Group) error

func (*KeyStore) SaveKeyPair added in v0.3.6

func (k *KeyStore) SaveKeyPair(p *key.Pair) error

func (*KeyStore) SaveShare

func (k *KeyStore) SaveShare(share *key.Share) error

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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