-
Notifications
You must be signed in to change notification settings - Fork 10
/
containerstructuretest.go
72 lines (56 loc) · 1.4 KB
/
containerstructuretest.go
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
package occam
import (
"bytes"
"fmt"
"github.com/paketo-buildpacks/packit/v2/pexec"
)
type ContainerStructureTest struct {
executable Executable
verbose bool
noColor bool
pull bool
}
func NewContainerStructureTest() ContainerStructureTest {
return ContainerStructureTest{
executable: pexec.NewExecutable("container-structure-test"),
}
}
func (c ContainerStructureTest) WithExecutable(executable Executable) ContainerStructureTest {
c.executable = executable
return c
}
func (c ContainerStructureTest) WithVerbose() ContainerStructureTest {
c.verbose = true
return c
}
func (c ContainerStructureTest) WithNoColor() ContainerStructureTest {
c.noColor = true
return c
}
func (c ContainerStructureTest) WithPull() ContainerStructureTest {
c.pull = true
return c
}
func (r ContainerStructureTest) Execute(imageID string, config string) (string, error) {
args := []string{"test"}
if r.verbose {
args = append(args, "--verbosity", "debug")
}
if r.noColor {
args = append(args, "--no-color")
}
if r.pull {
args = append(args, "--pull")
}
args = append(args, "--config", config, "--image", imageID)
log := bytes.NewBuffer(nil)
err := r.executable.Execute(pexec.Execution{
Args: args,
Stdout: log,
Stderr: log,
})
if err != nil {
return log.String(), fmt.Errorf("failed to run container-structure-test: %w\n\nOutput:\n%s", err, log)
}
return log.String(), nil
}