blob: 4087d85194511d7c8b078f4c9bc0798a25d841c5 [file] [log] [blame]
Maros Ondrejicka11a03e92022-12-01 09:56:37 +01001package main
2
3import (
4 "fmt"
Maros Ondrejickadb823ed2022-12-14 16:30:04 +01005 "os"
Maros Ondrejickaffa3f602023-01-26 10:07:29 +01006 "os/exec"
Maros Ondrejickadb823ed2022-12-14 16:30:04 +01007 "strings"
Maros Ondrejicka11a03e92022-12-01 09:56:37 +01008
9 "github.com/edwarnicke/exechelper"
10)
11
Maros Ondrejicka7550dd22023-02-07 20:40:27 +010012var (
13 workDir, _ = os.Getwd()
14)
15
Maros Ondrejicka0e79abb2022-12-06 19:46:24 +010016type Volume struct {
Maros Ondrejickaffa3f602023-01-26 10:07:29 +010017 hostDir string
18 containerDir string
19 isDefaultWorkDir bool
Maros Ondrejicka0e79abb2022-12-06 19:46:24 +010020}
21
22type Container struct {
Maros Ondrejickaffa3f602023-01-26 10:07:29 +010023 suite *HstSuite
Filip Tehlar3f951432023-01-13 21:33:43 +010024 isOptional bool
25 name string
26 image string
Filip Tehlar3f951432023-01-13 21:33:43 +010027 extraRunningArgs string
28 volumes map[string]Volume
29 envVars map[string]string
Maros Ondrejickaffa3f602023-01-26 10:07:29 +010030 vppInstance *VppInstance
Maros Ondrejickadb823ed2022-12-14 16:30:04 +010031}
32
33func NewContainer(yamlInput ContainerConfig) (*Container, error) {
34 containerName := yamlInput["name"].(string)
35 if len(containerName) == 0 {
36 err := fmt.Errorf("container name must not be blank")
37 return nil, err
38 }
39
40 var container = new(Container)
41 container.volumes = make(map[string]Volume)
42 container.envVars = make(map[string]string)
43 container.name = containerName
44
45 if image, ok := yamlInput["image"]; ok {
46 container.image = image.(string)
47 } else {
48 container.image = "hs-test/vpp"
49 }
50
Filip Tehlar3f951432023-01-13 21:33:43 +010051 if args, ok := yamlInput["extra-args"]; ok {
52 container.extraRunningArgs = args.(string)
53 } else {
54 container.extraRunningArgs = ""
55 }
56
Maros Ondrejickadb823ed2022-12-14 16:30:04 +010057 if isOptional, ok := yamlInput["is-optional"]; ok {
58 container.isOptional = isOptional.(bool)
59 } else {
60 container.isOptional = false
61 }
62
63 if _, ok := yamlInput["volumes"]; ok {
Filip Tehlarf3ee2b62023-01-09 12:07:09 +010064 r := strings.NewReplacer("$HST_DIR", workDir)
Maros Ondrejickadb823ed2022-12-14 16:30:04 +010065 for _, volu := range yamlInput["volumes"].([]interface{}) {
66 volumeMap := volu.(ContainerConfig)
67 hostDir := r.Replace(volumeMap["host-dir"].(string))
68 containerDir := volumeMap["container-dir"].(string)
Maros Ondrejickaffa3f602023-01-26 10:07:29 +010069 isDefaultWorkDir := false
Maros Ondrejickadb823ed2022-12-14 16:30:04 +010070
Maros Ondrejickaffa3f602023-01-26 10:07:29 +010071 if isDefault, ok := volumeMap["is-default-work-dir"]; ok {
72 isDefaultWorkDir = isDefault.(bool)
Maros Ondrejickadb823ed2022-12-14 16:30:04 +010073 }
74
Maros Ondrejickaffa3f602023-01-26 10:07:29 +010075 container.addVolume(hostDir, containerDir, isDefaultWorkDir)
76
Maros Ondrejickadb823ed2022-12-14 16:30:04 +010077 }
78 }
79
80 if _, ok := yamlInput["vars"]; ok {
81 for _, envVar := range yamlInput["vars"].([]interface{}) {
Maros Ondrejickaffa3f602023-01-26 10:07:29 +010082 envVarMap := envVar.(ContainerConfig)
83 name := envVarMap["name"].(string)
84 value := envVarMap["value"].(string)
85 container.addEnvVar(name, value)
Maros Ondrejickadb823ed2022-12-14 16:30:04 +010086 }
87 }
88 return container, nil
Maros Ondrejicka11a03e92022-12-01 09:56:37 +010089}
90
Maros Ondrejicka2908f8c2023-02-02 08:58:04 +010091func (c *Container) Suite() *HstSuite {
92 return c.suite
93}
94
Maros Ondrejickaffa3f602023-01-26 10:07:29 +010095func (c *Container) getWorkDirVolume() (res Volume, exists bool) {
96 for _, v := range c.volumes {
97 if v.isDefaultWorkDir {
98 res = v
99 exists = true
100 return
101 }
102 }
103 return
104}
105
106func (c *Container) GetHostWorkDir() (res string) {
107 if v, ok := c.getWorkDirVolume(); ok {
108 res = v.hostDir
109 }
110 return
111}
112
113func (c *Container) GetContainerWorkDir() (res string) {
114 if v, ok := c.getWorkDirVolume(); ok {
115 res = v.containerDir
116 }
117 return
118}
119
Maros Ondrejicka87531802022-12-19 20:35:27 +0100120func (c *Container) getRunCommand() string {
Maros Ondrejickadb823ed2022-12-14 16:30:04 +0100121 cmd := "docker run --cap-add=all -d --privileged --network host --rm"
Maros Ondrejickadb823ed2022-12-14 16:30:04 +0100122 cmd += c.getVolumesAsCliOption()
123 cmd += c.getEnvVarsAsCliOption()
Filip Tehlar3f951432023-01-13 21:33:43 +0100124 cmd += " --name " + c.name + " " + c.image + " " + c.extraRunningArgs
Maros Ondrejicka87531802022-12-19 20:35:27 +0100125 return cmd
126}
127
128func (c *Container) run() error {
129 if c.name == "" {
130 return fmt.Errorf("run container failed: name is blank")
131 }
132
Maros Ondrejicka87531802022-12-19 20:35:27 +0100133 cmd := c.getRunCommand()
Maros Ondrejicka11a03e92022-12-01 09:56:37 +0100134 err := exechelper.Run(cmd)
135 if err != nil {
Maros Ondrejickadb823ed2022-12-14 16:30:04 +0100136 return fmt.Errorf("container run failed: %s", err)
Maros Ondrejicka11a03e92022-12-01 09:56:37 +0100137 }
138
139 return nil
140}
141
Maros Ondrejickaffa3f602023-01-26 10:07:29 +0100142func (c *Container) addVolume(hostDir string, containerDir string, isDefaultWorkDir bool) {
Maros Ondrejickadb823ed2022-12-14 16:30:04 +0100143 var volume Volume
144 volume.hostDir = hostDir
145 volume.containerDir = containerDir
Maros Ondrejickaffa3f602023-01-26 10:07:29 +0100146 volume.isDefaultWorkDir = isDefaultWorkDir
Maros Ondrejickadb823ed2022-12-14 16:30:04 +0100147 c.volumes[hostDir] = volume
Maros Ondrejicka0e79abb2022-12-06 19:46:24 +0100148}
149
Maros Ondrejickadb823ed2022-12-14 16:30:04 +0100150func (c *Container) getVolumesAsCliOption() string {
151 cliOption := ""
Maros Ondrejicka0e79abb2022-12-06 19:46:24 +0100152
153 if len(c.volumes) > 0 {
154 for _, volume := range c.volumes {
Maros Ondrejickadb823ed2022-12-14 16:30:04 +0100155 cliOption += fmt.Sprintf(" -v %s:%s", volume.hostDir, volume.containerDir)
Maros Ondrejicka0e79abb2022-12-06 19:46:24 +0100156 }
157 }
158
Maros Ondrejickadb823ed2022-12-14 16:30:04 +0100159 return cliOption
160}
161
Maros Ondrejickaffa3f602023-01-26 10:07:29 +0100162func (c *Container) addEnvVar(name string, value string) {
Maros Ondrejickadb823ed2022-12-14 16:30:04 +0100163 c.envVars[name] = value
164}
165
166func (c *Container) getEnvVarsAsCliOption() string {
167 cliOption := ""
168 if len(c.envVars) == 0 {
169 return cliOption
170 }
171
172 for name, value := range c.envVars {
173 cliOption += fmt.Sprintf(" -e %s=%s", name, value)
174 }
175 return cliOption
176}
177
Maros Ondrejickaffa3f602023-01-26 10:07:29 +0100178func (c *Container) newVppInstance(additionalConfig ...Stanza) (*VppInstance, error) {
Maros Ondrejickaffa3f602023-01-26 10:07:29 +0100179 vpp := new(VppInstance)
180 vpp.container = c
Maros Ondrejicka7d7ab102023-02-14 12:56:49 +0100181
182 if len(additionalConfig) > 0 {
183 vpp.additionalConfig = additionalConfig[0]
184 }
Maros Ondrejickaffa3f602023-01-26 10:07:29 +0100185
186 c.vppInstance = vpp
187
188 return vpp, nil
189}
190
191func (c *Container) copy(sourceFileName string, targetFileName string) error {
192 cmd := exec.Command("docker", "cp", sourceFileName, c.name+":"+targetFileName)
193 return cmd.Run()
194}
195
196func (c *Container) createFile(destFileName string, content string) error {
197 f, err := os.CreateTemp("/tmp", "hst-config")
198 if err != nil {
199 return err
200 }
201 defer os.Remove(f.Name())
202
203 if _, err := f.Write([]byte(content)); err != nil {
204 return err
205 }
206 if err := f.Close(); err != nil {
207 return err
208 }
209 c.copy(f.Name(), destFileName)
210 return nil
211}
212
213/*
214 * Executes in detached mode so that the started application can continue to run
215 * without blocking execution of test
216 */
Maros Ondrejicka2908f8c2023-02-02 08:58:04 +0100217func (c *Container) execServer(command string, arguments ...any) {
218 serverCommand := fmt.Sprintf(command, arguments...)
219 containerExecCommand := "docker exec -d" + c.getEnvVarsAsCliOption() +
220 " " + c.name + " " + serverCommand
221 c.Suite().log(containerExecCommand)
222 c.Suite().assertNil(exechelper.Run(containerExecCommand))
Maros Ondrejickaffa3f602023-01-26 10:07:29 +0100223}
224
Maros Ondrejicka2908f8c2023-02-02 08:58:04 +0100225func (c *Container) exec(command string, arguments ...any) string {
226 cliCommand := fmt.Sprintf(command, arguments...)
227 containerExecCommand := "docker exec" + c.getEnvVarsAsCliOption() +
228 " " + c.name + " " + cliCommand
229 c.Suite().log(containerExecCommand)
230 byteOutput, err := exechelper.CombinedOutput(containerExecCommand)
231 c.Suite().assertNil(err)
232 return string(byteOutput)
Maros Ondrejickadb823ed2022-12-14 16:30:04 +0100233}
234
Maros Ondrejicka0e79abb2022-12-06 19:46:24 +0100235func (c *Container) stop() error {
Maros Ondrejickaffa3f602023-01-26 10:07:29 +0100236 if c.vppInstance != nil && c.vppInstance.apiChannel != nil {
237 c.vppInstance.disconnect()
238 }
239 c.vppInstance = nil
Florin Corasf4fe0162023-01-17 13:02:51 -0800240 return exechelper.Run("docker stop " + c.name + " -t 0")
Maros Ondrejicka0e79abb2022-12-06 19:46:24 +0100241}