本文整理汇总了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{