本文整理匯總了Golang中github.com/concourse/atc/resource/fakes.FakeVersionedSource.RunStub方法的典型用法代碼示例。如果您正苦於以下問題:Golang FakeVersionedSource.RunStub方法的具體用法?Golang FakeVersionedSource.RunStub怎麽用?Golang FakeVersionedSource.RunStub使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/concourse/atc/resource/fakes.FakeVersionedSource
的用法示例。
在下文中一共展示了FakeVersionedSource.RunStub方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1:
step.Release()
Expect(fakeResource.ReleaseCallCount()).To(Equal(1))
Expect(fakeResource.ReleaseArgsForCall(0)).To(Equal(worker.FinalTTL(5 * time.Minute)))
})
})
Describe("signalling", func() {
var receivedSignals <-chan os.Signal
BeforeEach(func() {
sigs := make(chan os.Signal)
receivedSignals = sigs
fakeVersionedSource.RunStub = func(signals <-chan os.Signal, ready chan<- struct{}) error {
close(ready)
sigs <- <-signals
return nil
}
})
It("forwards to the resource", func() {
process.Signal(os.Interrupt)
Eventually(receivedSignals).Should(Receive(Equal(os.Interrupt)))
Eventually(process.Wait()).Should(Receive())
})
})
Context("when performing the put fails", func() {
Context("with an unknown error", func() {
disaster := errors.New("nope")
示例2:
Expect(ioConfig.Stderr).To(Equal(stderrBuf))
})
Context("when the cache is not initialized", func() {
BeforeEach(func() {
fakeCache.IsInitializedReturns(false, nil)
})
It("runs the get resource action", func() {
Expect(fakeVersionedSource.RunCallCount()).To(Equal(1))
})
Context("after the 'get' action completes", func() {
BeforeEach(func() {
fakeVersionedSource.RunStub = func(signals <-chan os.Signal, ready chan<- struct{}) error {
Expect(fakeCache.InitializeCallCount()).To(Equal(0))
return nil
}
})
It("exits with no error", func() {
Expect(<-process.Wait()).To(BeNil())
})
It("marks the cache as initialized", func() {
<-process.Wait()
Expect(fakeCache.InitializeCallCount()).To(Equal(1))
})
It("reports the fetched version info", func() {
<-process.Wait()