本文整理汇总了Golang中github.com/concourse/atc.Config.ResourceTypes方法的典型用法代码示例。如果您正苦于以下问题:Golang Config.ResourceTypes方法的具体用法?Golang Config.ResourceTypes怎么用?Golang Config.ResourceTypes使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/concourse/atc.Config
的用法示例。
在下文中一共展示了Config.ResourceTypes方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
It("returns an error", func() {
Expect(validateErr).To(HaveOccurred())
Expect(validateErr.Error()).To(ContainSubstring(
"resources[0] and resources[1] have the same name ('some-resource')",
))
})
})
})
Describe("invalid resource types", func() {
Context("when a resource type has no name", func() {
BeforeEach(func() {
config.ResourceTypes = append(config.ResourceTypes, atc.ResourceType{
Name: "",
})
})
It("returns an error", func() {
Expect(validateErr).To(HaveOccurred())
Expect(validateErr.Error()).To(ContainSubstring("resource_types[1] has no name"))
})
})
Context("when a resource has no type", func() {
BeforeEach(func() {
config.ResourceTypes = append(config.ResourceTypes, atc.ResourceType{
Name: "bogus-resource-type",
Type: "",
})
示例2:
copy(newResources, changedConfig.Resources)
newResources[0].Type = "some-new-type"
newResources[1] = newResource
newResources[2].Source = atc.Source{"source-config": 5.0}
changedConfig.Resources = newResources
newResourceType := changedConfig.ResourceTypes[1]
newResourceType.Name = "some-new-resource-type"
newResourceTypes := make(atc.ResourceTypes, len(changedConfig.ResourceTypes))
copy(newResourceTypes, changedConfig.ResourceTypes)
newResourceTypes[0].Type = "some-new-type"
newResourceTypes[1] = newResourceType
changedConfig.ResourceTypes = newResourceTypes
newJob := changedConfig.Jobs[2]
newJob.Name = "some-new-job"
changedConfig.Jobs[0].Serial = false
changedConfig.Jobs = append(changedConfig.Jobs[:2], newJob)
path, err := atc.Routes.CreatePathForRoute(atc.SaveConfig, rata.Params{"pipeline_name": "awesome-pipeline"})
Expect(err).NotTo(HaveOccurred())
atcServer.RouteToHandler("PUT", path,
ghttp.CombineHandlers(
ghttp.VerifyHeaderKV(atc.ConfigVersionHeader, "42"),
func(w http.ResponseWriter, r *http.Request) {
config := getConfig(r)
Expect(config).To(Equal(payload))