本文整理匯總了Golang中github.com/cloudfoundry/cli/cf/models.RouteSummary類的典型用法代碼示例。如果您正苦於以下問題:Golang RouteSummary類的具體用法?Golang RouteSummary怎麽用?Golang RouteSummary使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了RouteSummary類的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1:
//save original command dependency and restore later
OriginalAppCommand = command_registry.Commands.FindCommand("app")
defaultInstanceErrorCodes = []string{"", ""}
defaultAppForStart = models.Application{}
defaultAppForStart.Name = "my-app"
defaultAppForStart.Guid = "my-app-guid"
defaultAppForStart.InstanceCount = 2
defaultAppForStart.PackageState = "STAGED"
domain := models.DomainFields{}
domain.Name = "example.com"
route := models.RouteSummary{}
route.Host = "my-app"
route.Domain = domain
defaultAppForStart.Routes = []models.RouteSummary{route}
instance1 := models.AppInstanceFields{}
instance1.State = models.InstanceStarting
instance2 := models.AppInstanceFields{}
instance2.State = models.InstanceStarting
instance3 := models.AppInstanceFields{}
instance3.State = models.InstanceRunning
instance4 := models.AppInstanceFields{}
示例2:
It("does not prompt when the -f flag is provided", func() {
runCommand("-f", "app-to-delete")
Expect(appRepo.ReadArgs.Name).To(Equal("app-to-delete"))
Expect(appRepo.DeletedAppGuid).To(Equal("app-to-delete-guid"))
Expect(ui.Prompts).To(BeEmpty())
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"Deleting", "app-to-delete"},
[]string{"OK"},
))
})
Describe("mapped routes", func() {
BeforeEach(func() {
route1 := models.RouteSummary{}
route1.Guid = "the-first-route-guid"
route1.Host = "my-app-is-good.com"
route2 := models.RouteSummary{}
route2.Guid = "the-second-route-guid"
route2.Host = "my-app-is-bad.com"
appRepo.ReadReturns.App = models.Application{
Routes: []models.RouteSummary{route1, route2},
}
})
Context("when the -r flag is provided", func() {
Context("when deleting routes succeeds", func() {
It("deletes the app's routes", func() {
示例3:
appGuid, _, _ := actor.UploadAppArgsForCall(0)
Expect(appGuid).To(Equal(existingApp.Guid))
})
It("does not stop the app when it is already stopped", func() {
existingApp.State = "stopped"
appRepo.ReadReturns.App = existingApp
appRepo.UpdateAppResult = existingApp
callPush("existing-app")
Expect(stopper.AppToStop.Guid).To(Equal(""))
})
It("updates the app", func() {
existingRoute := models.RouteSummary{}
existingRoute.Host = "existing-app"
existingApp.Routes = []models.RouteSummary{existingRoute}
appRepo.ReadReturns.App = existingApp
appRepo.UpdateAppResult = existingApp
stackRepo.FindByNameStack = models.Stack{
Name: "differentStack",
Guid: "differentStack-guid",
}
callPush(
"-c", "different start command",
"-i", "10",
"-m", "1G",
示例4:
package models_test
import (
"github.com/cloudfoundry/cli/cf/models"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
var _ = Describe("RouteSummary", func() {
Describe("URL", func() {
var (
r models.RouteSummary
host string
path string
port int
)
BeforeEach(func() {
host = ""
path = ""
port = 0
})
JustBeforeEach(func() {
r = models.RouteSummary{
Host: host,
Domain: models.DomainFields{
Name: "the-domain",
},
Path: path,