8
8
"net/http"
9
9
"path"
10
10
"path/filepath"
11
+ "regexp"
11
12
"time"
12
13
13
14
. "github.com/onsi/ginkgo/v2"
@@ -47,9 +48,16 @@ var _ = Describe("E2E Test", func() {
47
48
}
48
49
49
50
Context ("starting with empty Directory" , func () {
51
+ var hasMultipleVersions bool
50
52
var _ = BeforeEach (func () {
51
53
helper .Chdir (commonVar .Context )
52
54
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
+ }
53
61
})
54
62
55
63
It ("should verify developer workflow from empty Directory" , func () {
@@ -67,6 +75,11 @@ var _ = Describe("E2E Test", func() {
67
75
helper .ExpectString (ctx , "Select project type" )
68
76
helper .SendLine (ctx , "Node.js" )
69
77
78
+ if hasMultipleVersions {
79
+ helper .ExpectString (ctx , "Select version: " )
80
+ helper .SendLine (ctx , "" )
81
+ }
82
+
70
83
helper .ExpectString (ctx , "Select container for which you want to change configuration?" )
71
84
helper .SendLine (ctx , "" )
72
85
0 commit comments