@@ -14,6 +14,7 @@ import (
14
14
15
15
exutil "github.com/openshift/origin/test/extended/util"
16
16
"github.com/openshift/origin/test/extended/util/jenkins"
17
+ sutil "github.com/openshift/source-to-image/pkg/util"
17
18
)
18
19
19
20
func debugAnyJenkinsFailure (br * exutil.BuildResult , name string , oc * exutil.CLI , dumpMaster bool ) {
@@ -155,6 +156,7 @@ var _ = g.Describe("[builds][Slow] openshift pipeline build", func() {
155
156
// start the build
156
157
go func () {
157
158
defer g .GinkgoRecover ()
159
+ defer wg .Done ()
158
160
g .By ("starting the bluegreen pipeline build and waiting for it to complete" )
159
161
br , _ := exutil .StartBuildAndWait (oc , "bluegreen-pipeline" )
160
162
debugAnyJenkinsFailure (br , oc .Namespace ()+ "-bluegreen-pipeline" , oc , true )
@@ -166,7 +168,6 @@ var _ = g.Describe("[builds][Slow] openshift pipeline build", func() {
166
168
activeRoute := strings .TrimSpace (value )
167
169
g .By ("verifying that the active route is 'nodejs-mongodb-example-green'" )
168
170
o .Expect (activeRoute ).To (o .Equal ("nodejs-mongodb-example-green" ))
169
- wg .Done ()
170
171
}()
171
172
172
173
// wait for the green service to be available
@@ -185,15 +186,22 @@ var _ = g.Describe("[builds][Slow] openshift pipeline build", func() {
185
186
o .Expect (err ).NotTo (o .HaveOccurred ())
186
187
187
188
// wait for first build completion and verification
188
- g .By ("Waiting for the build to complete successfully" )
189
- wg .Wait ()
189
+ g .By ("Waiting for the first build to complete successfully" )
190
+ err = sutil .TimeoutAfter (time .Minute * 10 , "first blue-green build timed out before WaitGroup quit blocking" , func (timeoutTimer * time.Timer ) error {
191
+ g .By ("start wg.Wait() for build completion and verification" )
192
+ wg .Wait ()
193
+ g .By ("build completion and verification good to go" )
194
+ return nil
195
+ })
196
+ o .Expect (err ).NotTo (o .HaveOccurred ())
190
197
191
198
wg = & sync.WaitGroup {}
192
199
wg .Add (1 )
193
200
194
201
// start the build again
195
202
go func () {
196
203
defer g .GinkgoRecover ()
204
+ defer wg .Done ()
197
205
g .By ("starting the bluegreen pipeline build and waiting for it to complete" )
198
206
br , _ := exutil .StartBuildAndWait (oc , "bluegreen-pipeline" )
199
207
debugAnyJenkinsFailure (br , oc .Namespace ()+ "-bluegreen-pipeline" , oc , true )
@@ -205,7 +213,6 @@ var _ = g.Describe("[builds][Slow] openshift pipeline build", func() {
205
213
activeRoute := strings .TrimSpace (value )
206
214
g .By ("verifying that the active route is 'nodejs-mongodb-example-blue'" )
207
215
o .Expect (activeRoute ).To (o .Equal ("nodejs-mongodb-example-blue" ))
208
- wg .Done ()
209
216
}()
210
217
211
218
// wait for the blue service to be available
@@ -222,7 +229,15 @@ var _ = g.Describe("[builds][Slow] openshift pipeline build", func() {
222
229
_ , _ , err = j .Post (nil , fmt .Sprintf ("job/%s/lastBuild/input/Approval/proceedEmpty" , jobName ), "" )
223
230
o .Expect (err ).NotTo (o .HaveOccurred ())
224
231
225
- wg .Wait ()
232
+ // wait for second build completion and verification
233
+ g .By ("Waiting for the second build to complete successfully" )
234
+ err = sutil .TimeoutAfter (time .Minute * 10 , "second blue-green build timed out before WaitGroup quit blocking" , func (timeoutTimer * time.Timer ) error {
235
+ g .By ("start wg.Wait() for build completion and verification" )
236
+ wg .Wait ()
237
+ g .By ("build completion and verification good to go" )
238
+ return nil
239
+ })
240
+ o .Expect (err ).NotTo (o .HaveOccurred ())
226
241
})
227
242
})
228
243
0 commit comments