本文整理汇总了Golang中github.com/concourse/atc/worker/fakes.FakeClient.CreateContainerCallCount方法的典型用法代码示例。如果您正苦于以下问题:Golang FakeClient.CreateContainerCallCount方法的具体用法?Golang FakeClient.CreateContainerCallCount怎么用?Golang FakeClient.CreateContainerCallCount使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/concourse/atc/worker/fakes.FakeClient
的用法示例。
在下文中一共展示了FakeClient.CreateContainerCallCount方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
fakeContainer = new(wfakes.FakeContainer)
fakeContainer.HandleReturns("some-handle")
fakeWorkerClient.CreateContainerReturns(fakeContainer, nil)
fakeProcess = new(gfakes.FakeProcess)
fakeProcess.IDReturns(42)
fakeContainer.RunReturns(fakeProcess, nil)
fakeContainer.StreamInReturns(nil)
})
Describe("before having created the container", func() {
BeforeEach(func() {
taskDelegate.InitializingStub = func(atc.TaskConfig) {
defer GinkgoRecover()
Ω(fakeWorkerClient.CreateContainerCallCount()).Should(BeZero())
}
})
It("invokes the delegate's Initializing callback", func() {
Ω(taskDelegate.InitializingCallCount()).Should(Equal(1))
Ω(taskDelegate.InitializingArgsForCall(0)).Should(Equal(fetchedConfig))
})
})
It("looked up the container via the session ID", func() {
Ω(fakeWorkerClient.LookupContainerArgsForCall(0)).Should(Equal(identifier))
})
It("gets the config from the input artifact soruce", func() {
Ω(configSource.FetchConfigCallCount()).Should(Equal(1))