本文整理汇总了Golang中github.com/cloudfoundry-incubator/routing-api/fake_routing_api.FakeClient.RoutesStub方法的典型用法代码示例。如果您正苦于以下问题:Golang FakeClient.RoutesStub方法的具体用法?Golang FakeClient.RoutesStub怎么用?Golang FakeClient.RoutesStub使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/cloudfoundry-incubator/routing-api/fake_routing_api.FakeClient
的用法示例。
在下文中一共展示了FakeClient.RoutesStub方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
It("uses cache when fetching token from UAA", func() {
client.RoutesReturns(response, nil)
err := fetcher.FetchRoutes()
Expect(err).ToNot(HaveOccurred())
Expect(uaaClient.FetchTokenCallCount()).To(Equal(1))
Expect(uaaClient.FetchTokenArgsForCall(0)).To(Equal(false))
})
Context("when a cached token is invalid", func() {
BeforeEach(func() {
count := 0
client.RoutesStub = func() ([]models.Route, error) {
if count == 0 {
count++
return nil, errors.New("unauthorized")
} else {
return response, nil
}
}
})
It("uses cache when fetching token from UAA", func() {
client = &fake_routing_api.FakeClient{}
err := fetcher.FetchRoutes()
Expect(err).ToNot(HaveOccurred())
Expect(uaaClient.FetchTokenCallCount()).To(Equal(2))
Expect(uaaClient.FetchTokenArgsForCall(0)).To(Equal(false))
Expect(uaaClient.FetchTokenArgsForCall(1)).To(Equal(true))
})
})
示例2:
Describe(".StartFetchCycle", func() {
BeforeEach(func() {
cfg.PruneStaleDropletsInterval = 10 * time.Millisecond
fetcher = NewRouteFetcher(logger, tokenFetcher, registry, cfg, client, retryInterval)
tokenFetcher.FetchTokenReturns(token, nil)
client.RoutesReturns(response, nil)
})
It("periodically fetches routes", func() {
received := make(chan struct{})
client.RoutesStub = func() ([]db.Route, error) {
received <- struct{}{}
return []db.Route{}, nil
}
fetcher.StartFetchCycle()
Eventually(received).Should(Receive())
Eventually(received).Should(Receive())
})
It("logs the error", func() {
tokenFetcher.FetchTokenReturns(nil, errors.New("Unauthorized"))
fetcher.StartFetchCycle()
Eventually(func() int {
return len(sink.Records())
}).Should(BeNumerically(">=", 1))