blob: 4b3002f15bee608324ae3e748000d947a215dc21 [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 Ondrejicka85396a52023-02-28 12:49:43 +01008 "text/template"
Maros Ondrejicka11a03e92022-12-01 09:56:37 +01009
10 "github.com/edwarnicke/exechelper"
11)
12
Maros Ondrejickaa2d52622023-02-24 11:26:39 +010013const (
14 logDir string = "/tmp/hs-test/"
15)
16
Maros Ondrejicka7550dd22023-02-07 20:40:27 +010017var (
18 workDir, _ = os.Getwd()
19)
20
Maros Ondrejicka0e79abb2022-12-06 19:46:24 +010021type Volume struct {
Maros Ondrejickaffa3f602023-01-26 10:07:29 +010022 hostDir string
23 containerDir string
24 isDefaultWorkDir bool
Maros Ondrejicka0e79abb2022-12-06 19:46:24 +010025}
26
27type Container struct {
Maros Ondrejickaffa3f602023-01-26 10:07:29 +010028 suite *HstSuite
Filip Tehlar3f951432023-01-13 21:33:43 +010029 isOptional bool
30 name string
31 image string
Filip Tehlar3f951432023-01-13 21:33:43 +010032 extraRunningArgs string
33 volumes map[string]Volume
34 envVars map[string]string
Maros Ondrejickaffa3f602023-01-26 10:07:29 +010035 vppInstance *VppInstance
Maros Ondrejickadb823ed2022-12-14 16:30:04 +010036}
37
38func NewContainer(yamlInput ContainerConfig) (*Container, error) {
39 containerName := yamlInput["name"].(string)
40 if len(containerName) == 0 {
41 err := fmt.Errorf("container name must not be blank")
42 return nil, err
43 }
44
45 var container = new(Container)
46 container.volumes = make(map[string]Volume)
47 container.envVars = make(map[string]string)
48 container.name = containerName
49
50 if image, ok := yamlInput["image"]; ok {
51 container.image = image.(string)
52 } else {
53 container.image = "hs-test/vpp"
54 }
55
Filip Tehlar3f951432023-01-13 21:33:43 +010056 if args, ok := yamlInput["extra-args"]; ok {
57 container.extraRunningArgs = args.(string)
58 } else {
59 container.extraRunningArgs = ""
60 }
61
Maros Ondrejickadb823ed2022-12-14 16:30:04 +010062 if isOptional, ok := yamlInput["is-optional"]; ok {
63 container.isOptional = isOptional.(bool)
64 } else {
65 container.isOptional = false
66 }
67
68 if _, ok := yamlInput["volumes"]; ok {
Filip Tehlarf3ee2b62023-01-09 12:07:09 +010069 r := strings.NewReplacer("$HST_DIR", workDir)
Maros Ondrejickadb823ed2022-12-14 16:30:04 +010070 for _, volu := range yamlInput["volumes"].([]interface{}) {
71 volumeMap := volu.(ContainerConfig)
72 hostDir := r.Replace(volumeMap["host-dir"].(string))
73 containerDir := volumeMap["container-dir"].(string)
Maros Ondrejickaffa3f602023-01-26 10:07:29 +010074 isDefaultWorkDir := false
Maros Ondrejickadb823ed2022-12-14 16:30:04 +010075
Maros Ondrejickaffa3f602023-01-26 10:07:29 +010076 if isDefault, ok := volumeMap["is-default-work-dir"]; ok {
77 isDefaultWorkDir = isDefault.(bool)
Maros Ondrejickadb823ed2022-12-14 16:30:04 +010078 }
79
Maros Ondrejickaffa3f602023-01-26 10:07:29 +010080 container.addVolume(hostDir, containerDir, isDefaultWorkDir)
81
Maros Ondrejickadb823ed2022-12-14 16:30:04 +010082 }
83 }
84
85 if _, ok := yamlInput["vars"]; ok {
86 for _, envVar := range yamlInput["vars"].([]interface{}) {
Maros Ondrejickaffa3f602023-01-26 10:07:29 +010087 envVarMap := envVar.(ContainerConfig)
88 name := envVarMap["name"].(string)
89 value := envVarMap["value"].(string)
90 container.addEnvVar(name, value)
Maros Ondrejickadb823ed2022-12-14 16:30:04 +010091 }
92 }
93 return container, nil
Maros Ondrejicka11a03e92022-12-01 09:56:37 +010094}
95
Maros Ondrejicka2908f8c2023-02-02 08:58:04 +010096func (c *Container) Suite() *HstSuite {
97 return c.suite
98}
99
Maros Ondrejickaffa3f602023-01-26 10:07:29 +0100100func (c *Container) getWorkDirVolume() (res Volume, exists bool) {
101 for _, v := range c.volumes {
102 if v.isDefaultWorkDir {
103 res = v
104 exists = true
105 return
106 }
107 }
108 return
109}
110
111func (c *Container) GetHostWorkDir() (res string) {
112 if v, ok := c.getWorkDirVolume(); ok {
113 res = v.hostDir
114 }
115 return
116}
117
118func (c *Container) GetContainerWorkDir() (res string) {
119 if v, ok := c.getWorkDirVolume(); ok {
120 res = v.containerDir
121 }
122 return
123}
124
Maros Ondrejickac2f76f42023-02-27 13:22:45 +0100125func (c *Container) getContainerArguments() string {
126 args := "--cap-add=all --privileged --network host --rm"
127 args += c.getVolumesAsCliOption()
128 args += c.getEnvVarsAsCliOption()
129 args += " --name " + c.name + " " + c.image
Filip Tehlar9abba112023-03-07 10:13:19 +0100130 args += " " + c.extraRunningArgs
Maros Ondrejickac2f76f42023-02-27 13:22:45 +0100131 return args
132}
133
Filip Tehlar9abba112023-03-07 10:13:19 +0100134func (c *Container) create() error {
Maros Ondrejickac2f76f42023-02-27 13:22:45 +0100135 cmd := "docker create " + c.getContainerArguments()
Filip Tehlar9abba112023-03-07 10:13:19 +0100136 c.Suite().log(cmd)
137 return exechelper.Run(cmd)
Maros Ondrejickac2f76f42023-02-27 13:22:45 +0100138}
139
Filip Tehlar9abba112023-03-07 10:13:19 +0100140func (c *Container) start() error {
Maros Ondrejickac2f76f42023-02-27 13:22:45 +0100141 cmd := "docker start " + c.name
Filip Tehlar9abba112023-03-07 10:13:19 +0100142 c.Suite().log(cmd)
143 return exechelper.Run(cmd)
Maros Ondrejicka87531802022-12-19 20:35:27 +0100144}
145
146func (c *Container) run() error {
147 if c.name == "" {
148 return fmt.Errorf("run container failed: name is blank")
149 }
150
Filip Tehlar9abba112023-03-07 10:13:19 +0100151 cmd := "docker run -d " + c.getContainerArguments()
Maros Ondrejickac2f76f42023-02-27 13:22:45 +0100152 c.Suite().log(cmd)
Maros Ondrejicka11a03e92022-12-01 09:56:37 +0100153 err := exechelper.Run(cmd)
154 if err != nil {
Maros Ondrejickadb823ed2022-12-14 16:30:04 +0100155 return fmt.Errorf("container run failed: %s", err)
Maros Ondrejicka11a03e92022-12-01 09:56:37 +0100156 }
157
158 return nil
159}
160
Maros Ondrejickaffa3f602023-01-26 10:07:29 +0100161func (c *Container) addVolume(hostDir string, containerDir string, isDefaultWorkDir bool) {
Maros Ondrejickadb823ed2022-12-14 16:30:04 +0100162 var volume Volume
163 volume.hostDir = hostDir
164 volume.containerDir = containerDir
Maros Ondrejickaffa3f602023-01-26 10:07:29 +0100165 volume.isDefaultWorkDir = isDefaultWorkDir
Maros Ondrejickadb823ed2022-12-14 16:30:04 +0100166 c.volumes[hostDir] = volume
Maros Ondrejicka0e79abb2022-12-06 19:46:24 +0100167}
168
Maros Ondrejickadb823ed2022-12-14 16:30:04 +0100169func (c *Container) getVolumesAsCliOption() string {
170 cliOption := ""
Maros Ondrejicka0e79abb2022-12-06 19:46:24 +0100171
172 if len(c.volumes) > 0 {
173 for _, volume := range c.volumes {
Maros Ondrejickadb823ed2022-12-14 16:30:04 +0100174 cliOption += fmt.Sprintf(" -v %s:%s", volume.hostDir, volume.containerDir)
Maros Ondrejicka0e79abb2022-12-06 19:46:24 +0100175 }
176 }
177
Maros Ondrejickadb823ed2022-12-14 16:30:04 +0100178 return cliOption
179}
180
Maros Ondrejickaffa3f602023-01-26 10:07:29 +0100181func (c *Container) addEnvVar(name string, value string) {
Maros Ondrejickadb823ed2022-12-14 16:30:04 +0100182 c.envVars[name] = value
183}
184
185func (c *Container) getEnvVarsAsCliOption() string {
186 cliOption := ""
187 if len(c.envVars) == 0 {
188 return cliOption
189 }
190
191 for name, value := range c.envVars {
192 cliOption += fmt.Sprintf(" -e %s=%s", name, value)
193 }
194 return cliOption
195}
196
Maros Ondrejickaffa3f602023-01-26 10:07:29 +0100197func (c *Container) newVppInstance(additionalConfig ...Stanza) (*VppInstance, error) {
Maros Ondrejickaffa3f602023-01-26 10:07:29 +0100198 vpp := new(VppInstance)
199 vpp.container = c
Maros Ondrejicka7d7ab102023-02-14 12:56:49 +0100200
201 if len(additionalConfig) > 0 {
202 vpp.additionalConfig = additionalConfig[0]
203 }
Maros Ondrejickaffa3f602023-01-26 10:07:29 +0100204
205 c.vppInstance = vpp
206
207 return vpp, nil
208}
209
210func (c *Container) copy(sourceFileName string, targetFileName string) error {
211 cmd := exec.Command("docker", "cp", sourceFileName, c.name+":"+targetFileName)
212 return cmd.Run()
213}
214
215func (c *Container) createFile(destFileName string, content string) error {
216 f, err := os.CreateTemp("/tmp", "hst-config")
217 if err != nil {
218 return err
219 }
220 defer os.Remove(f.Name())
221
222 if _, err := f.Write([]byte(content)); err != nil {
223 return err
224 }
225 if err := f.Close(); err != nil {
226 return err
227 }
228 c.copy(f.Name(), destFileName)
229 return nil
230}
231
232/*
233 * Executes in detached mode so that the started application can continue to run
234 * without blocking execution of test
235 */
Maros Ondrejicka2908f8c2023-02-02 08:58:04 +0100236func (c *Container) execServer(command string, arguments ...any) {
237 serverCommand := fmt.Sprintf(command, arguments...)
238 containerExecCommand := "docker exec -d" + c.getEnvVarsAsCliOption() +
239 " " + c.name + " " + serverCommand
Maros Ondrejickaa2d52622023-02-24 11:26:39 +0100240 c.Suite().T().Helper()
Maros Ondrejicka2908f8c2023-02-02 08:58:04 +0100241 c.Suite().log(containerExecCommand)
242 c.Suite().assertNil(exechelper.Run(containerExecCommand))
Maros Ondrejickaffa3f602023-01-26 10:07:29 +0100243}
244
Maros Ondrejicka2908f8c2023-02-02 08:58:04 +0100245func (c *Container) exec(command string, arguments ...any) string {
246 cliCommand := fmt.Sprintf(command, arguments...)
247 containerExecCommand := "docker exec" + c.getEnvVarsAsCliOption() +
248 " " + c.name + " " + cliCommand
Maros Ondrejickaa2d52622023-02-24 11:26:39 +0100249 c.Suite().T().Helper()
Maros Ondrejicka2908f8c2023-02-02 08:58:04 +0100250 c.Suite().log(containerExecCommand)
251 byteOutput, err := exechelper.CombinedOutput(containerExecCommand)
252 c.Suite().assertNil(err)
253 return string(byteOutput)
Maros Ondrejickadb823ed2022-12-14 16:30:04 +0100254}
255
Maros Ondrejickaa2d52622023-02-24 11:26:39 +0100256func (c *Container) getLogDirPath() string {
257 testId := c.Suite().getTestId()
258 testName := c.Suite().T().Name()
259 logDirPath := logDir + testName + "/" + testId + "/"
260
261 cmd := exec.Command("mkdir", "-p", logDirPath)
262 if err := cmd.Run(); err != nil {
263 c.Suite().T().Fatalf("mkdir error: %v", err)
264 }
265
266 return logDirPath
267}
268
269func (c *Container) saveLogs() {
270 cmd := exec.Command("docker", "inspect", "--format='{{.State.Status}}'", c.name)
271 if output, _ := cmd.CombinedOutput(); !strings.Contains(string(output), "running") {
272 return
273 }
274
275 testLogFilePath := c.getLogDirPath() + "container-" + c.name + ".log"
276
277 cmd = exec.Command("docker", "logs", "--details", "-t", c.name)
278 output, err := cmd.CombinedOutput()
279 if err != nil {
280 c.Suite().T().Fatalf("fetching logs error: %v", err)
281 }
282
283 f, err := os.Create(testLogFilePath)
284 if err != nil {
285 c.Suite().T().Fatalf("file create error: %v", err)
286 }
287 fmt.Fprintf(f, string(output))
288 f.Close()
289}
290
Maros Ondrejickac2f76f42023-02-27 13:22:45 +0100291func (c *Container) log() string {
292 cmd := "docker logs " + c.name
293 c.Suite().log(cmd)
294 o, err := exechelper.CombinedOutput(cmd)
295 c.Suite().assertNil(err)
296 return string(o)
297}
298
Maros Ondrejicka0e79abb2022-12-06 19:46:24 +0100299func (c *Container) stop() error {
Maros Ondrejickaffa3f602023-01-26 10:07:29 +0100300 if c.vppInstance != nil && c.vppInstance.apiChannel != nil {
Maros Ondrejickaa2d52622023-02-24 11:26:39 +0100301 c.vppInstance.saveLogs()
Maros Ondrejickaffa3f602023-01-26 10:07:29 +0100302 c.vppInstance.disconnect()
303 }
304 c.vppInstance = nil
Maros Ondrejickaa2d52622023-02-24 11:26:39 +0100305 c.saveLogs()
Florin Corasf4fe0162023-01-17 13:02:51 -0800306 return exechelper.Run("docker stop " + c.name + " -t 0")
Maros Ondrejicka0e79abb2022-12-06 19:46:24 +0100307}
Maros Ondrejicka85396a52023-02-28 12:49:43 +0100308
309func (c *Container) createConfig(targetConfigName string, templateName string, values any) {
310 template := template.Must(template.ParseFiles(templateName))
311
312 f, err := os.CreateTemp("/tmp/hs-test/", "hst-config")
313 c.Suite().assertNil(err)
314 defer os.Remove(f.Name())
315
316 err = template.Execute(f, values)
317 c.Suite().assertNil(err)
318
319 err = f.Close()
320 c.Suite().assertNil(err)
321
322 c.copy(f.Name(), targetConfigName)
323}