docker

package module
v0.0.1 Latest Latest
Warning

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

Go to latest
Published: May 12, 2024 License: Apache-2.0 Imports: 22 Imported by: 0

README

go-docker-testsuite

Go Report Card Go Reference

Library to run any third-party dependency in Docker on any platform Docker supports The main purpose is to allow runnings integration tests against almost any database or other dependency running right within docker and available via network.

Applications

The test suite provides some of applications, i.e. wrappers for particular docker image, here's the list:

  • MinIO
  • PostgreSQL
  • Redis
  • ScyllaDB

Each application could provide its own interface to interact so please refer to applications package for some examples.

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func DockerIP

func DockerIP() (string, error)

DockerIP returns docker node IP address for further connectivity usage

func NewHostConfig

func NewHostConfig(pb *PortBindings) (*dockerContainer.HostConfig, error)

NewHostConfig creates new HostConfig instance

func RandomPortTCP

func RandomPortTCP() (uint16, error)

RandomPortTCP makes a query to the kernel about free high range IP address NOTE: it have some probability impact so could fail in the really small amount of cases

Types

type Application

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

func NewApplication

func NewApplication(c Container, hooks ...Hook) *Application

type Binding

type Binding struct {
	HostIP   string
	HostPort string
}

Binding reflects a mapping part of the internal & external port of the container

type Container

type Container interface {
	AwaitOutput(ctx context.Context, m Matcher) error
	Close(ctx context.Context) error
	Name() string
	NetworkAttach(networkID string) error
	Ping(ctx context.Context) error
	Run(ctx context.Context) error
	URL(proto Protocol, port uint16) (*HostPort, error)
}

Container exposes interface to control the container runtime

func NewContainer

func NewContainer(name, image string, cmd []string, environment Environment, ports *PortBindings) (Container, error)

New creates new container instance from remote docker image

func NewContainerWithClient

func NewContainerWithClient(cli *client.Client, name, image string, cmd []string, env Environment, ports *PortBindings) (Container, error)

NewContainerWithClient creates new container from remote docker image and allows to pass custom docker.Client instance

type ContainerID

type ContainerID = string

type Environment

type Environment map[string]string

Environment represents the container environment passed into runtime

func NewEnvironment

func NewEnvironment() Environment

NewEnvironment creates new Environment instance

func (Environment) BoolVar

func (e Environment) BoolVar(name string, value bool) Environment

BoolVar sets bool var to the environment

func (Environment) Int16Var

func (e Environment) Int16Var(name string, value int16) Environment

Int16Var sets int16 var to the environment

func (Environment) Int32Var

func (e Environment) Int32Var(name string, value int32) Environment

Int32Var sets int32 var to the environment

func (Environment) Int64Var

func (e Environment) Int64Var(name string, value int64) Environment

Int64Var sets int64 var to the envorinment

func (Environment) Int8Var

func (e Environment) Int8Var(name string, value int8) Environment

Int8Var sets int8 var to the environment

func (Environment) IntVar

func (e Environment) IntVar(name string, value int) Environment

IntVar sets int var to the environment

func (Environment) LogLevelVar

func (e Environment) LogLevelVar(name string, l log.Level) Environment

LogLevelVar sets logrus.Level var to the environment

func (Environment) StringVar

func (e Environment) StringVar(name, value string) Environment

StringVar sets string var to the environment

func (Environment) Uint16Var

func (e Environment) Uint16Var(name string, value uint16) Environment

Uint16Var sets uint16 var to the environment

func (Environment) Uint32Var

func (e Environment) Uint32Var(name string, value uint32) Environment

Uint32Var sets uint32 var to the environment

func (Environment) Uint64Var

func (e Environment) Uint64Var(name string, value uint64) Environment

Uint64Var sets uint64 var to the environment

func (Environment) Uint8Var

func (e Environment) Uint8Var(name string, value uint8) Environment

Uint8Var sets uint8 var to the environment

func (Environment) UintVar

func (e Environment) UintVar(name string, value uint) Environment

UintVar sets uint var to the environent

type Group

type Group interface {
	Run(ctx context.Context) error
	Close(ctx context.Context) error
}

func NewGroup

func NewGroup(name string, apps ...*Application) (Group, error)

func NewGroupWithClient

func NewGroupWithClient(cli *client.Client, name string, apps ...*Application) (Group, error)

type Hook

type Hook func(context.Context, HookType, Container) error

type HookType

type HookType string
const (
	HookTypeBeforeRun   HookType = "before_run"
	HookTypeAfterRun    HookType = "after_run"
	HookTypeBeforeClose HookType = "before_close"
	HookTypeAfterClose  HookType = "after_close"
)

type HostConfigSpec

type HostConfigSpec struct {
	PortBindings map[string][]Binding
}

HostConfigSpec is just a wrapper structure to pass host configuration to the container

type HostPort

type HostPort struct {
	Host string
	Port uint16
}

HostPort allows to return host & port from the URL method

func (*HostPort) String

func (hp *HostPort) String() string

String returns IP:Port pair

type Matcher

type Matcher func(l string) bool

Matcher allows to create any kind of matcher for container outputs

func NewExactMatcher

func NewExactMatcher(s string) Matcher

NewExactMatcher represents exact matcher i.e. the output should be exactly matched (except space chars around the word)

func NewRegexpMatcher

func NewRegexpMatcher(r *regexp.Regexp) Matcher

func NewSubstringMatcher

func NewSubstringMatcher(s string) Matcher

NewSubstringMatcher represents partial matcher

type NetworkID

type NetworkID = string

type PortBindings

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

PortBindings is a full mapping of internal & external docker container ports

func NewPortBindings

func NewPortBindings() *PortBindings

NewPortBindings creates new PortBindings instance

func NewPortBindingsWithTCPPortAllocator

func NewPortBindingsWithTCPPortAllocator(allocator func() (uint16, error)) *PortBindings

NewPortBindingsWithTCPPortAllocator creates new PortBinding instance and allows to pass custom port allocation function

func (*PortBindings) PortDNAT

func (pb *PortBindings) PortDNAT(proto Protocol, port uint16) *PortBindings

PortDNAT adds new port to be exposed from the container

type Protocol

type Protocol string

Protocol to be NAT'ed from the container

const (
	// ProtoTCP ...
	ProtoTCP Protocol = "tcp"

	// ProtoUDP ...
	ProtoUDP Protocol = "udp"
)

func (Protocol) String

func (p Protocol) String() string

String returns the string representation of the protocol

Directories

Path Synopsis
applications

Jump to

Keyboard shortcuts

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