当前位置: 首页>>代码示例>>Golang>>正文


Golang FakeAppSummaryRepo.GetSummarySummary方法代码示例

本文整理汇总了Golang中github.com/cloudfoundry/cli/cf/api/fakes.FakeAppSummaryRepo.GetSummarySummary方法的典型用法代码示例。如果您正苦于以下问题:Golang FakeAppSummaryRepo.GetSummarySummary方法的具体用法?Golang FakeAppSummaryRepo.GetSummarySummary怎么用?Golang FakeAppSummaryRepo.GetSummarySummary使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在github.com/cloudfoundry/cli/cf/api/fakes.FakeAppSummaryRepo的用法示例。


在下文中一共展示了FakeAppSummaryRepo.GetSummarySummary方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。

示例1:

		deps.RepoLocator = deps.RepoLocator.SetAppInstancesRepository(appInstancesRepo)
		command_registry.Commands.SetCommand(command_registry.Commands.FindCommand("app").SetDependency(deps, pluginCall))
	}

	BeforeEach(func() {
		ui = &testterm.FakeUI{}
		appSummaryRepo = &testapi.FakeAppSummaryRepo{}
		appLogsNoaaRepo = &testapi.FakeLogsNoaaRepository{}
		appInstancesRepo = &testAppInstanaces.FakeAppInstancesRepository{}
		configRepo = testconfig.NewRepositoryWithDefaults()
		requirementsFactory = &testreq.FakeReqFactory{
			LoginSuccess:         true,
			TargetedSpaceSuccess: true,
		}
		app = makeAppWithRoute("my-app")
		appSummaryRepo.GetSummarySummary = app

		deps = command_registry.NewDependency()
		updateCommandDependency(false)
	})

	runCommand := func(args ...string) bool {
		cmd := command_registry.Commands.FindCommand("app")
		return testcmd.RunCliCommand(cmd, args, requirementsFactory)
	}

	Describe("requirements", func() {
		It("fails if not logged in", func() {
			requirementsFactory.LoginSuccess = false
			Expect(runCommand("my-app")).To(BeFalse())
		})
开发者ID:MontesClarosServidores,项目名称:cli,代码行数:31,代码来源:app_test.go

示例2:

				MemUsage:  13 * formatters.BYTE,
			}

			appInstance2 = models.AppInstanceFields{
				State: models.InstanceDown,
				Since: testtime.MustParse("Mon Jan 2 15:04:05 -0700 MST 2006", "Mon Apr 1 15:04:05 -0700 MST 2012"),
			}

			instances = []models.AppInstanceFields{appInstance, appInstance2}
			appInstancesRepo.GetInstancesReturns(instances, nil)
		})

		Context("app with Services, Routes, Environment Vars", func() {
			BeforeEach(func() {
				app := makeAppWithOptions("my-app")
				appSummaryRepo.GetSummarySummary = app
				requirementsFactory.Application = app
			})

			It("creates a manifest with services, routes and environment vars", func() {
				runCommand("my-app")
				Ω(fakeManifest.MemoryCallCount()).To(Equal(1))
				Ω(fakeManifest.EnvironmentVarsCallCount()).To(Equal(1))
				Ω(fakeManifest.HealthCheckTimeoutCallCount()).To(Equal(1))
				Ω(fakeManifest.InstancesCallCount()).To(Equal(1))
				Ω(fakeManifest.DomainCallCount()).To(Equal(2))
				Ω(fakeManifest.ServiceCallCount()).To(Equal(1))
				Ω(fakeManifest.StartCommandCallCount()).To(Equal(1))
			})
		})
开发者ID:rcreddy06,项目名称:cli,代码行数:30,代码来源:create_app_manifest_test.go


注:本文中的github.com/cloudfoundry/cli/cf/api/fakes.FakeAppSummaryRepo.GetSummarySummary方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。