123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324 |
- package container
- import (
- "strings"
- "github.com/docker/docker/api/types/container"
- "github.com/docker/docker/api/types/mount"
- "github.com/docker/docker/api/types/network"
- "github.com/docker/docker/api/types/strslice"
- "github.com/docker/go-connections/nat"
- ocispec "github.com/opencontainers/image-spec/specs-go/v1"
- )
- // WithName sets the name of the container
- func WithName(name string) func(*TestContainerConfig) {
- return func(c *TestContainerConfig) {
- c.Name = name
- }
- }
- // WithLinks sets the links of the container
- func WithLinks(links ...string) func(*TestContainerConfig) {
- return func(c *TestContainerConfig) {
- c.HostConfig.Links = links
- }
- }
- // WithImage sets the image of the container
- func WithImage(image string) func(*TestContainerConfig) {
- return func(c *TestContainerConfig) {
- c.Config.Image = image
- }
- }
- // WithCmd sets the comannds of the container
- func WithCmd(cmds ...string) func(*TestContainerConfig) {
- return func(c *TestContainerConfig) {
- c.Config.Cmd = strslice.StrSlice(cmds)
- }
- }
- // WithNetworkMode sets the network mode of the container
- func WithNetworkMode(mode string) func(*TestContainerConfig) {
- return func(c *TestContainerConfig) {
- c.HostConfig.NetworkMode = container.NetworkMode(mode)
- }
- }
- // WithExposedPorts sets the exposed ports of the container
- func WithExposedPorts(ports ...string) func(*TestContainerConfig) {
- return func(c *TestContainerConfig) {
- c.Config.ExposedPorts = map[nat.Port]struct{}{}
- for _, port := range ports {
- c.Config.ExposedPorts[nat.Port(port)] = struct{}{}
- }
- }
- }
- // WithTty sets the TTY mode of the container
- func WithTty(tty bool) func(*TestContainerConfig) {
- return func(c *TestContainerConfig) {
- c.Config.Tty = tty
- }
- }
- // WithWorkingDir sets the working dir of the container
- func WithWorkingDir(dir string) func(*TestContainerConfig) {
- return func(c *TestContainerConfig) {
- c.Config.WorkingDir = dir
- }
- }
- // WithMount adds an mount
- func WithMount(m mount.Mount) func(*TestContainerConfig) {
- return func(c *TestContainerConfig) {
- c.HostConfig.Mounts = append(c.HostConfig.Mounts, m)
- }
- }
- // WithVolume sets the volume of the container
- func WithVolume(target string) func(*TestContainerConfig) {
- return func(c *TestContainerConfig) {
- if c.Config.Volumes == nil {
- c.Config.Volumes = map[string]struct{}{}
- }
- c.Config.Volumes[target] = struct{}{}
- }
- }
- // WithBind sets the bind mount of the container
- func WithBind(src, target string) func(*TestContainerConfig) {
- return func(c *TestContainerConfig) {
- c.HostConfig.Binds = append(c.HostConfig.Binds, src+":"+target)
- }
- }
- // WithBindRaw sets the bind mount of the container
- func WithBindRaw(s string) func(*TestContainerConfig) {
- return func(c *TestContainerConfig) {
- c.HostConfig.Binds = append(c.HostConfig.Binds, s)
- }
- }
- // WithTmpfs sets a target path in the container to a tmpfs, with optional options
- // (separated with a colon).
- func WithTmpfs(targetAndOpts string) func(config *TestContainerConfig) {
- return func(c *TestContainerConfig) {
- if c.HostConfig.Tmpfs == nil {
- c.HostConfig.Tmpfs = make(map[string]string)
- }
- target, opts, _ := strings.Cut(targetAndOpts, ":")
- c.HostConfig.Tmpfs[target] = opts
- }
- }
- func WithMacAddress(networkName, mac string) func(config *TestContainerConfig) {
- return func(c *TestContainerConfig) {
- if c.NetworkingConfig.EndpointsConfig == nil {
- c.NetworkingConfig.EndpointsConfig = map[string]*network.EndpointSettings{}
- }
- if v, ok := c.NetworkingConfig.EndpointsConfig[networkName]; !ok || v == nil {
- c.NetworkingConfig.EndpointsConfig[networkName] = &network.EndpointSettings{}
- }
- c.NetworkingConfig.EndpointsConfig[networkName].MacAddress = mac
- }
- }
- // WithIPv4 sets the specified ip for the specified network of the container
- func WithIPv4(networkName, ip string) func(*TestContainerConfig) {
- return func(c *TestContainerConfig) {
- if c.NetworkingConfig.EndpointsConfig == nil {
- c.NetworkingConfig.EndpointsConfig = map[string]*network.EndpointSettings{}
- }
- if v, ok := c.NetworkingConfig.EndpointsConfig[networkName]; !ok || v == nil {
- c.NetworkingConfig.EndpointsConfig[networkName] = &network.EndpointSettings{}
- }
- if c.NetworkingConfig.EndpointsConfig[networkName].IPAMConfig == nil {
- c.NetworkingConfig.EndpointsConfig[networkName].IPAMConfig = &network.EndpointIPAMConfig{}
- }
- c.NetworkingConfig.EndpointsConfig[networkName].IPAMConfig.IPv4Address = ip
- }
- }
- // WithIPv6 sets the specified ip6 for the specified network of the container
- func WithIPv6(networkName, ip string) func(*TestContainerConfig) {
- return func(c *TestContainerConfig) {
- if c.NetworkingConfig.EndpointsConfig == nil {
- c.NetworkingConfig.EndpointsConfig = map[string]*network.EndpointSettings{}
- }
- if v, ok := c.NetworkingConfig.EndpointsConfig[networkName]; !ok || v == nil {
- c.NetworkingConfig.EndpointsConfig[networkName] = &network.EndpointSettings{}
- }
- if c.NetworkingConfig.EndpointsConfig[networkName].IPAMConfig == nil {
- c.NetworkingConfig.EndpointsConfig[networkName].IPAMConfig = &network.EndpointIPAMConfig{}
- }
- c.NetworkingConfig.EndpointsConfig[networkName].IPAMConfig.IPv6Address = ip
- }
- }
- func WithEndpointSettings(nw string, config *network.EndpointSettings) func(*TestContainerConfig) {
- return func(c *TestContainerConfig) {
- if c.NetworkingConfig.EndpointsConfig == nil {
- c.NetworkingConfig.EndpointsConfig = map[string]*network.EndpointSettings{}
- }
- if _, ok := c.NetworkingConfig.EndpointsConfig[nw]; !ok {
- c.NetworkingConfig.EndpointsConfig[nw] = config
- }
- }
- }
- // WithLogDriver sets the log driver to use for the container
- func WithLogDriver(driver string) func(*TestContainerConfig) {
- return func(c *TestContainerConfig) {
- c.HostConfig.LogConfig.Type = driver
- }
- }
- // WithAutoRemove sets the container to be removed on exit
- func WithAutoRemove(c *TestContainerConfig) {
- c.HostConfig.AutoRemove = true
- }
- // WithPidsLimit sets the container's "pids-limit
- func WithPidsLimit(limit *int64) func(*TestContainerConfig) {
- return func(c *TestContainerConfig) {
- if c.HostConfig == nil {
- c.HostConfig = &container.HostConfig{}
- }
- c.HostConfig.PidsLimit = limit
- }
- }
- // WithRestartPolicy sets container's restart policy
- func WithRestartPolicy(policy container.RestartPolicyMode) func(c *TestContainerConfig) {
- return func(c *TestContainerConfig) {
- c.HostConfig.RestartPolicy.Name = policy
- }
- }
- // WithUser sets the user
- func WithUser(user string) func(c *TestContainerConfig) {
- return func(c *TestContainerConfig) {
- c.Config.User = user
- }
- }
- // WithAdditionalGroups sets the additional groups for the container
- func WithAdditionalGroups(groups ...string) func(c *TestContainerConfig) {
- return func(c *TestContainerConfig) {
- c.HostConfig.GroupAdd = groups
- }
- }
- // WithPrivileged sets privileged mode for the container
- func WithPrivileged(privileged bool) func(*TestContainerConfig) {
- return func(c *TestContainerConfig) {
- if c.HostConfig == nil {
- c.HostConfig = &container.HostConfig{}
- }
- c.HostConfig.Privileged = privileged
- }
- }
- // WithCgroupnsMode sets the cgroup namespace mode for the container
- func WithCgroupnsMode(mode string) func(*TestContainerConfig) {
- return func(c *TestContainerConfig) {
- if c.HostConfig == nil {
- c.HostConfig = &container.HostConfig{}
- }
- c.HostConfig.CgroupnsMode = container.CgroupnsMode(mode)
- }
- }
- // WithExtraHost sets the user defined IP:Host mappings in the container's
- // /etc/hosts file
- func WithExtraHost(extraHost string) func(*TestContainerConfig) {
- return func(c *TestContainerConfig) {
- c.HostConfig.ExtraHosts = append(c.HostConfig.ExtraHosts, extraHost)
- }
- }
- // WithPlatform specifies the desired platform the image should have.
- func WithPlatform(p *ocispec.Platform) func(*TestContainerConfig) {
- return func(c *TestContainerConfig) {
- c.Platform = p
- }
- }
- // WithWindowsDevice specifies a Windows Device, ala `--device` on the CLI
- func WithWindowsDevice(device string) func(*TestContainerConfig) {
- return func(c *TestContainerConfig) {
- c.HostConfig.Devices = append(c.HostConfig.Devices, container.DeviceMapping{PathOnHost: device})
- }
- }
- // WithIsolation specifies the isolation technology to apply to the container
- func WithIsolation(isolation container.Isolation) func(*TestContainerConfig) {
- return func(c *TestContainerConfig) {
- c.HostConfig.Isolation = isolation
- }
- }
- // WithConsoleSize sets the initial console size of the container
- func WithConsoleSize(width, height uint) func(*TestContainerConfig) {
- return func(c *TestContainerConfig) {
- c.HostConfig.ConsoleSize = [2]uint{height, width}
- }
- }
- // WithRuntime sets the runtime to use to start the container
- func WithRuntime(name string) func(*TestContainerConfig) {
- return func(c *TestContainerConfig) {
- c.HostConfig.Runtime = name
- }
- }
- // WithCDIDevices sets the CDI devices to use to start the container
- func WithCDIDevices(cdiDeviceNames ...string) func(*TestContainerConfig) {
- return func(c *TestContainerConfig) {
- request := container.DeviceRequest{
- Driver: "cdi",
- DeviceIDs: cdiDeviceNames,
- }
- c.HostConfig.DeviceRequests = append(c.HostConfig.DeviceRequests, request)
- }
- }
- func WithCapability(capabilities ...string) func(*TestContainerConfig) {
- return func(c *TestContainerConfig) {
- c.HostConfig.CapAdd = append(c.HostConfig.CapAdd, capabilities...)
- }
- }
- func WithDropCapability(capabilities ...string) func(*TestContainerConfig) {
- return func(c *TestContainerConfig) {
- c.HostConfig.CapDrop = append(c.HostConfig.CapDrop, capabilities...)
- }
- }
- func WithSecurityOpt(opt string) func(*TestContainerConfig) {
- return func(c *TestContainerConfig) {
- c.HostConfig.SecurityOpt = append(c.HostConfig.SecurityOpt, opt)
- }
- }
- // WithPIDMode sets the PID-mode for the container.
- func WithPIDMode(mode container.PidMode) func(c *TestContainerConfig) {
- return func(c *TestContainerConfig) {
- c.HostConfig.PidMode = mode
- }
- }
- func WithStopSignal(stopSignal string) func(c *TestContainerConfig) {
- return func(c *TestContainerConfig) {
- c.Config.StopSignal = stopSignal
- }
- }
- func WithContainerWideMacAddress(address string) func(c *TestContainerConfig) {
- return func(c *TestContainerConfig) {
- c.Config.MacAddress = address //nolint:staticcheck // ignore SA1019: field is deprecated, but still used on API < v1.44.
- }
- }
|