本文整理汇总了Golang中github.com/cloudfoundry/cli/cf/api/fakes.FakeLogsNoaaRepository.TailNoaaLogsForReturns方法的典型用法代码示例。如果您正苦于以下问题:Golang FakeLogsNoaaRepository.TailNoaaLogsForReturns方法的具体用法?Golang FakeLogsNoaaRepository.TailNoaaLogsForReturns怎么用?Golang FakeLogsNoaaRepository.TailNoaaLogsForReturns使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/cloudfoundry/cli/cf/api/fakes.FakeLogsNoaaRepository
的用法示例。
在下文中一共展示了FakeLogsNoaaRepository.TailNoaaLogsForReturns方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
args := []string{"my-app"}
ui := callStart(args, config, requirementsFactory, displayApp, appRepo, appInstancesRepo, logRepo)
Expect(ui.Outputs).To(ContainSubstrings([]string{"my-app", "is already started"}))
Expect(appRepo.UpdateAppGuid).To(Equal(""))
})
It("tells the user when connecting to the log server fails", func() {
configRepo := testconfig.NewRepositoryWithDefaults()
displayApp := &testcmd.FakeAppDisplayer{}
appRepo := &testApplication.FakeApplicationRepository{}
appRepo.ReadReturns.App = defaultAppForStart
appInstancesRepo := &testAppInstanaces.FakeAppInstancesRepository{}
logRepo.TailNoaaLogsForReturns(errors.New("Ooops"))
requirementsFactory.Application = defaultAppForStart
ui := callStart([]string{"my-app"}, configRepo, requirementsFactory, displayApp, appRepo, appInstancesRepo, logRepo)
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"error tailing logs"},
[]string{"Ooops"},
))
})
})
})
示例2:
It("tails the app's logs when no flags are given", func() {
runCommand("my-app")
Expect(requirementsFactory.ApplicationName).To(Equal("my-app"))
appGuid, _, _ := noaaRepo.TailNoaaLogsForArgsForCall(0)
Expect(app.Guid).To(Equal(appGuid))
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"Connected, tailing logs for app", "my-app", "my-org", "my-space", "my-user"},
[]string{"Log Line 1"},
))
})
Context("when the loggregator server has an invalid cert", func() {
Context("when the skip-ssl-validation flag is not set", func() {
It("fails and informs the user about the skip-ssl-validation flag", func() {
noaaRepo.TailNoaaLogsForReturns(errors.NewInvalidSSLCert("https://example.com", "it don't work good"))
runCommand("my-app")
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"Received invalid SSL certificate", "https://example.com"},
[]string{"TIP"},
))
})
It("informs the user of the error when they include the --recent flag", func() {
noaaRepo.RecentLogsForReturns(nil, errors.NewInvalidSSLCert("https://example.com", "how does SSL work???"))
runCommand("--recent", "my-app")
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"Received invalid SSL certificate", "https://example.com"},
[]string{"TIP"},