本文整理匯總了Golang中github.com/concourse/atc/db/fakes.FakePipelineDB.GetJobBuildCallCount方法的典型用法代碼示例。如果您正苦於以下問題:Golang FakePipelineDB.GetJobBuildCallCount方法的具體用法?Golang FakePipelineDB.GetJobBuildCallCount怎麽用?Golang FakePipelineDB.GetJobBuildCallCount使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/concourse/atc/db/fakes.FakePipelineDB
的用法示例。
在下文中一共展示了FakePipelineDB.GetJobBuildCallCount方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1:
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(`{
示例2:
Ω(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(`{