本文整理匯總了Golang中github.com/nttlabs/cli/cf/models.Application.Guid方法的典型用法代碼示例。如果您正苦於以下問題:Golang Application.Guid方法的具體用法?Golang Application.Guid怎麽用?Golang Application.Guid使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/nttlabs/cli/cf/models.Application
的用法示例。
在下文中一共展示了Application.Guid方法的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: makeAppWithRoute
func makeAppWithRoute(appName string) models.Application {
application := models.Application{}
application.Name = appName
application.Guid = "app-guid"
domain := models.DomainFields{}
domain.Name = "example.com"
route := models.RouteSummary{Host: "foo", Domain: domain}
secondRoute := models.RouteSummary{Host: appName, Domain: domain}
packgeUpdatedAt, _ := time.Parse("2006-01-02T15:04:05Z07:00", "2012-10-24T19:54:00Z")
application.State = "started"
application.InstanceCount = 2
application.RunningInstances = 2
application.Memory = 256
application.Routes = []models.RouteSummary{route, secondRoute}
application.PackageUpdatedAt = &packgeUpdatedAt
return application
}
示例2:
It("fails with usage when the app cannot be found", func() {
appRepo.ReadReturns.Error = errors.NewModelNotFoundError("app", "hocus-pocus")
runCommand("hocus-pocus")
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"FAILED"},
[]string{"not found"},
))
})
Context("when the app has at least one env var", func() {
BeforeEach(func() {
app = models.Application{}
app.Name = "my-app"
app.Guid = "the-app-guid"
appRepo.ReadReturns.App = app
appRepo.ReadEnvReturns(&models.Environment{
Environment: map[string]interface{}{
"my-key": "my-value",
"my-key2": "my-value2",
"first-key": 0,
"first-bool": false,
},
System: map[string]interface{}{
"VCAP_SERVICES": map[string]interface{}{
"pump-yer-brakes": "drive-slow",
},
},
Application: map[string]interface{}{
示例3:
It("fails requirements when not logged in", func() {
cmd := NewBindService(&testterm.FakeUI{}, testconfig.NewRepository(), &testapi.FakeServiceBindingRepo{})
testcmd.RunCommand(cmd, []string{"service", "app"}, requirementsFactory)
Expect(testcmd.CommandDidPassRequirements).To(BeFalse())
})
Context("when logged in", func() {
BeforeEach(func() {
requirementsFactory.LoginSuccess = true
})
It("binds a service instance to an app", func() {
app := models.Application{}
app.Name = "my-app"
app.Guid = "my-app-guid"
serviceInstance := models.ServiceInstance{}
serviceInstance.Name = "my-service"
serviceInstance.Guid = "my-service-guid"
requirementsFactory.Application = app
requirementsFactory.ServiceInstance = serviceInstance
serviceBindingRepo := &testapi.FakeServiceBindingRepo{}
ui := callBindService([]string{"my-app", "my-service"}, requirementsFactory, serviceBindingRepo)
Expect(requirementsFactory.ApplicationName).To(Equal("my-app"))
Expect(requirementsFactory.ServiceInstanceName).To(Equal("my-service"))
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"Binding service", "my-service", "my-app", "my-org", "my-space", "my-user"},
[]string{"OK"},
[]string{"TIP"},
示例4:
})
Describe("creating applications", func() {
It("makes the right request", func() {
ts, handler, repo := createAppRepo([]testnet.TestRequest{createApplicationRequest})
defer ts.Close()
params := defaultAppParams()
createdApp, apiErr := repo.Create(params)
Expect(handler).To(HaveAllRequestsCalled())
Expect(apiErr).NotTo(HaveOccurred())
app := models.Application{}
app.Name = "my-cool-app"
app.Guid = "my-cool-app-guid"
Expect(createdApp).To(Equal(app))
})
It("makes the right request with empty zone", func() {
createApplicationRequest_withEmptyZone := createApplicationRequest
createApplicationRequest_withEmptyZone.Matcher = testnet.RequestBodyMatcher(`{
"name":"my-cool-app",
"instances":3,
"buildpack":"buildpack-url",
"memory":2048,
"disk_quota": 512,
"space_guid":"some-space-guid",
"stack_guid":"some-stack-guid",
"command":"some-command"
}`)
示例5:
})
It("should output whatever greg sez", func() {
runCommand("my-app")
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"last uploaded", "unknown"},
))
})
})
})
Describe("when the app is not running", func() {
BeforeEach(func() {
application := models.Application{}
application.Name = "my-app"
application.Guid = "my-app-guid"
application.State = "stopped"
application.InstanceCount = 2
application.RunningInstances = 0
application.Memory = 256
now := time.Now()
application.PackageUpdatedAt = &now
appSummaryRepo.GetSummarySummary = application
requirementsFactory.Application = application
})
It("displays nice output when the app is stopped", func() {
appSummaryRepo.GetSummaryErrorCode = errors.APP_STOPPED
runCommand("my-app")
示例6:
callPush("non-existant-app")
Expect(ui.Outputs).To(ContainSubstrings([]string{"FAILED"}))
Expect(len(appRepo.CreateAppParams)).To(Equal(0))
})
})
})
})
Describe("re-pushing an existing app", func() {
var existingApp models.Application
BeforeEach(func() {
existingApp = models.Application{}
existingApp.Name = "existing-app"
existingApp.Guid = "existing-app-guid"
existingApp.Command = "unicorn -c config/unicorn.rb -D"
existingApp.EnvironmentVars = map[string]string{
"crazy": "pants",
"FOO": "NotYoBaz",
"foo": "manchu",
}
appRepo.ReadReturns.App = existingApp
appRepo.UpdateAppResult = existingApp
})
It("resets the app's buildpack when the -b flag is provided as 'default'", func() {
callPush("-b", "default", "existing-app")
Expect(*appRepo.UpdateParams.BuildpackUrl).To(Equal(""))
})
示例7:
var _ = Describe("delete app command", func() {
var (
cmd *DeleteApp
ui *testterm.FakeUI
app models.Application
configRepo core_config.ReadWriter
appRepo *testApplication.FakeApplicationRepository
routeRepo *testapi.FakeRouteRepository
requirementsFactory *testreq.FakeReqFactory
)
BeforeEach(func() {
app = models.Application{}
app.Name = "app-to-delete"
app.Guid = "app-to-delete-guid"
ui = &testterm.FakeUI{}
appRepo = &testApplication.FakeApplicationRepository{}
routeRepo = &testapi.FakeRouteRepository{}
requirementsFactory = &testreq.FakeReqFactory{}
configRepo = testconfig.NewRepositoryWithDefaults()
cmd = NewDeleteApp(ui, configRepo, appRepo, routeRepo)
})
runCommand := func(args ...string) {
testcmd.RunCommand(cmd, args, requirementsFactory)
}
It("fails requirements when not logged in", func() {
示例8:
if len(defaultInstanceErrorCodes) > 1 {
defaultInstanceErrorCodes = defaultInstanceErrorCodes[1:]
}
if errorCode != "" {
apiErr = errors.NewHttpError(400, errorCode, "Error staging app")
}
}
return
}
BeforeEach(func() {
ui = new(testterm.FakeUI)
requirementsFactory = &testreq.FakeReqFactory{}
defaultAppForStart.Name = "my-app"
defaultAppForStart.Guid = "my-app-guid"
defaultAppForStart.InstanceCount = 2
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{}