本文整理匯總了Golang中github.com/cloudfoundry/storeadapter/fakestoreadapter.FakeStoreAdapter.Reset方法的典型用法代碼示例。如果您正苦於以下問題:Golang FakeStoreAdapter.Reset方法的具體用法?Golang FakeStoreAdapter.Reset怎麽用?Golang FakeStoreAdapter.Reset使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/cloudfoundry/storeadapter/fakestoreadapter.FakeStoreAdapter
的用法示例。
在下文中一共展示了FakeStoreAdapter.Reset方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1:
expectedStartMessage = models.NewPendingStartMessage(clock.Now(), conf.GracePeriod(), 0, yetAnotherApp.AppGuid, yetAnotherApp.AppVersion, 1, 1.0, models.PendingStartMessageReasonMissing)
Ω(startMessages()).Should(ContainElement(EqualPendingStartMessage(expectedStartMessage)))
Ω(stopMessages()).Should(HaveLen(2))
expectedStopMessage := models.NewPendingStopMessage(clock.Now(), 0, conf.GracePeriod(), app.AppGuid, app.AppVersion, app.InstanceAtIndex(1).InstanceGuid, models.PendingStopMessageReasonExtra)
Ω(stopMessages()).Should(ContainElement(EqualPendingStopMessage(expectedStopMessage)))
expectedStopMessage = models.NewPendingStopMessage(clock.Now(), 0, conf.GracePeriod(), undesiredApp.AppGuid, undesiredApp.AppVersion, undesiredApp.InstanceAtIndex(0).InstanceGuid, models.PendingStopMessageReasonExtra)
Ω(stopMessages()).Should(ContainElement(EqualPendingStopMessage(expectedStopMessage)))
})
})
Context("When the store is not fresh and/or fails to fetch data", func() {
BeforeEach(func() {
storeAdapter.Reset()
desired := app.DesiredState(1)
//this setup would, ordinarily, trigger a start and a stop
store.SyncDesiredState(
desired,
)
store.SyncHeartbeats(
appfixture.NewAppFixture().Heartbeat(0),
)
})
Context("when the desired state is not fresh", func() {
BeforeEach(func() {
store.BumpActualFreshness(time.Unix(10, 0))
})