本文整理汇总了Golang中github.com/cloudfoundry-incubator/diego-ssh/test_helpers/fake_io.FakeWriter类的典型用法代码示例。如果您正苦于以下问题:Golang FakeWriter类的具体用法?Golang FakeWriter怎么用?Golang FakeWriter使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了FakeWriter类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
Context("when the command fails to start", func() {
BeforeEach(func() {
fakeSecureSession.StartReturns(errors.New("oh well"))
})
It("returns the error", func() {
Expect(sessionError).To(MatchError("oh well"))
})
})
})
Context("when the shell or command has started", func() {
var (
stdin *fake_io.FakeReadCloser
stdout, stderr *fake_io.FakeWriter
stdinPipe *fake_io.FakeWriteCloser
stdoutPipe, stderrPipe *fake_io.FakeReader
)
BeforeEach(func() {
stdin = &fake_io.FakeReadCloser{}
stdin.ReadStub = func(p []byte) (int, error) {
p[0] = 0
return 1, io.EOF
}
stdinPipe = &fake_io.FakeWriteCloser{}
stdinPipe.WriteStub = func(p []byte) (int, error) {
defer GinkgoRecover()
Expect(p[0]).To(Equal(byte(0)))
return 1, nil
}
示例2:
"github.com/pivotal-golang/lager/lagertest"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
var _ = Describe("Copy", func() {
var logger lager.Logger
BeforeEach(func() {
logger = lagertest.NewTestLogger("test")
})
Describe("Copy", func() {
var reader io.Reader
var fakeWriter *fake_io.FakeWriter
var wg *sync.WaitGroup
BeforeEach(func() {
reader = strings.NewReader("message")
fakeWriter = &fake_io.FakeWriter{}
wg = nil
})
JustBeforeEach(func() {
helpers.Copy(logger, wg, fakeWriter, reader)
})
It("copies from source to target", func() {
Expect(fakeWriter.WriteCallCount()).To(Equal(1))
Expect(string(fakeWriter.WriteArgsForCall(0))).To(Equal("message"))