本文整理汇总了Golang中github.com/cloudfoundry-incubator/garden/client/connection/fakes.FakeConnection.StreamInStub方法的典型用法代码示例。如果您正苦于以下问题:Golang FakeConnection.StreamInStub方法的具体用法?Golang FakeConnection.StreamInStub怎么用?Golang FakeConnection.StreamInStub使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/cloudfoundry-incubator/garden/client/connection/fakes.FakeConnection
的用法示例。
在下文中一共展示了FakeConnection.StreamInStub方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
})
It("returns the error", func() {
_, err := container.Property(propertyName)
Ω(err).Should(Equal(disaster))
})
})
})
Describe("StreamIn", func() {
It("sends a stream in request", func() {
fakeConnection.StreamInStub = func(handle string, spec garden.StreamInSpec) error {
Ω(spec.Path).Should(Equal("to"))
Ω(spec.User).Should(Equal("frank"))
content, err := ioutil.ReadAll(spec.TarStream)
Ω(err).ShouldNot(HaveOccurred())
Ω(string(content)).Should(Equal("stuff"))
return nil
}
err := container.StreamIn(garden.StreamInSpec{
User: "frank",
Path: "to",
TarStream: bytes.NewBufferString("stuff"),
})
Ω(err).ShouldNot(HaveOccurred())
})
Context("when streaming in fails", func() {
disaster := errors.New("oh no!")
示例2:
})
It("returns the error", func() {
_, err := container.Info()
Ω(err).Should(Equal(disaster))
})
})
})
Describe("StreamIn", func() {
It("sends a stream in request", func() {
fakeConnection.StreamInStub = func(handle string, dst string, reader io.Reader) error {
Ω(dst).Should(Equal("to"))
content, err := ioutil.ReadAll(reader)
Ω(err).ShouldNot(HaveOccurred())
Ω(string(content)).Should(Equal("stuff"))
return nil
}
err := container.StreamIn("to", bytes.NewBufferString("stuff"))
Ω(err).ShouldNot(HaveOccurred())
})
Context("when streaming in fails", func() {
disaster := errors.New("oh no!")
BeforeEach(func() {
fakeConnection.StreamInReturns(
disaster)