File: container.go

package info (click to toggle)
docker.io 28.5.2%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 69,048 kB
  • sloc: sh: 5,867; makefile: 863; ansic: 184; python: 162; asm: 159
file content (88 lines) | stat: -rw-r--r-- 1,967 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
package builders

import (
	"time"

	"github.com/docker/docker/api/types/container"
)

// Container creates a container with default values.
// Any number of container function builder can be passed to augment it.
func Container(name string, builders ...func(c *container.Summary)) *container.Summary {
	// now := time.Now()
	// onehourago := now.Add(-120 * time.Minute)
	ctr := &container.Summary{
		ID:      "container_id",
		Names:   []string{"/" + name},
		Command: "top",
		Image:   "busybox:latest",
		Status:  "Up 1 minute",
		Created: time.Now().Add(-1 * time.Minute).Unix(),
	}

	for _, builder := range builders {
		builder(ctr)
	}

	return ctr
}

// WithLabel adds a label to the container
func WithLabel(key, value string) func(*container.Summary) {
	return func(c *container.Summary) {
		if c.Labels == nil {
			c.Labels = map[string]string{}
		}
		c.Labels[key] = value
	}
}

// WithName adds a name to the container
func WithName(name string) func(*container.Summary) {
	return func(c *container.Summary) {
		c.Names = append(c.Names, "/"+name)
	}
}

// WithPort adds a port mapping to the container
func WithPort(privatePort, publicPort uint16, builders ...func(*container.Port)) func(*container.Summary) {
	return func(c *container.Summary) {
		if c.Ports == nil {
			c.Ports = []container.Port{}
		}
		port := &container.Port{
			PrivatePort: privatePort,
			PublicPort:  publicPort,
		}
		for _, builder := range builders {
			builder(port)
		}
		c.Ports = append(c.Ports, *port)
	}
}

// WithSize adds size in bytes to the container
func WithSize(size int64) func(*container.Summary) {
	return func(c *container.Summary) {
		if size >= 0 {
			c.SizeRw = size
		}
	}
}

// IP sets the ip of the port
func IP(ip string) func(*container.Port) {
	return func(p *container.Port) {
		p.IP = ip
	}
}

// TCP sets the port to tcp
func TCP(p *container.Port) {
	p.Type = "tcp"
}

// UDP sets the port to udp
func UDP(p *container.Port) {
	p.Type = "udp"
}