Skip to content

Commit ae0700c

Browse files
author
OpenShift Bot
authored
Merge pull request #12693 from gabemontero/fixBlueGreenHangOnError
Merged by openshift-bot
2 parents e4e69b2 + 2019f92 commit ae0700c

File tree

1 file changed

+20
-5
lines changed

1 file changed

+20
-5
lines changed

test/extended/builds/pipeline.go

+20-5
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import (
1414

1515
exutil "github.com/openshift/origin/test/extended/util"
1616
"github.com/openshift/origin/test/extended/util/jenkins"
17+
sutil "github.com/openshift/source-to-image/pkg/util"
1718
)
1819

1920
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() {
155156
// start the build
156157
go func() {
157158
defer g.GinkgoRecover()
159+
defer wg.Done()
158160
g.By("starting the bluegreen pipeline build and waiting for it to complete")
159161
br, _ := exutil.StartBuildAndWait(oc, "bluegreen-pipeline")
160162
debugAnyJenkinsFailure(br, oc.Namespace()+"-bluegreen-pipeline", oc, true)
@@ -166,7 +168,6 @@ var _ = g.Describe("[builds][Slow] openshift pipeline build", func() {
166168
activeRoute := strings.TrimSpace(value)
167169
g.By("verifying that the active route is 'nodejs-mongodb-example-green'")
168170
o.Expect(activeRoute).To(o.Equal("nodejs-mongodb-example-green"))
169-
wg.Done()
170171
}()
171172

172173
// wait for the green service to be available
@@ -185,15 +186,22 @@ var _ = g.Describe("[builds][Slow] openshift pipeline build", func() {
185186
o.Expect(err).NotTo(o.HaveOccurred())
186187

187188
// 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())
190197

191198
wg = &sync.WaitGroup{}
192199
wg.Add(1)
193200

194201
// start the build again
195202
go func() {
196203
defer g.GinkgoRecover()
204+
defer wg.Done()
197205
g.By("starting the bluegreen pipeline build and waiting for it to complete")
198206
br, _ := exutil.StartBuildAndWait(oc, "bluegreen-pipeline")
199207
debugAnyJenkinsFailure(br, oc.Namespace()+"-bluegreen-pipeline", oc, true)
@@ -205,7 +213,6 @@ var _ = g.Describe("[builds][Slow] openshift pipeline build", func() {
205213
activeRoute := strings.TrimSpace(value)
206214
g.By("verifying that the active route is 'nodejs-mongodb-example-blue'")
207215
o.Expect(activeRoute).To(o.Equal("nodejs-mongodb-example-blue"))
208-
wg.Done()
209216
}()
210217

211218
// wait for the blue service to be available
@@ -222,7 +229,15 @@ var _ = g.Describe("[builds][Slow] openshift pipeline build", func() {
222229
_, _, err = j.Post(nil, fmt.Sprintf("job/%s/lastBuild/input/Approval/proceedEmpty", jobName), "")
223230
o.Expect(err).NotTo(o.HaveOccurred())
224231

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())
226241
})
227242
})
228243

0 commit comments

Comments
 (0)