本文整理匯總了Golang中cf/configuration.Repository.SetApiEndpoint方法的典型用法代碼示例。如果您正苦於以下問題:Golang Repository.SetApiEndpoint方法的具體用法?Golang Repository.SetApiEndpoint怎麽用?Golang Repository.SetApiEndpoint使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類cf/configuration.Repository
的用法示例。
在下文中一共展示了Repository.SetApiEndpoint方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1:
buildpack models.Buildpack
testServer *httptest.Server
testServerHandler *testnet.TestHandler
)
BeforeEach(func() {
gateway := net.NewCloudControllerGateway(configRepo)
pwd, _ := os.Getwd()
buildpacksDir = filepath.Join(pwd, "../../fixtures/buildpacks")
configRepo = testconfig.NewRepositoryWithDefaults()
repo = NewCloudControllerBuildpackBitsRepository(configRepo, gateway, app_files.ApplicationZipper{})
buildpack = models.Buildpack{Name: "my-cool-buildpack", Guid: "my-cool-buildpack-guid"}
testServer, testServerHandler = testnet.NewServer([]testnet.TestRequest{uploadBuildpackRequest()})
configRepo.SetApiEndpoint(testServer.URL)
})
AfterEach(func() {
testServer.Close()
})
Describe("#UploadBuildpack", func() {
It("fails to upload a buildpack with an invalid directory", func() {
apiErr := repo.UploadBuildpack(buildpack, "/foo/bar")
Expect(apiErr).NotTo(BeNil())
Expect(apiErr.Error()).To(ContainSubstring("Error opening buildpack file"))
})
It("uploads a valid buildpack directory", func() {
buildpackPath := filepath.Join(buildpacksDir, "example-buildpack")
示例2:
testconfig "testhelpers/configuration"
testterm "testhelpers/terminal"
)
var _ = Describe("ApiEndpointRequirement", func() {
var (
ui *testterm.FakeUI
config configuration.Repository
)
BeforeEach(func() {
ui = new(testterm.FakeUI)
config = testconfig.NewRepository()
})
It("succeeds when given a config with an API endpoint", func() {
config.SetApiEndpoint("api.example.com")
req := NewApiEndpointRequirement(ui, config)
success := req.Execute()
Expect(success).To(BeTrue())
})
It("fails when given a config without an API endpoint", func() {
req := NewApiEndpointRequirement(ui, config)
success := req.Execute()
Expect(success).To(BeFalse())
testassert.SliceContains(ui.Outputs, testassert.Lines{{"No API endpoint"}})
})
})
示例3:
Expect(apiResponse.Message).To(ContainSubstring("Error opening buildpack file"))
})
It("uploads a valid buildpack directory", func() {
buildpackPath := filepath.Join(buildpacksDir, "example-buildpack")
os.Chmod(filepath.Join(buildpackPath, "bin/compile"), 0755)
os.Chmod(filepath.Join(buildpackPath, "bin/detect"), 0755)
err := os.Chmod(filepath.Join(buildpackPath, "bin/release"), 0755)
Expect(err).NotTo(HaveOccurred())
ts, handler := testnet.NewTLSServer([]testnet.TestRequest{
uploadBuildpackRequest(buildpackPath),
})
defer ts.Close()
configRepo.SetApiEndpoint(ts.URL)
apiResponse := repo.UploadBuildpack(buildpack, buildpackPath)
Expect(handler.AllRequestsCalled()).To(BeTrue())
Expect(apiResponse.IsSuccessful()).To(BeTrue())
})
It("uploads a valid zipped buildpack", func() {
buildpackPath := filepath.Join(buildpacksDir, "example-buildpack.zip")
ts, handler := testnet.NewTLSServer([]testnet.TestRequest{
uploadBuildpackRequest(buildpackPath),
})
defer ts.Close()
configRepo.SetApiEndpoint(ts.URL)
示例4:
Describe("List routes", func() {
It("lists routes in the current space", func() {
ts, handler = testnet.NewServer([]testnet.TestRequest{
testapi.NewCloudControllerTestRequest(testnet.TestRequest{
Method: "GET",
Path: "/v2/spaces/the-space-guid/routes?inline-relations-depth=1",
Response: firstPageRoutesResponse,
}),
testapi.NewCloudControllerTestRequest(testnet.TestRequest{
Method: "GET",
Path: "/v2/spaces/the-space-guid/routes?inline-relations-depth=1&page=2",
Response: secondPageRoutesResponse,
}),
})
configRepo.SetApiEndpoint(ts.URL)
routes := []models.Route{}
apiErr := repo.ListRoutes(func(route models.Route) bool {
routes = append(routes, route)
return true
})
Expect(len(routes)).To(Equal(2))
Expect(routes[0].Guid).To(Equal("route-1-guid"))
Expect(routes[1].Guid).To(Equal("route-2-guid"))
Expect(handler).To(testnet.HaveAllRequestsCalled())
Expect(apiErr).NotTo(HaveOccurred())
})
It("finds a route by host and domain", func() {