当前位置: 首页>>代码示例>>Golang>>正文


Golang Backend.BuildRecipe方法代码示例

本文整理汇总了Golang中github.com/cloudfoundry-incubator/stager/backend.Backend.BuildRecipe方法的典型用法代码示例。如果您正苦于以下问题:Golang Backend.BuildRecipe方法的具体用法?Golang Backend.BuildRecipe怎么用?Golang Backend.BuildRecipe使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在github.com/cloudfoundry-incubator/stager/backend.Backend的用法示例。


在下文中一共展示了Backend.BuildRecipe方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。

示例1:

			},
			EgressRules:   egressRules,
			Timeout:       timeout,
			Lifecycle:     "docker",
			LifecycleData: &lifecycleData,
		}
	})

	Describe("request validation", func() {
		Context("with a missing docker image url", func() {
			BeforeEach(func() {
				dockerImageUrl = ""
			})

			It("returns an error", func() {
				_, _, _, err := docker.BuildRecipe(stagingGuid, stagingRequest)
				Expect(err).To(Equal(backend.ErrMissingDockerImageUrl))
			})
		})

		Context("with a missing credentials set", func() {
			Context("with missing user", func() {
				BeforeEach(func() {
					dockerPassword = "password"
					dockerEmail = "[email protected]"
				})

				It("returns an error", func() {
					_, _, _, err := docker.BuildRecipe(stagingGuid, stagingRequest)
					Expect(err).To(Equal(backend.ErrMissingDockerCredentials))
				})
开发者ID:guanglinlv,项目名称:stager,代码行数:31,代码来源:docker_backend_test.go

示例2:

			EgressRules:        egressRules,
			Timeout:            timeout,
			Lifecycle:          "buildpack",
			LifecycleData:      &lifecycleData,
			CompletionCallback: "https://api.cc.com/v1/staging/some-staging-guid/droplet_completed",
		}
	})

	Describe("request validation", func() {
		Context("with a missing app bits download uri", func() {
			BeforeEach(func() {
				appBitsDownloadUri = ""
			})

			It("returns an error", func() {
				_, _, _, err := traditional.BuildRecipe(stagingGuid, stagingRequest)
				Expect(err).To(Equal(backend.ErrMissingAppBitsDownloadUri))
			})
		})

		Context("with missing lifecycle data", func() {
			JustBeforeEach(func() {
				stagingRequest.LifecycleData = nil
			})

			It("returns an error", func() {
				_, _, _, err := traditional.BuildRecipe(stagingGuid, stagingRequest)
				Expect(err).To(Equal(backend.ErrMissingLifecycleData))
			})
		})
	})
开发者ID:emc-xchallenge,项目名称:stager,代码行数:31,代码来源:buildpack_backend_test.go

示例3:

				EgressRules: []*models.SecurityGroupRule{
					{
						Protocol:     "TCP",
						Destinations: []string{"0.0.0.0/0"},
						PortRange:    &models.PortRange{Start: 80, End: 443},
					},
				},
				Timeout:            timeout,
				Lifecycle:          "docker",
				LifecycleData:      &lifecycleData,
				CompletionCallback: "https://api.cc.com/v1/staging/some-staging-guid/droplet_completed",
			}
		})

		It("returns the task domain", func() {
			_, _, domain, err := docker.BuildRecipe("staging-guid", stagingRequest)
			Expect(err).NotTo(HaveOccurred())
			Expect(domain).To(Equal("config-task-domain"))
		})

		It("returns the task guid", func() {
			_, guid, _, err := docker.BuildRecipe("staging-guid", stagingRequest)
			Expect(err).NotTo(HaveOccurred())
			Expect(guid).To(Equal("staging-guid"))
		})

		It("sets the task LogGuid", func() {
			taskDef, _, _, err := docker.BuildRecipe("staging-guid", stagingRequest)
			Expect(err).NotTo(HaveOccurred())
			Expect(taskDef.LogGuid).To(Equal("log-guid"))
		})
开发者ID:cfibmers,项目名称:stager,代码行数:31,代码来源:docker_backend_test.go

示例4:

			stagingRequest    cc_messages.StagingRequestFromCC
		)

		BeforeEach(func() {
			dockerRegistryIPs = []string{"10.244.2.6", "10.244.2.7"}
			consulCluster = newConsulCluster(dockerRegistryIPs)
		})

		Context("user did not opt-in for docker image caching", func() {
			BeforeEach(func() {
				dockerBackend = setupDockerBackend(validDockerRegistryAddress, []string{}, consulCluster)
				stagingRequest = setupStagingRequest(false, "", "", "", "")
			})

			It("creates a cf-app-docker-staging Task with no additional egress rules", func() {
				taskDef, _, _, err := dockerBackend.BuildRecipe("staging-guid", stagingRequest)
				Expect(err).NotTo(HaveOccurred())
				Expect(taskDef.EgressRules).To(Equal(stagingRequest.EgressRules))
			})
		})

		Context("user opted-in for docker image caching", func() {
			BeforeEach(func() {
				stagingRequest = setupStagingRequest(true, "", "", "", "")
			})

			Context("when an invalid docker registry address is given", func() {
				BeforeEach(func() {
					dockerBackend = setupDockerBackend("://host:", []string{}, consulCluster)
				})
开发者ID:emc-xchallenge,项目名称:stager,代码行数:30,代码来源:docker_registry_test.go


注:本文中的github.com/cloudfoundry-incubator/stager/backend.Backend.BuildRecipe方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。