本文整理汇总了Golang中github.com/cloudfoundry-incubator/garden/client/connection/fakes.FakeConnection.StopArgsForCall方法的典型用法代码示例。如果您正苦于以下问题:Golang FakeConnection.StopArgsForCall方法的具体用法?Golang FakeConnection.StopArgsForCall怎么用?Golang FakeConnection.StopArgsForCall使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/cloudfoundry-incubator/garden/client/connection/fakes.FakeConnection
的用法示例。
在下文中一共展示了FakeConnection.StopArgsForCall方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
container, err = client.Create(garden.ContainerSpec{})
Ω(err).ShouldNot(HaveOccurred())
})
Describe("Handle", func() {
It("returns the container's handle", func() {
Ω(container.Handle()).Should(Equal("some-handle"))
})
})
Describe("Stop", func() {
It("sends a stop request", func() {
err := container.Stop(true)
Ω(err).ShouldNot(HaveOccurred())
handle, kill := fakeConnection.StopArgsForCall(0)
Ω(handle).Should(Equal("some-handle"))
Ω(kill).Should(BeTrue())
})
Context("when stopping fails", func() {
disaster := errors.New("oh no!")
BeforeEach(func() {
fakeConnection.StopReturns(disaster)
})
It("returns the error", func() {
err := container.Stop(true)
Ω(err).Should(Equal(disaster))
})
示例2:
})
})
})
Describe("Stop", func() {
itRetries(func() error {
return conn.Stop("la-contineur", true)
}, func(err error) {
innerConnection.StopReturns(err)
}, func() int {
return innerConnection.StopCallCount()
}, func() {
It("calls through to garden", func() {
Ω(innerConnection.StopCallCount()).Should(Equal(1))
handle, kill := innerConnection.StopArgsForCall(0)
Ω(handle).Should(Equal("la-contineur"))
Ω(kill).Should(Equal(true))
})
})
})
Describe("StreamIn", func() {
BeforeEach(func() {
durations := make(chan time.Duration, 1)
durations <- time.Second
close(durations)
retryPolicy.DelayForStub = func(failedAttempts uint) (time.Duration, bool) {
select {
case d, ok := <-durations: