Skip to content

Commit c57364f

Browse files
authored
Fix e2e test failures and doc test failures due to updated devfile registry (#6735)
Signed-off-by: Parthvi Vala <[email protected]>
1 parent 4317255 commit c57364f

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

docs/website/docs/command-reference/docs-mdx/init/registry_list_output.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
$ odo registry --devfile nodejs-react
33
NAME REGISTRY DESCRIPTION VERSIONS
44
nodejs-react StagingRegistry React is a free and open-source front-en... 2.0.2, 2.1.0
5-
nodejs-react DefaultDevfileRegistry React is a free and open-source front-en... 2.0.2
5+
nodejs-react DefaultDevfileRegistry React is a free and open-source front-en... 2.0.2, 2.1.0
66
```

tests/e2escenarios/e2e_test.go

+13
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import (
88
"net/http"
99
"path"
1010
"path/filepath"
11+
"regexp"
1112
"time"
1213

1314
. "github.com/onsi/ginkgo/v2"
@@ -47,9 +48,16 @@ var _ = Describe("E2E Test", func() {
4748
}
4849

4950
Context("starting with empty Directory", func() {
51+
var hasMultipleVersions bool
5052
var _ = BeforeEach(func() {
5153
helper.Chdir(commonVar.Context)
5254
Expect(helper.ListFilesInDir(commonVar.Context)).To(BeEmpty())
55+
out := helper.Cmd("odo", "registry", "--devfile", "nodejs", "--devfile-registry", "DefaultDevfileRegistry").ShouldPass().Out()
56+
// Version pattern has always been in the form of X.X.X
57+
vMatch := regexp.MustCompile(`(?:\d.\d.\d)`)
58+
if matches := vMatch.FindAll([]byte(out), -1); len(matches) > 1 {
59+
hasMultipleVersions = true
60+
}
5361
})
5462

5563
It("should verify developer workflow from empty Directory", func() {
@@ -67,6 +75,11 @@ var _ = Describe("E2E Test", func() {
6775
helper.ExpectString(ctx, "Select project type")
6876
helper.SendLine(ctx, "Node.js")
6977

78+
if hasMultipleVersions {
79+
helper.ExpectString(ctx, "Select version: ")
80+
helper.SendLine(ctx, "")
81+
}
82+
7083
helper.ExpectString(ctx, "Select container for which you want to change configuration?")
7184
helper.SendLine(ctx, "")
7285

0 commit comments

Comments
 (0)