當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。