Skip to content

Commit ecd00b1

Browse files
committed
Use order to iterate over ceMapping and fix a check with debug integration test
Signed-off-by: Parthvi Vala <[email protected]>
1 parent 486c0a0 commit ecd00b1

File tree

2 files changed

+14
-7
lines changed

2 files changed

+14
-7
lines changed

pkg/dev/podmandev/pod.go

+12-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package podmandev
33
import (
44
"fmt"
55
"math/rand" // #nosec
6+
"sort"
67
"time"
78

89
"github.com/devfile/api/v2/pkg/apis/workspaces/v1alpha2"
@@ -56,7 +57,6 @@ func createPodFromComponent(
5657
if err != nil {
5758
return nil, nil, err
5859
}
59-
// }
6060

6161
utils.AddOdoProjectVolume(&containers)
6262
utils.AddOdoMandatoryVolume(&containers)
@@ -229,7 +229,17 @@ func getPortMapping(devfileObj parser.DevfileObj, debug bool, randomPorts bool,
229229
endPort := startPort + 10000
230230
usedPortsCopy := make([]int, len(usedPorts))
231231
copy(usedPortsCopy, usedPorts)
232-
for containerName, endpoints := range ceMapping {
232+
233+
// Prepare to iterate over the ceMapping in an orderly fashion
234+
// This ensures we iterate over the ceMapping in the same way every time, obtain the same result every time and avoid any flakes with tests
235+
var containers []string
236+
for container := range ceMapping {
237+
containers = append(containers, container)
238+
}
239+
sort.Strings(containers)
240+
241+
for _, containerName := range containers {
242+
endpoints := ceMapping[containerName]
233243
epLoop:
234244
for _, ep := range endpoints {
235245
portName := ep.Name

tests/integration/cmd_dev_debug_test.go

+2-5
Original file line numberDiff line numberDiff line change
@@ -85,11 +85,8 @@ var _ = Describe("odo dev debug command tests", func() {
8585
// We are just using this to validate if nodejs agent is listening on the other side
8686
url := fmt.Sprintf("http://%s", ports[ContainerDebugPort])
8787
Expect(url).To(ContainSubstring(LocalDebugPort))
88-
if !podman {
89-
// this check doesn't work for podman unless we use --forward-localhost,
90-
// but using it beats the purpose of testing with custom port mapping, so we skip this check
91-
helper.HttpWaitForWithStatus(url, "WebSockets request was expected", 12, 5, 400)
92-
}
88+
89+
helper.HttpWaitForWithStatus(url, "WebSockets request was expected", 12, 5, 400)
9390
})
9491
})
9592
}))

0 commit comments

Comments
 (0)