當前位置: 首頁>>代碼示例>>Golang>>正文


Golang FakeLogsNoaaRepository.TailNoaaLogsForStub方法代碼示例

本文整理匯總了Golang中github.com/cloudfoundry/cli/cf/api/fakes.FakeLogsNoaaRepository.TailNoaaLogsForStub方法的典型用法代碼示例。如果您正苦於以下問題:Golang FakeLogsNoaaRepository.TailNoaaLogsForStub方法的具體用法?Golang FakeLogsNoaaRepository.TailNoaaLogsForStub怎麽用?Golang FakeLogsNoaaRepository.TailNoaaLogsForStub使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在github.com/cloudfoundry/cli/cf/api/fakes.FakeLogsNoaaRepository的用法示例。


在下文中一共展示了FakeLogsNoaaRepository.TailNoaaLogsForStub方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1:

		instance4 := models.AppInstanceFields{}
		instance4.State = models.InstanceStarting

		defaultInstanceResponses = [][]models.AppInstanceFields{
			[]models.AppInstanceFields{instance1, instance2},
			[]models.AppInstanceFields{instance1, instance2},
			[]models.AppInstanceFields{instance3, instance4},
		}

		logsForTail = []*events.LogMessage{}
		logRepo = new(testapi.FakeLogsNoaaRepository)
		logRepo.TailNoaaLogsForStub = func(appGuid string, onConnect func(), onMessage func(*events.LogMessage)) error {
			onConnect()
			for _, log := range logsForTail {
				onMessage(log)
			}
			return nil
		}
	})

	callStart := func(args []string, config core_config.Reader, requirementsFactory *testreq.FakeReqFactory, displayApp ApplicationDisplayer, appRepo applications.ApplicationRepository, appInstancesRepo app_instances.AppInstancesRepository, logRepo api.LogsNoaaRepository) (ui *testterm.FakeUI) {
		ui = new(testterm.FakeUI)

		cmd := NewStart(ui, config, displayApp, appRepo, appInstancesRepo, logRepo)
		cmd.StagingTimeout = 100 * time.Millisecond
		cmd.StartupTimeout = 200 * time.Millisecond
		cmd.PingerThrottle = 50 * time.Millisecond

		testcmd.RunCommand(cmd, args, requirementsFactory)
		return
開發者ID:raghulsid,項目名稱:cli,代碼行數:30,代碼來源:start_test.go

示例2:

			recentLogs := []*events.LogMessage{
				testlogs.NewNoaaLogMessage("Log Line 1", app.Guid, "DEA", currentTime),
				testlogs.NewNoaaLogMessage("Log Line 2", app.Guid, "DEA", currentTime),
			}

			appLogs := []*events.LogMessage{
				testlogs.NewLogMessage("Log Line 1", app.Guid, "DEA", time.Now()),
			}

			requirementsFactory.Application = app
			noaaRepo.RecentLogsForReturns(recentLogs, nil)

			noaaRepo.TailNoaaLogsForStub = func(appGuid string, onConnect func(), onMessage func(*events.LogMessage)) error {
				onConnect()
				for _, log := range appLogs {
					onMessage(log)
				}
				return nil
			}
		})

		It("shows the recent logs when the --recent flag is provided", func() {
			runCommand("--recent", "my-app")

			Expect(requirementsFactory.ApplicationName).To(Equal("my-app"))
			Expect(app.Guid).To(Equal(noaaRepo.RecentLogsForArgsForCall(0)))
			Expect(ui.Outputs).To(ContainSubstrings(
				[]string{"Connected, dumping recent logs for app", "my-app", "my-org", "my-space", "my-user"},
				[]string{"Log Line 1"},
				[]string{"Log Line 2"},
			))
開發者ID:raghulsid,項目名稱:cli,代碼行數:31,代碼來源:logs_test.go


注:本文中的github.com/cloudfoundry/cli/cf/api/fakes.FakeLogsNoaaRepository.TailNoaaLogsForStub方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。