本文整理匯總了Golang中github.com/cloudfoundry-incubator/garden/fakes.FakeBackend.CreateArgsForCall方法的典型用法代碼示例。如果您正苦於以下問題:Golang FakeBackend.CreateArgsForCall方法的具體用法?Golang FakeBackend.CreateArgsForCall怎麽用?Golang FakeBackend.CreateArgsForCall使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/cloudfoundry-incubator/garden/fakes.FakeBackend
的用法示例。
在下文中一共展示了FakeBackend.CreateArgsForCall方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1:
{
SrcPath: "/bind/mount/src",
DstPath: "/bind/mount/dst",
Mode: garden.BindMountModeRW,
Origin: garden.BindMountOriginContainer,
},
},
Properties: garden.Properties{
"prop-a": "val-a",
"prop-b": "val-b",
},
Env: []string{"env1=env1Value", "env2=env2Value"},
})
Ω(err).ShouldNot(HaveOccurred())
Ω(serverBackend.CreateArgsForCall(0)).Should(Equal(garden.ContainerSpec{
Handle: "some-handle",
GraceTime: time.Duration(42 * time.Second),
Network: "some-network",
RootFSPath: "/path/to/rootfs",
BindMounts: []garden.BindMount{
{
SrcPath: "/bind/mount/src",
DstPath: "/bind/mount/dst",
Mode: garden.BindMountModeRW,
Origin: garden.BindMountOriginContainer,
},
},
Properties: map[string]string{
"prop-a": "val-a",
"prop-b": "val-b",
示例2:
spec := ResourceTypeContainerSpec{
Type: "some-resource-a",
}
fakeContainer := new(gfakes.FakeContainer)
fakeContainer.HandleReturns("created-handle")
workerA.CreateReturns(fakeContainer, nil)
container, err := workers[0].CreateContainer(id, spec)
Ω(err).ShouldNot(HaveOccurred())
Ω(container.Handle()).Should(Equal("created-handle"))
Ω(workerA.CreateCallCount()).Should(Equal(1))
Ω(workerA.CreateArgsForCall(0).Properties).Should(Equal(garden.Properties{
"concourse:name": "some-name",
}))
err = container.Destroy()
Ω(err).ShouldNot(HaveOccurred())
Ω(workerA.DestroyCallCount()).Should(Equal(1))
Ω(workerA.DestroyArgsForCall(0)).Should(Equal("created-handle"))
})
})
Describe("a looked-up container", func() {
It("calls through to garden", func() {
fakeContainer := new(gfakes.FakeContainer)
fakeContainer.HandleReturns("some-handle")