本文整理汇总了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
示例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"},
))