本文整理汇总了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()