forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pipeline.go
308 lines (264 loc) · 10.1 KB
/
pipeline.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
package builds
import (
"bytes"
"errors"
"fmt"
"net/http"
"net/url"
"os"
"os/exec"
"strings"
"time"
g "github.com/onsi/ginkgo"
o "github.com/onsi/gomega"
"github.com/openshift/origin/pkg/build/api"
exutil "github.com/openshift/origin/test/extended/util"
"github.com/openshift/origin/test/extended/util/jenkins"
)
func debugAnyJenkinsFailure(br *exutil.BuildResult, name string, oc *exutil.CLI, dumpMaster bool) {
if !br.BuildSuccess {
fmt.Fprintf(g.GinkgoWriter, "\n\n START debugAnyJenkinsFailure\n\n")
j := jenkins.NewRef(oc)
jobLog, err := j.GetLastJobConsoleLogs(name)
if err == nil {
fmt.Fprintf(g.GinkgoWriter, "\n %s job log:\n%s", name, jobLog)
} else {
fmt.Fprintf(g.GinkgoWriter, "\n error getting %s job log: %#v", name, err)
}
if dumpMaster {
exutil.DumpDeploymentLogs("jenkins", oc)
}
fmt.Fprintf(g.GinkgoWriter, "\n\n END debugAnyJenkinsFailure\n\n")
}
}
var _ = g.Describe("[builds][Slow] openshift pipeline build", func() {
defer g.GinkgoRecover()
var (
jenkinsTemplatePath = exutil.FixturePath("..", "..", "examples", "jenkins", "jenkins-ephemeral-template.json")
mavenSlavePipelinePath = exutil.FixturePath("..", "..", "examples", "jenkins", "pipeline", "maven-pipeline.yaml")
//orchestrationPipelinePath = exutil.FixturePath("..", "..", "examples", "jenkins", "pipeline", "mapsapp-pipeline.yaml")
blueGreenPipelinePath = exutil.FixturePath("..", "..", "examples", "jenkins", "pipeline", "bluegreen-pipeline.yaml")
clientPluginPipelinePath = exutil.FixturePath("..", "..", "examples", "jenkins", "pipeline", "openshift-client-plugin-pipeline.yaml")
oc = exutil.NewCLI("jenkins-pipeline", exutil.KubeConfigPath())
ticker *time.Ticker
j *jenkins.JenkinsRef
dcLogFollow *exec.Cmd
dcLogStdOut, dcLogStdErr *bytes.Buffer
setupJenkins = func() {
// Deploy Jenkins
g.By(fmt.Sprintf("calling oc new-app -f %q", jenkinsTemplatePath))
err := oc.Run("new-app").Args("-f", jenkinsTemplatePath).Execute()
o.Expect(err).NotTo(o.HaveOccurred())
g.By("waiting for jenkins deployment")
err = exutil.WaitForADeploymentToComplete(oc.KubeClient().Core().ReplicationControllers(oc.Namespace()), "jenkins", oc)
o.Expect(err).NotTo(o.HaveOccurred())
j = jenkins.NewRef(oc)
g.By("wait for jenkins to come up")
_, err = j.WaitForContent("", 200, 10*time.Minute, "")
if err != nil {
exutil.DumpDeploymentLogs("jenkins", oc)
}
o.Expect(err).NotTo(o.HaveOccurred())
// Start capturing logs from this deployment config.
// This command will terminate if the Jenkins instance crashes. This
// ensures that even if the Jenkins DC restarts, we should capture
// logs from the crash.
dcLogFollow, dcLogStdOut, dcLogStdErr, err = oc.Run("logs").Args("-f", "dc/jenkins").Background()
o.Expect(err).NotTo(o.HaveOccurred())
}
)
g.BeforeEach(func() {
setupJenkins()
if os.Getenv(jenkins.DisableJenkinsGCStats) == "" {
g.By("start jenkins gc tracking")
ticker = jenkins.StartJenkinsGCTracking(oc, oc.Namespace())
}
g.By("waiting for builder service account")
err := exutil.WaitForBuilderAccount(oc.KubeClient().Core().ServiceAccounts(oc.Namespace()))
o.Expect(err).NotTo(o.HaveOccurred())
})
g.Context("Pipeline with maven slave", func() {
g.AfterEach(func() {
if os.Getenv(jenkins.DisableJenkinsGCStats) == "" {
g.By("stopping jenkins gc tracking")
ticker.Stop()
}
})
g.It("should build and complete successfully", func() {
// instantiate the template
g.By(fmt.Sprintf("calling oc new-app -f %q", mavenSlavePipelinePath))
err := oc.Run("new-app").Args("-f", mavenSlavePipelinePath).Execute()
o.Expect(err).NotTo(o.HaveOccurred())
// start the build
g.By("starting the pipeline build and waiting for it to complete")
br, _ := exutil.StartBuildAndWait(oc, "openshift-jee-sample")
debugAnyJenkinsFailure(br, oc.Namespace()+"-openshift-jee-sample", oc, true)
br.AssertSuccess()
// wait for the service to be running
g.By("expecting the openshift-jee-sample service to be deployed and running")
_, err = exutil.GetEndpointAddress(oc, "openshift-jee-sample")
o.Expect(err).NotTo(o.HaveOccurred())
})
})
g.Context("Pipeline using jenkins-client-plugin", func() {
g.AfterEach(func() {
if os.Getenv(jenkins.DisableJenkinsGCStats) == "" {
g.By("stopping jenkins gc tracking")
ticker.Stop()
}
})
g.It("should build and complete successfully", func() {
// instantiate the bc
g.By("create the jenkins pipeline strategy build config that leverages openshift client plugin")
err := oc.Run("create").Args("-f", clientPluginPipelinePath).Execute()
o.Expect(err).NotTo(o.HaveOccurred())
// start the build
g.By("starting the pipeline build and waiting for it to complete")
br, _ := exutil.StartBuildAndWait(oc, "sample-pipeline-openshift-client-plugin")
debugAnyJenkinsFailure(br, oc.Namespace()+"-sample-pipeline-openshift-client-plugin", oc, true)
br.AssertSuccess()
g.By("get build console logs and see if succeeded")
_, err = j.WaitForContent("Finished: SUCCESS", 200, 10*time.Minute, "job/%s-sample-pipeline-openshift-client-plugin/lastBuild/consoleText", oc.Namespace())
o.Expect(err).NotTo(o.HaveOccurred())
})
})
/*g.Context("Orchestration pipeline", func() {
g.AfterEach(func() {
if os.Getenv(jenkins.DisableJenkinsGCStats) == "" {
g.By("stopping jenkins gc tracking")
ticker.Stop()
}
})
g.It("should build and complete successfully", func() {
// instantiate the template
g.By(fmt.Sprintf("calling oc new-app -f %q", orchestrationPipelinePath))
err := oc.Run("new-app").Args("-f", orchestrationPipelinePath).Execute()
o.Expect(err).NotTo(o.HaveOccurred())
// start the build
g.By("starting the pipeline build and waiting for it to complete")
br, _ := exutil.StartBuildAndWait(oc, "mapsapp-pipeline")
debugAnyJenkinsFailure(br, oc.Namespace()+"-mapsapp-pipeline", oc, true)
debugAnyJenkinsFailure(br, oc.Namespace()+"-mlbparks-pipeline", oc, false)
debugAnyJenkinsFailure(br, oc.Namespace()+"-nationalparks-pipeline", oc, false)
debugAnyJenkinsFailure(br, oc.Namespace()+"-parksmap-pipeline", oc, false)
br.AssertSuccess()
// wait for the service to be running
g.By("expecting the parksmap-web service to be deployed and running")
_, err = exutil.GetEndpointAddress(oc, "parksmap")
o.Expect(err).NotTo(o.HaveOccurred())
})
})*/
g.Context("Blue-green pipeline", func() {
g.AfterEach(func() {
if os.Getenv(jenkins.DisableJenkinsGCStats) == "" {
g.By("stopping jenkins gc tracking")
ticker.Stop()
}
})
g.It("Blue-green pipeline should build and complete successfully", func() {
// instantiate the template
g.By(fmt.Sprintf("calling oc new-app -f %q", blueGreenPipelinePath))
err := oc.Run("new-app").Args("-f", blueGreenPipelinePath).Execute()
o.Expect(err).NotTo(o.HaveOccurred())
buildAndSwitch := func(newColour string) {
// start the build
g.By("starting the bluegreen pipeline build")
br, err := exutil.StartBuildResult(oc, "bluegreen-pipeline")
o.Expect(err).NotTo(o.HaveOccurred())
errs := make(chan error, 2)
stop := make(chan struct{})
go func() {
defer g.GinkgoRecover()
g.By("Waiting for the build uri")
var jenkinsBuildURI string
for {
build, err := oc.Client().Builds(oc.Namespace()).Get(br.BuildName)
if err != nil {
errs <- fmt.Errorf("error getting build: %s", err)
return
}
jenkinsBuildURI = build.Annotations[api.BuildJenkinsBuildURIAnnotation]
if jenkinsBuildURI != "" {
break
}
select {
case <-stop:
return
default:
time.Sleep(10 * time.Second)
}
}
url, err := url.Parse(jenkinsBuildURI)
if err != nil {
errs <- fmt.Errorf("error parsing build uri: %s", err)
return
}
jenkinsBuildURI = strings.Trim(url.Path, "/") // trim leading https://host/ and trailing /
g.By("Waiting for the approval prompt")
for {
body, status, err := j.GetResource(jenkinsBuildURI + "/consoleText")
if err == nil && status == http.StatusOK && strings.Contains(body, "Approve?") {
break
}
select {
case <-stop:
return
default:
time.Sleep(10 * time.Second)
}
}
g.By("Approving the current build")
_, _, err = j.Post(nil, jenkinsBuildURI+"/input/Approval/proceedEmpty", "")
if err != nil {
errs <- fmt.Errorf("error approving the current build: %s", err)
}
}()
go func() {
defer g.GinkgoRecover()
for {
build, err := oc.Client().Builds(oc.Namespace()).Get(br.BuildName)
switch {
case err != nil:
errs <- fmt.Errorf("error getting build: %s", err)
return
case exutil.CheckBuildFailedFn(build):
errs <- nil
return
case exutil.CheckBuildSuccessFn(build):
br.BuildSuccess = true
errs <- nil
return
}
select {
case <-stop:
return
default:
time.Sleep(5 * time.Second)
}
}
}()
g.By("waiting for the build to complete")
select {
case <-time.After(60 * time.Minute):
err = errors.New("timeout waiting for build to complete")
case err = <-errs:
}
close(stop)
if err != nil {
fmt.Fprintf(g.GinkgoWriter, "error occurred (%s): getting logs before failing\n", err)
}
debugAnyJenkinsFailure(br, oc.Namespace()+"-bluegreen-pipeline", oc, true)
br.AssertSuccess()
o.Expect(err).NotTo(o.HaveOccurred())
g.By(fmt.Sprintf("verifying that the main route has been switched to %s", newColour))
value, err := oc.Run("get").Args("route", "nodejs-mongodb-example", "-o", "jsonpath={ .spec.to.name }").Output()
o.Expect(err).NotTo(o.HaveOccurred())
activeRoute := strings.TrimSpace(value)
g.By(fmt.Sprintf("verifying that the active route is 'nodejs-mongodb-example-%s'", newColour))
o.Expect(activeRoute).To(o.Equal(fmt.Sprintf("nodejs-mongodb-example-%s", newColour)))
}
buildAndSwitch("green")
buildAndSwitch("blue")
})
})
})