Documentation ¶
Index ¶
- Constants
- Variables
- func DockerIncompatible(t testing.TB)
- func GetDaemonIsKillable() bool
- func GetTarget() string
- func Identifier(t testing.TB) string
- func M(m *testing.M)
- func RequireExecPlatform(t testing.TB, ss ...string)
- func RequiresBuild(t testing.TB)
- func WithStdin(r io.Reader) func(*Cmd)
- type Base
- func (b *Base) Cmd(args ...string) *Cmd
- func (b *Base) CmdWithHelper(helper []string, args ...string) *Cmd
- func (b *Base) ComposeCmd(args ...string) *Cmd
- func (b *Base) DumpDaemonLogs(minutes int)
- func (b *Base) EnsureDaemonActive()
- func (b *Base) Info() dockercompat.Info
- func (b *Base) InspectContainer(name string) dockercompat.Container
- func (b *Base) InspectImage(name string) dockercompat.Image
- func (b *Base) InspectNetwork(name string) dockercompat.Network
- func (b *Base) InspectVolume(name string) native.Volume
- func (b *Base) KillDaemon()
- type Cmd
- func (c *Cmd) Assert(expected icmd.Expected)
- func (c *Cmd) AssertExitCode(exitCode int)
- func (c *Cmd) AssertFail()
- func (c *Cmd) AssertNoOut(s string)
- func (c *Cmd) AssertOK()
- func (c *Cmd) AssertOutContains(s string)
- func (c *Cmd) AssertOutExactly(s string)
- func (c *Cmd) AssertOutNotContains(s string)
- func (c *Cmd) AssertOutWithFunc(fn func(stdout string) error)
- func (c *Cmd) CmdOption(cmdOptions ...func(*Cmd)) *Cmd
- func (c *Cmd) Out() string
- func (c *Cmd) OutLines() []string
- func (c *Cmd) Run() *icmd.Result
- type ComposeDir
- type Target
Constants ¶
View Source
const ( Nerdctl = Target("nerdctl") Docker = Target("docker") )
View Source
const (
FedoraESGZImage = "ghcr.io/stargz-containers/fedora:30-esgz" // eStargz
)
View Source
const Namespace = "nerdctl-test"
Variables ¶
View Source
var ( AlpineImage = mirrorOf("alpine:3.13") NginxAlpineImage = mirrorOf("nginx:1.19-alpine") NginxAlpineIndexHTMLSnippet = "<title>Welcome to nginx!</title>" RegistryImage = mirrorOf("registry:2") WordpressImage = mirrorOf("wordpress:5.7") WordpressIndexHTMLSnippet = "<title>WordPress › Installation</title>" MariaDBImage = mirrorOf("mariadb:10.5") DockerAuthImage = mirrorOf("cesanta/docker_auth:1.7") CommonImage = AlpineImage )
Functions ¶
func DockerIncompatible ¶
func GetDaemonIsKillable ¶
func GetDaemonIsKillable() bool
func Identifier ¶ added in v0.16.0
Identifier can be used as a name of container, image, volume, network, etc.
func RequireExecPlatform ¶ added in v0.13.0
func RequiresBuild ¶
Types ¶
type Base ¶
type Base struct { T testing.TB Target Target DaemonIsKillable bool Binary string ComposeBinary string // "docker-compose" Args []string Env []string }
func (*Base) ComposeCmd ¶ added in v0.8.0
ComposeCmd executes `nerdctl -n nerdctl-test compose` or `docker-compose`
func (*Base) DumpDaemonLogs ¶ added in v0.15.0
func (*Base) EnsureDaemonActive ¶
func (b *Base) EnsureDaemonActive()
func (*Base) Info ¶ added in v0.7.3
func (b *Base) Info() dockercompat.Info
func (*Base) InspectContainer ¶
func (b *Base) InspectContainer(name string) dockercompat.Container
func (*Base) InspectImage ¶ added in v0.9.0
func (b *Base) InspectImage(name string) dockercompat.Image
func (*Base) InspectNetwork ¶ added in v0.11.0
func (b *Base) InspectNetwork(name string) dockercompat.Network
func (*Base) InspectVolume ¶ added in v0.11.0
func (*Base) KillDaemon ¶
func (b *Base) KillDaemon()
type Cmd ¶
func (*Cmd) AssertExitCode ¶
func (*Cmd) AssertFail ¶
func (c *Cmd) AssertFail()
func (*Cmd) AssertNoOut ¶
func (*Cmd) AssertOutContains ¶ added in v0.8.1
func (*Cmd) AssertOutExactly ¶ added in v0.13.0
func (*Cmd) AssertOutNotContains ¶ added in v0.16.1
func (*Cmd) AssertOutWithFunc ¶
type ComposeDir ¶ added in v0.8.0
type ComposeDir struct {
// contains filtered or unexported fields
}
func NewComposeDir ¶ added in v0.8.0
func NewComposeDir(t testing.TB, dockerComposeYAML string) *ComposeDir
func (*ComposeDir) CleanUp ¶ added in v0.8.0
func (cd *ComposeDir) CleanUp()
func (*ComposeDir) Dir ¶ added in v0.17.0
func (cd *ComposeDir) Dir() string
func (*ComposeDir) ProjectName ¶ added in v0.8.0
func (cd *ComposeDir) ProjectName() string
func (*ComposeDir) WriteFile ¶ added in v0.8.0
func (cd *ComposeDir) WriteFile(name, content string)
func (*ComposeDir) YAMLFullPath ¶ added in v0.8.0
func (cd *ComposeDir) YAMLFullPath() string
Click to show internal directories.
Click to hide internal directories.