Beispiel #1
0
		Context("when getting the build succeeds", func() {
			BeforeEach(func() {
				pipelineDB.GetJobBuildReturns(db.Build{
					ID:           1,
					Name:         "1",
					JobName:      "some-job",
					PipelineName: "a-pipeline",
					Status:       db.StatusSucceeded,
					StartTime:    time.Unix(1, 0),
					EndTime:      time.Unix(100, 0),
				}, true, nil)
			})

			It("fetches by job and build name", func() {
				Expect(pipelineDB.GetJobBuildCallCount()).To(Equal(1))

				jobName, buildName := pipelineDB.GetJobBuildArgsForCall(0)
				Expect(jobName).To(Equal("some-job"))
				Expect(buildName).To(Equal("some-build"))
			})

			It("returns 200 OK", func() {
				Expect(response.StatusCode).To(Equal(http.StatusOK))
			})

			It("returns the build", func() {
				body, err := ioutil.ReadAll(response.Body)
				Expect(err).NotTo(HaveOccurred())

				Expect(body).To(MatchJSON(`{
Beispiel #2
0
			Ω(pipelineName).Should(Equal("some-pipeline"))
		})

		Context("when getting the build succeeds", func() {
			BeforeEach(func() {
				pipelineDB.GetJobBuildReturns(db.Build{
					ID:           1,
					Name:         "1",
					JobName:      "some-job",
					PipelineName: "a-pipeline",
					Status:       db.StatusSucceeded,
				}, nil)
			})

			It("fetches by job and build name", func() {
				Ω(pipelineDB.GetJobBuildCallCount()).Should(Equal(1))

				jobName, buildName := pipelineDB.GetJobBuildArgsForCall(0)
				Ω(jobName).Should(Equal("some-job"))
				Ω(buildName).Should(Equal("some-build"))
			})

			It("returns 200 OK", func() {
				Ω(response.StatusCode).Should(Equal(http.StatusOK))
			})

			It("returns the build", func() {
				body, err := ioutil.ReadAll(response.Body)
				Ω(err).ShouldNot(HaveOccurred())

				Ω(body).Should(MatchJSON(`{