本文整理汇总了Golang中github.com/cloudfoundry/cli/cf/api/fakes.FakeApplicationRepository.UpdateAppResult方法的典型用法代码示例。如果您正苦于以下问题:Golang FakeApplicationRepository.UpdateAppResult方法的具体用法?Golang FakeApplicationRepository.UpdateAppResult怎么用?Golang FakeApplicationRepository.UpdateAppResult使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/cloudfoundry/cli/cf/api/fakes.FakeApplicationRepository
的用法示例。
在下文中一共展示了FakeApplicationRepository.UpdateAppResult方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
[]string{"FAILED"},
[]string{"disk quota"},
[]string{"positive integer"},
))
})
})
Describe("scaling an app", func() {
BeforeEach(func() {
app := maker.NewApp(maker.Overrides{"name": "my-app", "guid": "my-app-guid"})
app.InstanceCount = 42
app.DiskQuota = 1024
app.Memory = 256
requirementsFactory.Application = app
appRepo.UpdateAppResult = app
})
Context("when no flags are specified", func() {
It("prints a description of the app's limits", func() {
testcmd.RunCommand(cmd, []string{"my-app"}, requirementsFactory)
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"Showing", "my-app", "my-org", "my-space", "my-user"},
[]string{"OK"},
[]string{"memory", "256M"},
[]string{"disk", "1G"},
[]string{"instances", "42"},
))
Expect(ui.Outputs).ToNot(ContainSubstrings([]string{"Scaling", "my-app", "my-org", "my-space", "my-user"}))
示例2:
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(""))
})
It("resets the app's command when the -c flag is provided as 'default'", func() {
callPush("-c", "default", "existing-app")
Expect(*appRepo.UpdateParams.Command).To(Equal(""))
})
It("resets the app's buildpack when the -b flag is provided as 'null'", func() {
callPush("-b", "null", "existing-app")
Expect(*appRepo.UpdateParams.BuildpackUrl).To(Equal(""))
示例3:
})
It("warns the user when the app is already stopped", func() {
runCommand("my-app")
Expect(ui.Outputs).To(ContainSubstrings([]string{"my-app", "is already stopped"}))
Expect(appRepo.UpdateAppGuid).To(Equal(""))
})
})
Describe(".ApplicationStop()", func() {
It("returns the updated app model from ApplicationStop()", func() {
expectedStoppedApp := app
expectedStoppedApp.State = "stopped"
appRepo.UpdateAppResult = expectedStoppedApp
stopper := NewStop(ui, config, appRepo)
actualStoppedApp, err := stopper.ApplicationStop(app)
Expect(err).NotTo(HaveOccurred())
Expect(expectedStoppedApp).To(Equal(actualStoppedApp))
})
Context("When the app is already stopped", func() {
BeforeEach(func() {
app.State = "stopped"
})
It("returns the app without updating it", func() {
stopper := NewStop(ui, config, appRepo)
updatedApp, err := stopper.ApplicationStop(app)