本文整理匯總了Golang中code/cloudfoundry/org/cli/cf/models.Application.Services方法的典型用法代碼示例。如果您正苦於以下問題:Golang Application.Services方法的具體用法?Golang Application.Services怎麽用?Golang Application.Services使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類code/cloudfoundry/org/cli/cf/models.Application
的用法示例。
在下文中一共展示了Application.Services方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: ToModel
func (resource ApplicationFromSummary) ToModel() models.Application {
var app models.Application
app.ApplicationFields = resource.ToFields()
routes := []models.RouteSummary{}
for _, route := range resource.Routes {
routes = append(routes, route.ToModel())
}
app.Routes = routes
services := []models.ServicePlanSummary{}
for _, service := range resource.Services {
services = append(services, service.ToModel())
}
app.Routes = routes
app.Services = services
return app
}
示例2:
It("sets the buildpack", func() {
Expect(runCLIErr).NotTo(HaveOccurred())
Expect(fakeManifest.BuildpackURLCallCount()).To(Equal(1))
name, buildpack := fakeManifest.BuildpackURLArgsForCall(0)
Expect(name).To(Equal("app-name"))
Expect(buildpack).To(Equal("buildpack"))
})
})
Context("when the app has services", func() {
BeforeEach(func() {
application.Services = []models.ServicePlanSummary{
{
Name: "sp1-name",
},
{
Name: "sp2-name",
},
}
appSummaryRepo.GetSummaryReturns(application, nil)
})
It("sets the services", func() {
Expect(runCLIErr).NotTo(HaveOccurred())
Expect(fakeManifest.ServiceCallCount()).To(Equal(2))
name, service := fakeManifest.ServiceArgsForCall(0)
Expect(name).To(Equal("app-name"))
Expect(service).To(Equal("sp1-name"))
name, service = fakeManifest.ServiceArgsForCall(1)