本文整理匯總了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))