Maros Ondrejicka | 11a03e9 | 2022-12-01 09:56:37 +0100 | [diff] [blame] | 1 | package main |
| 2 | |
| 3 | import ( |
| 4 | "fmt" |
Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 5 | "os" |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 6 | "os/exec" |
Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 7 | "strings" |
Maros Ondrejicka | 85396a5 | 2023-02-28 12:49:43 +0100 | [diff] [blame] | 8 | "text/template" |
Filip Tehlar | 4fa0ba6 | 2023-12-06 11:35:11 +0100 | [diff] [blame] | 9 | "time" |
Maros Ondrejicka | 11a03e9 | 2022-12-01 09:56:37 +0100 | [diff] [blame] | 10 | |
| 11 | "github.com/edwarnicke/exechelper" |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 12 | . "github.com/onsi/ginkgo/v2" |
Maros Ondrejicka | 11a03e9 | 2022-12-01 09:56:37 +0100 | [diff] [blame] | 13 | ) |
| 14 | |
Maros Ondrejicka | a2d5262 | 2023-02-24 11:26:39 +0100 | [diff] [blame] | 15 | const ( |
Filip Tehlar | a1bd50c | 2024-01-24 11:59:44 +0100 | [diff] [blame] | 16 | logDir string = "/tmp/hs-test/" |
| 17 | volumeDir string = "/volumes" |
Maros Ondrejicka | a2d5262 | 2023-02-24 11:26:39 +0100 | [diff] [blame] | 18 | ) |
| 19 | |
Maros Ondrejicka | 7550dd2 | 2023-02-07 20:40:27 +0100 | [diff] [blame] | 20 | var ( |
| 21 | workDir, _ = os.Getwd() |
| 22 | ) |
| 23 | |
Maros Ondrejicka | 0e79abb | 2022-12-06 19:46:24 +0100 | [diff] [blame] | 24 | type Volume struct { |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 25 | hostDir string |
| 26 | containerDir string |
| 27 | isDefaultWorkDir bool |
Maros Ondrejicka | 0e79abb | 2022-12-06 19:46:24 +0100 | [diff] [blame] | 28 | } |
| 29 | |
| 30 | type Container struct { |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 31 | suite *HstSuite |
Filip Tehlar | 3f95143 | 2023-01-13 21:33:43 +0100 | [diff] [blame] | 32 | isOptional bool |
Filip Tehlar | b41b0af | 2023-03-20 12:39:20 +0100 | [diff] [blame] | 33 | runDetached bool |
Filip Tehlar | 3f95143 | 2023-01-13 21:33:43 +0100 | [diff] [blame] | 34 | name string |
| 35 | image string |
Filip Tehlar | 3f95143 | 2023-01-13 21:33:43 +0100 | [diff] [blame] | 36 | extraRunningArgs string |
| 37 | volumes map[string]Volume |
| 38 | envVars map[string]string |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 39 | vppInstance *VppInstance |
Adrian Villin | b9464cd | 2024-05-27 09:52:59 -0400 | [diff] [blame] | 40 | allocatedCpus []int |
Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 41 | } |
| 42 | |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 43 | func newContainer(suite *HstSuite, yamlInput ContainerConfig) (*Container, error) { |
Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 44 | containerName := yamlInput["name"].(string) |
| 45 | if len(containerName) == 0 { |
| 46 | err := fmt.Errorf("container name must not be blank") |
| 47 | return nil, err |
| 48 | } |
| 49 | |
| 50 | var container = new(Container) |
| 51 | container.volumes = make(map[string]Volume) |
| 52 | container.envVars = make(map[string]string) |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 53 | container.name = containerName |
Filip Tehlar | a1bd50c | 2024-01-24 11:59:44 +0100 | [diff] [blame] | 54 | container.suite = suite |
Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 55 | |
| 56 | if image, ok := yamlInput["image"]; ok { |
| 57 | container.image = image.(string) |
| 58 | } else { |
| 59 | container.image = "hs-test/vpp" |
| 60 | } |
| 61 | |
Filip Tehlar | 3f95143 | 2023-01-13 21:33:43 +0100 | [diff] [blame] | 62 | if args, ok := yamlInput["extra-args"]; ok { |
| 63 | container.extraRunningArgs = args.(string) |
| 64 | } else { |
| 65 | container.extraRunningArgs = "" |
| 66 | } |
| 67 | |
Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 68 | if isOptional, ok := yamlInput["is-optional"]; ok { |
| 69 | container.isOptional = isOptional.(bool) |
| 70 | } else { |
| 71 | container.isOptional = false |
| 72 | } |
| 73 | |
Filip Tehlar | b41b0af | 2023-03-20 12:39:20 +0100 | [diff] [blame] | 74 | if runDetached, ok := yamlInput["run-detached"]; ok { |
| 75 | container.runDetached = runDetached.(bool) |
| 76 | } else { |
| 77 | container.runDetached = true |
| 78 | } |
| 79 | |
Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 80 | if _, ok := yamlInput["volumes"]; ok { |
Adrian Villin | eaa7d91 | 2024-06-06 04:26:30 -0400 | [diff] [blame^] | 81 | workingVolumeDir := logDir + suite.getCurrentTestName() + volumeDir |
Filip Tehlar | a1bd50c | 2024-01-24 11:59:44 +0100 | [diff] [blame] | 82 | workDirReplacer := strings.NewReplacer("$HST_DIR", workDir) |
| 83 | volDirReplacer := strings.NewReplacer("$HST_VOLUME_DIR", workingVolumeDir) |
Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 84 | for _, volu := range yamlInput["volumes"].([]interface{}) { |
| 85 | volumeMap := volu.(ContainerConfig) |
Filip Tehlar | a1bd50c | 2024-01-24 11:59:44 +0100 | [diff] [blame] | 86 | hostDir := workDirReplacer.Replace(volumeMap["host-dir"].(string)) |
| 87 | hostDir = volDirReplacer.Replace(hostDir) |
Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 88 | containerDir := volumeMap["container-dir"].(string) |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 89 | isDefaultWorkDir := false |
Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 90 | |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 91 | if isDefault, ok := volumeMap["is-default-work-dir"]; ok { |
| 92 | isDefaultWorkDir = isDefault.(bool) |
Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 93 | } |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 94 | container.addVolume(hostDir, containerDir, isDefaultWorkDir) |
Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 95 | } |
| 96 | } |
| 97 | |
| 98 | if _, ok := yamlInput["vars"]; ok { |
| 99 | for _, envVar := range yamlInput["vars"].([]interface{}) { |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 100 | envVarMap := envVar.(ContainerConfig) |
| 101 | name := envVarMap["name"].(string) |
| 102 | value := envVarMap["value"].(string) |
| 103 | container.addEnvVar(name, value) |
Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 104 | } |
| 105 | } |
| 106 | return container, nil |
Maros Ondrejicka | 11a03e9 | 2022-12-01 09:56:37 +0100 | [diff] [blame] | 107 | } |
| 108 | |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 109 | func (c *Container) getWorkDirVolume() (res Volume, exists bool) { |
| 110 | for _, v := range c.volumes { |
| 111 | if v.isDefaultWorkDir { |
| 112 | res = v |
| 113 | exists = true |
| 114 | return |
| 115 | } |
| 116 | } |
| 117 | return |
| 118 | } |
| 119 | |
Maros Ondrejicka | e7625d0 | 2023-02-28 16:55:01 +0100 | [diff] [blame] | 120 | func (c *Container) getHostWorkDir() (res string) { |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 121 | if v, ok := c.getWorkDirVolume(); ok { |
| 122 | res = v.hostDir |
| 123 | } |
| 124 | return |
| 125 | } |
| 126 | |
Maros Ondrejicka | e7625d0 | 2023-02-28 16:55:01 +0100 | [diff] [blame] | 127 | func (c *Container) getContainerWorkDir() (res string) { |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 128 | if v, ok := c.getWorkDirVolume(); ok { |
| 129 | res = v.containerDir |
| 130 | } |
| 131 | return |
| 132 | } |
| 133 | |
Maros Ondrejicka | c2f76f4 | 2023-02-27 13:22:45 +0100 | [diff] [blame] | 134 | func (c *Container) getContainerArguments() string { |
Adrian Villin | eaa7d91 | 2024-06-06 04:26:30 -0400 | [diff] [blame^] | 135 | args := "--ulimit nofile=90000:90000 --cap-add=all --privileged --network host" |
| 136 | c.allocateCpus() |
| 137 | args += fmt.Sprintf(" --cpuset-cpus=\"%d-%d\"", c.allocatedCpus[0], c.allocatedCpus[len(c.allocatedCpus)-1]) |
Maros Ondrejicka | c2f76f4 | 2023-02-27 13:22:45 +0100 | [diff] [blame] | 138 | args += c.getVolumesAsCliOption() |
| 139 | args += c.getEnvVarsAsCliOption() |
Filip Tehlar | 109f3ce | 2023-09-05 15:36:28 +0200 | [diff] [blame] | 140 | if *vppSourceFileDir != "" { |
| 141 | args += fmt.Sprintf(" -v %s:%s", *vppSourceFileDir, *vppSourceFileDir) |
| 142 | } |
Maros Ondrejicka | c2f76f4 | 2023-02-27 13:22:45 +0100 | [diff] [blame] | 143 | args += " --name " + c.name + " " + c.image |
Filip Tehlar | 9abba11 | 2023-03-07 10:13:19 +0100 | [diff] [blame] | 144 | args += " " + c.extraRunningArgs |
Maros Ondrejicka | c2f76f4 | 2023-02-27 13:22:45 +0100 | [diff] [blame] | 145 | return args |
| 146 | } |
| 147 | |
Filip Tehlar | 4fa0ba6 | 2023-12-06 11:35:11 +0100 | [diff] [blame] | 148 | func (c *Container) runWithRetry(cmd string) error { |
| 149 | nTries := 5 |
| 150 | for i := 0; i < nTries; i++ { |
| 151 | err := exechelper.Run(cmd) |
| 152 | if err == nil { |
| 153 | return nil |
| 154 | } |
| 155 | time.Sleep(1 * time.Second) |
| 156 | } |
| 157 | return fmt.Errorf("failed to run container command") |
| 158 | } |
| 159 | |
Filip Tehlar | 9abba11 | 2023-03-07 10:13:19 +0100 | [diff] [blame] | 160 | func (c *Container) create() error { |
Maros Ondrejicka | c2f76f4 | 2023-02-27 13:22:45 +0100 | [diff] [blame] | 161 | cmd := "docker create " + c.getContainerArguments() |
Maros Ondrejicka | e7625d0 | 2023-02-28 16:55:01 +0100 | [diff] [blame] | 162 | c.suite.log(cmd) |
Filip Tehlar | 9abba11 | 2023-03-07 10:13:19 +0100 | [diff] [blame] | 163 | return exechelper.Run(cmd) |
Maros Ondrejicka | c2f76f4 | 2023-02-27 13:22:45 +0100 | [diff] [blame] | 164 | } |
| 165 | |
Adrian Villin | b9464cd | 2024-05-27 09:52:59 -0400 | [diff] [blame] | 166 | func (c *Container) allocateCpus() { |
Adrian Villin | fd366b4 | 2024-05-31 06:46:52 -0400 | [diff] [blame] | 167 | c.suite.startedContainers = append(c.suite.startedContainers, c) |
Adrian Villin | b9464cd | 2024-05-27 09:52:59 -0400 | [diff] [blame] | 168 | c.allocatedCpus = c.suite.AllocateCpus() |
| 169 | c.suite.log("Allocated CPUs " + fmt.Sprint(c.allocatedCpus) + " to container " + c.name) |
| 170 | } |
| 171 | |
Filip Tehlar | 9abba11 | 2023-03-07 10:13:19 +0100 | [diff] [blame] | 172 | func (c *Container) start() error { |
Maros Ondrejicka | c2f76f4 | 2023-02-27 13:22:45 +0100 | [diff] [blame] | 173 | cmd := "docker start " + c.name |
Maros Ondrejicka | e7625d0 | 2023-02-28 16:55:01 +0100 | [diff] [blame] | 174 | c.suite.log(cmd) |
Filip Tehlar | 4fa0ba6 | 2023-12-06 11:35:11 +0100 | [diff] [blame] | 175 | return c.runWithRetry(cmd) |
Maros Ondrejicka | 8753180 | 2022-12-19 20:35:27 +0100 | [diff] [blame] | 176 | } |
| 177 | |
Filip Tehlar | b41b0af | 2023-03-20 12:39:20 +0100 | [diff] [blame] | 178 | func (c *Container) prepareCommand() (string, error) { |
Maros Ondrejicka | 8753180 | 2022-12-19 20:35:27 +0100 | [diff] [blame] | 179 | if c.name == "" { |
Filip Tehlar | b41b0af | 2023-03-20 12:39:20 +0100 | [diff] [blame] | 180 | return "", fmt.Errorf("run container failed: name is blank") |
Maros Ondrejicka | 8753180 | 2022-12-19 20:35:27 +0100 | [diff] [blame] | 181 | } |
| 182 | |
Filip Tehlar | b41b0af | 2023-03-20 12:39:20 +0100 | [diff] [blame] | 183 | cmd := "docker run " |
| 184 | if c.runDetached { |
Adrian Villin | eaa7d91 | 2024-06-06 04:26:30 -0400 | [diff] [blame^] | 185 | cmd += " -d" |
Filip Tehlar | b41b0af | 2023-03-20 12:39:20 +0100 | [diff] [blame] | 186 | } |
Adrian Villin | b9464cd | 2024-05-27 09:52:59 -0400 | [diff] [blame] | 187 | |
Filip Tehlar | b41b0af | 2023-03-20 12:39:20 +0100 | [diff] [blame] | 188 | cmd += " " + c.getContainerArguments() |
| 189 | |
Maros Ondrejicka | e7625d0 | 2023-02-28 16:55:01 +0100 | [diff] [blame] | 190 | c.suite.log(cmd) |
Filip Tehlar | b41b0af | 2023-03-20 12:39:20 +0100 | [diff] [blame] | 191 | return cmd, nil |
| 192 | } |
| 193 | |
| 194 | func (c *Container) combinedOutput() (string, error) { |
| 195 | cmd, err := c.prepareCommand() |
Maros Ondrejicka | 11a03e9 | 2022-12-01 09:56:37 +0100 | [diff] [blame] | 196 | if err != nil { |
Filip Tehlar | b41b0af | 2023-03-20 12:39:20 +0100 | [diff] [blame] | 197 | return "", err |
Maros Ondrejicka | 11a03e9 | 2022-12-01 09:56:37 +0100 | [diff] [blame] | 198 | } |
| 199 | |
Filip Tehlar | b41b0af | 2023-03-20 12:39:20 +0100 | [diff] [blame] | 200 | byteOutput, err := exechelper.CombinedOutput(cmd) |
| 201 | return string(byteOutput), err |
| 202 | } |
| 203 | |
| 204 | func (c *Container) run() error { |
| 205 | cmd, err := c.prepareCommand() |
| 206 | if err != nil { |
| 207 | return err |
| 208 | } |
Filip Tehlar | 4fa0ba6 | 2023-12-06 11:35:11 +0100 | [diff] [blame] | 209 | return c.runWithRetry(cmd) |
Maros Ondrejicka | 11a03e9 | 2022-12-01 09:56:37 +0100 | [diff] [blame] | 210 | } |
| 211 | |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 212 | func (c *Container) addVolume(hostDir string, containerDir string, isDefaultWorkDir bool) { |
Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 213 | var volume Volume |
| 214 | volume.hostDir = hostDir |
| 215 | volume.containerDir = containerDir |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 216 | volume.isDefaultWorkDir = isDefaultWorkDir |
Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 217 | c.volumes[hostDir] = volume |
Maros Ondrejicka | 0e79abb | 2022-12-06 19:46:24 +0100 | [diff] [blame] | 218 | } |
| 219 | |
Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 220 | func (c *Container) getVolumesAsCliOption() string { |
| 221 | cliOption := "" |
Maros Ondrejicka | 0e79abb | 2022-12-06 19:46:24 +0100 | [diff] [blame] | 222 | |
| 223 | if len(c.volumes) > 0 { |
| 224 | for _, volume := range c.volumes { |
Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 225 | cliOption += fmt.Sprintf(" -v %s:%s", volume.hostDir, volume.containerDir) |
Maros Ondrejicka | 0e79abb | 2022-12-06 19:46:24 +0100 | [diff] [blame] | 226 | } |
| 227 | } |
| 228 | |
Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 229 | return cliOption |
| 230 | } |
| 231 | |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 232 | func (c *Container) addEnvVar(name string, value string) { |
Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 233 | c.envVars[name] = value |
| 234 | } |
| 235 | |
| 236 | func (c *Container) getEnvVarsAsCliOption() string { |
| 237 | cliOption := "" |
| 238 | if len(c.envVars) == 0 { |
| 239 | return cliOption |
| 240 | } |
| 241 | |
| 242 | for name, value := range c.envVars { |
| 243 | cliOption += fmt.Sprintf(" -e %s=%s", name, value) |
| 244 | } |
| 245 | return cliOption |
| 246 | } |
| 247 | |
Filip Tehlar | 608d006 | 2023-04-28 10:29:47 +0200 | [diff] [blame] | 248 | func (c *Container) newVppInstance(cpus []int, additionalConfigs ...Stanza) (*VppInstance, error) { |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 249 | vpp := new(VppInstance) |
| 250 | vpp.container = c |
Filip Tehlar | 608d006 | 2023-04-28 10:29:47 +0200 | [diff] [blame] | 251 | vpp.cpus = cpus |
| 252 | vpp.additionalConfig = append(vpp.additionalConfig, additionalConfigs...) |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 253 | c.vppInstance = vpp |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 254 | return vpp, nil |
| 255 | } |
| 256 | |
| 257 | func (c *Container) copy(sourceFileName string, targetFileName string) error { |
| 258 | cmd := exec.Command("docker", "cp", sourceFileName, c.name+":"+targetFileName) |
| 259 | return cmd.Run() |
| 260 | } |
| 261 | |
| 262 | func (c *Container) createFile(destFileName string, content string) error { |
Adrian Villin | eaa7d91 | 2024-06-06 04:26:30 -0400 | [diff] [blame^] | 263 | f, err := os.CreateTemp("/tmp", "hst-config"+c.suite.ppid) |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 264 | if err != nil { |
| 265 | return err |
| 266 | } |
| 267 | defer os.Remove(f.Name()) |
| 268 | |
| 269 | if _, err := f.Write([]byte(content)); err != nil { |
| 270 | return err |
| 271 | } |
| 272 | if err := f.Close(); err != nil { |
| 273 | return err |
| 274 | } |
| 275 | c.copy(f.Name(), destFileName) |
| 276 | return nil |
| 277 | } |
| 278 | |
| 279 | /* |
| 280 | * Executes in detached mode so that the started application can continue to run |
| 281 | * without blocking execution of test |
| 282 | */ |
Maros Ondrejicka | 2908f8c | 2023-02-02 08:58:04 +0100 | [diff] [blame] | 283 | func (c *Container) execServer(command string, arguments ...any) { |
| 284 | serverCommand := fmt.Sprintf(command, arguments...) |
| 285 | containerExecCommand := "docker exec -d" + c.getEnvVarsAsCliOption() + |
| 286 | " " + c.name + " " + serverCommand |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 287 | GinkgoHelper() |
Maros Ondrejicka | e7625d0 | 2023-02-28 16:55:01 +0100 | [diff] [blame] | 288 | c.suite.log(containerExecCommand) |
| 289 | c.suite.assertNil(exechelper.Run(containerExecCommand)) |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 290 | } |
| 291 | |
Maros Ondrejicka | 2908f8c | 2023-02-02 08:58:04 +0100 | [diff] [blame] | 292 | func (c *Container) exec(command string, arguments ...any) string { |
| 293 | cliCommand := fmt.Sprintf(command, arguments...) |
| 294 | containerExecCommand := "docker exec" + c.getEnvVarsAsCliOption() + |
| 295 | " " + c.name + " " + cliCommand |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 296 | GinkgoHelper() |
Maros Ondrejicka | e7625d0 | 2023-02-28 16:55:01 +0100 | [diff] [blame] | 297 | c.suite.log(containerExecCommand) |
Maros Ondrejicka | 2908f8c | 2023-02-02 08:58:04 +0100 | [diff] [blame] | 298 | byteOutput, err := exechelper.CombinedOutput(containerExecCommand) |
Adrian Villin | b9464cd | 2024-05-27 09:52:59 -0400 | [diff] [blame] | 299 | c.suite.assertNil(err, fmt.Sprint(err)) |
Maros Ondrejicka | 2908f8c | 2023-02-02 08:58:04 +0100 | [diff] [blame] | 300 | return string(byteOutput) |
Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 301 | } |
| 302 | |
Maros Ondrejicka | a2d5262 | 2023-02-24 11:26:39 +0100 | [diff] [blame] | 303 | func (c *Container) getLogDirPath() string { |
Maros Ondrejicka | e7625d0 | 2023-02-28 16:55:01 +0100 | [diff] [blame] | 304 | testId := c.suite.getTestId() |
Adrian Villin | eaa7d91 | 2024-06-06 04:26:30 -0400 | [diff] [blame^] | 305 | testName := c.suite.getCurrentTestName() |
Maros Ondrejicka | a2d5262 | 2023-02-24 11:26:39 +0100 | [diff] [blame] | 306 | logDirPath := logDir + testName + "/" + testId + "/" |
| 307 | |
| 308 | cmd := exec.Command("mkdir", "-p", logDirPath) |
| 309 | if err := cmd.Run(); err != nil { |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 310 | Fail("mkdir error: " + fmt.Sprint(err)) |
Maros Ondrejicka | a2d5262 | 2023-02-24 11:26:39 +0100 | [diff] [blame] | 311 | } |
| 312 | |
| 313 | return logDirPath |
| 314 | } |
| 315 | |
| 316 | func (c *Container) saveLogs() { |
Maros Ondrejicka | a2d5262 | 2023-02-24 11:26:39 +0100 | [diff] [blame] | 317 | testLogFilePath := c.getLogDirPath() + "container-" + c.name + ".log" |
| 318 | |
Adrian Villin | eaa7d91 | 2024-06-06 04:26:30 -0400 | [diff] [blame^] | 319 | cmd := exec.Command("docker", "logs", "--details", "-t", c.name) |
| 320 | c.suite.log(cmd) |
Maros Ondrejicka | a2d5262 | 2023-02-24 11:26:39 +0100 | [diff] [blame] | 321 | output, err := cmd.CombinedOutput() |
| 322 | if err != nil { |
Adrian Villin | eaa7d91 | 2024-06-06 04:26:30 -0400 | [diff] [blame^] | 323 | c.suite.log(err) |
Maros Ondrejicka | a2d5262 | 2023-02-24 11:26:39 +0100 | [diff] [blame] | 324 | } |
| 325 | |
| 326 | f, err := os.Create(testLogFilePath) |
| 327 | if err != nil { |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 328 | Fail("file create error: " + fmt.Sprint(err)) |
Maros Ondrejicka | a2d5262 | 2023-02-24 11:26:39 +0100 | [diff] [blame] | 329 | } |
Maros Ondrejicka | e7625d0 | 2023-02-28 16:55:01 +0100 | [diff] [blame] | 330 | fmt.Fprint(f, string(output)) |
Maros Ondrejicka | a2d5262 | 2023-02-24 11:26:39 +0100 | [diff] [blame] | 331 | f.Close() |
| 332 | } |
| 333 | |
adrianvillin | 7c67547 | 2024-02-12 02:44:53 -0500 | [diff] [blame] | 334 | // Outputs logs from docker containers. Set 'maxLines' to 0 to output the full log. |
| 335 | func (c *Container) log(maxLines int) (string, error) { |
| 336 | var cmd string |
| 337 | if maxLines == 0 { |
| 338 | cmd = "docker logs " + c.name |
| 339 | } else { |
| 340 | cmd = fmt.Sprintf("docker logs --tail %d %s", maxLines, c.name) |
| 341 | } |
| 342 | |
Maros Ondrejicka | e7625d0 | 2023-02-28 16:55:01 +0100 | [diff] [blame] | 343 | c.suite.log(cmd) |
Maros Ondrejicka | c2f76f4 | 2023-02-27 13:22:45 +0100 | [diff] [blame] | 344 | o, err := exechelper.CombinedOutput(cmd) |
adrianvillin | 7c67547 | 2024-02-12 02:44:53 -0500 | [diff] [blame] | 345 | return string(o), err |
Maros Ondrejicka | c2f76f4 | 2023-02-27 13:22:45 +0100 | [diff] [blame] | 346 | } |
| 347 | |
Maros Ondrejicka | 0e79abb | 2022-12-06 19:46:24 +0100 | [diff] [blame] | 348 | func (c *Container) stop() error { |
Adrian Villin | 46d6600 | 2024-05-15 04:33:41 -0400 | [diff] [blame] | 349 | if c.vppInstance != nil && c.vppInstance.apiStream != nil { |
Maros Ondrejicka | a2d5262 | 2023-02-24 11:26:39 +0100 | [diff] [blame] | 350 | c.vppInstance.saveLogs() |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 351 | c.vppInstance.disconnect() |
| 352 | } |
| 353 | c.vppInstance = nil |
Maros Ondrejicka | a2d5262 | 2023-02-24 11:26:39 +0100 | [diff] [blame] | 354 | c.saveLogs() |
Adrian Villin | eaa7d91 | 2024-06-06 04:26:30 -0400 | [diff] [blame^] | 355 | c.suite.log("docker stop " + c.name + " -t 0") |
Florin Coras | f4fe016 | 2023-01-17 13:02:51 -0800 | [diff] [blame] | 356 | return exechelper.Run("docker stop " + c.name + " -t 0") |
Maros Ondrejicka | 0e79abb | 2022-12-06 19:46:24 +0100 | [diff] [blame] | 357 | } |
Maros Ondrejicka | 85396a5 | 2023-02-28 12:49:43 +0100 | [diff] [blame] | 358 | |
| 359 | func (c *Container) createConfig(targetConfigName string, templateName string, values any) { |
| 360 | template := template.Must(template.ParseFiles(templateName)) |
| 361 | |
Filip Tehlar | a1bd50c | 2024-01-24 11:59:44 +0100 | [diff] [blame] | 362 | f, err := os.CreateTemp(logDir, "hst-config") |
adrianvillin | 7c67547 | 2024-02-12 02:44:53 -0500 | [diff] [blame] | 363 | c.suite.assertNil(err, err) |
Maros Ondrejicka | 85396a5 | 2023-02-28 12:49:43 +0100 | [diff] [blame] | 364 | defer os.Remove(f.Name()) |
| 365 | |
| 366 | err = template.Execute(f, values) |
adrianvillin | 7c67547 | 2024-02-12 02:44:53 -0500 | [diff] [blame] | 367 | c.suite.assertNil(err, err) |
Maros Ondrejicka | 85396a5 | 2023-02-28 12:49:43 +0100 | [diff] [blame] | 368 | |
| 369 | err = f.Close() |
adrianvillin | 7c67547 | 2024-02-12 02:44:53 -0500 | [diff] [blame] | 370 | c.suite.assertNil(err, err) |
Maros Ondrejicka | 85396a5 | 2023-02-28 12:49:43 +0100 | [diff] [blame] | 371 | |
| 372 | c.copy(f.Name(), targetConfigName) |
| 373 | } |
Maros Ondrejicka | f4ddf16 | 2023-03-08 16:01:43 +0100 | [diff] [blame] | 374 | |
| 375 | func init() { |
| 376 | cmd := exec.Command("mkdir", "-p", logDir) |
| 377 | if err := cmd.Run(); err != nil { |
| 378 | panic(err) |
| 379 | } |
| 380 | } |