本文整理匯總了Golang中code/cloudfoundry/org/cli/cf/models.Application.AppPorts方法的典型用法代碼示例。如果您正苦於以下問題:Golang Application.AppPorts方法的具體用法?Golang Application.AppPorts怎麽用?Golang Application.AppPorts使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類code/cloudfoundry/org/cli/cf/models.Application
的用法示例。
在下文中一共展示了Application.AppPorts方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1:
getAppSummaryModel.PackageUpdatedAt = nil
appSummaryRepo.GetSummaryReturns(getAppSummaryModel, nil)
})
It("prints 'unknown' as last uploaded", func() {
Expect(err).NotTo(HaveOccurred())
Expect(ui.Outputs()).To(ContainSubstrings(
[]string{"last uploaded: unknown"},
))
})
})
Context("when the application has no app ports", func() {
BeforeEach(func() {
getAppSummaryModel.AppPorts = []int{}
appSummaryRepo.GetSummaryReturns(getAppSummaryModel, nil)
})
It("does not print 'app ports'", func() {
Expect(err).NotTo(HaveOccurred())
Expect(ui.Outputs()).NotTo(ContainSubstrings(
[]string{"app ports:"},
))
})
})
Context("when the GetApplication model includes a buildpack", func() {
// this should be the GetAppSummary model
BeforeEach(func() {
示例2:
app2Routes := []models.RouteSummary{
{
Host: "app2",
Domain: models.DomainFields{Name: "cfapps.io"},
}}
app := models.Application{}
app.Name = "Application-1"
app.GUID = "Application-1-guid"
app.State = "started"
app.RunningInstances = 1
app.InstanceCount = 1
app.Memory = 512
app.DiskQuota = 1024
app.Routes = app1Routes
app.AppPorts = []int{8080, 9090}
app2 := models.Application{}
app2.Name = "Application-2"
app2.GUID = "Application-2-guid"
app2.State = "started"
app2.RunningInstances = 1
app2.InstanceCount = 2
app2.Memory = 256
app2.DiskQuota = 1024
app2.Routes = app2Routes
appSummaryRepo.GetSummariesInCurrentSpaceApps = []models.Application{app, app2}
deps = commandregistry.NewDependency(os.Stdout, new(tracefakes.FakePrinter), "")
})
示例3:
name, memory := fakeManifest.MemoryArgsForCall(0)
Expect(name).To(Equal("app-name"))
Expect(memory).To(Equal(int64(1024)))
})
It("sets instances", func() {
Expect(runCLIErr).NotTo(HaveOccurred())
Expect(fakeManifest.InstancesCallCount()).To(Equal(1))
name, instances := fakeManifest.InstancesArgsForCall(0)
Expect(name).To(Equal("app-name"))
Expect(instances).To(Equal(2))
})
Context("when there are app ports specified", func() {
BeforeEach(func() {
application.AppPorts = []int{1111, 2222}
appSummaryRepo.GetSummaryReturns(application, nil)
})
It("sets app ports", func() {
Expect(runCLIErr).NotTo(HaveOccurred())
Expect(fakeManifest.AppPortsCallCount()).To(Equal(1))
name, appPorts := fakeManifest.AppPortsArgsForCall(0)
Expect(name).To(Equal("app-name"))
Expect(appPorts).To(Equal([]int{1111, 2222}))
})
})
Context("when app ports are not specified", func() {
It("does not set app ports", func() {
Expect(runCLIErr).NotTo(HaveOccurred())