本文整理匯總了Golang中github.com/concourse/atc.JobConfig.InputConfigs方法的典型用法代碼示例。如果您正苦於以下問題:Golang JobConfig.InputConfigs方法的具體用法?Golang JobConfig.InputConfigs怎麽用?Golang JobConfig.InputConfigs使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/concourse/atc.JobConfig
的用法示例。
在下文中一共展示了JobConfig.InputConfigs方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1:
It("returns the error", func() {
err := scheduler.BuildLatestInputs(logger, job, resources)
Ω(err).Should(Equal(disaster))
})
It("does not trigger a build", func() {
scheduler.BuildLatestInputs(logger, job, resources)
Ω(fakeEngine.CreateBuildCallCount()).Should(Equal(0))
})
})
Context("when the job has no inputs", func() {
BeforeEach(func() {
job.InputConfigs = []atc.JobInputConfig{}
})
It("succeeds", func() {
err := scheduler.BuildLatestInputs(logger, job, resources)
Ω(err).ShouldNot(HaveOccurred())
})
It("does not try to fetch inputs from the database", func() {
scheduler.BuildLatestInputs(logger, job, resources)
Ω(fakePipelineDB.GetLatestInputVersionsCallCount()).Should(BeZero())
})
It("does not trigger a build", func() {
scheduler.BuildLatestInputs(logger, job, resources)
示例2:
Context("when a job has no config and no config path", func() {
BeforeEach(func() {
job.TaskConfig = nil
job.TaskConfigPath = ""
config.Jobs = append(config.Jobs, job)
})
It("returns no error", func() {
Ω(validateErr).ShouldNot(HaveOccurred())
})
})
Context("when a job's input has no resource", func() {
BeforeEach(func() {
job.InputConfigs = append(job.InputConfigs, atc.JobInputConfig{
RawName: "foo",
})
config.Jobs = append(config.Jobs, job)
})
It("returns an error", func() {
Ω(validateErr).Should(HaveOccurred())
Ω(validateErr.Error()).Should(ContainSubstring(
"jobs.some-other-job.inputs.foo has no resource",
))
})
})
Context("when a job's input has a bogus resource", func() {
BeforeEach(func() {
job.InputConfigs = append(job.InputConfigs, atc.JobInputConfig{