本文整理汇总了Golang中github.com/cloudfoundry/cli/cf/api/fakes.FakeLogsNoaaRepository.TailNoaaLogsForArgsForCall方法的典型用法代码示例。如果您正苦于以下问题:Golang FakeLogsNoaaRepository.TailNoaaLogsForArgsForCall方法的具体用法?Golang FakeLogsNoaaRepository.TailNoaaLogsForArgsForCall怎么用?Golang FakeLogsNoaaRepository.TailNoaaLogsForArgsForCall使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/cloudfoundry/cli/cf/api/fakes.FakeLogsNoaaRepository
的用法示例。
在下文中一共展示了FakeLogsNoaaRepository.TailNoaaLogsForArgsForCall方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
noaaRepo.RecentLogsForReturns([]*events.LogMessage{
testlogs.NewNoaaLogMessage("hello%2Bworld%v", app.Guid, "DEA", time.Now()),
}, nil)
})
It("does not treat them as format strings", func() {
runCommand("--recent", "my-app")
Expect(ui.Outputs).To(ContainSubstrings([]string{"hello%2Bworld%v"}))
})
})
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"},