generate the streamI mock in the quic package

By doing so, we can mock private methods of the stream, so they cannot
be type-asserted by users of quic-go.
This commit is contained in:
Marten Seemann 2017-12-18 19:40:57 +07:00
parent 54ac21fbef
commit d2e31c04ab
19 changed files with 301 additions and 301 deletions

View file

@ -13,13 +13,13 @@ var _ = Describe("Stream", func() {
str = newCryptoStream(func() {}, nil, protocol.VersionWhatever).(*cryptoStream)
It("sets the read offset", func() {
str.SetReadOffset(0x42)
str.setReadOffset(0x42)
Expect(str.receiveStream.readOffset).To(Equal(protocol.ByteCount(0x42)))
Expect(str.receiveStream.frameQueue.readPosition).To(Equal(protocol.ByteCount(0x42)))
})
It("says if it has data for writing", func() {
Expect(str.HasDataForWriting()).To(BeFalse())
Expect(str.hasDataForWriting()).To(BeFalse())
done := make(chan struct{})
go func() {
defer GinkgoRecover()
@ -27,6 +27,6 @@ var _ = Describe("Stream", func() {
Expect(err).ToNot(HaveOccurred())
close(done)
}()
Eventually(str.HasDataForWriting).Should(BeTrue())
Eventually(str.hasDataForWriting).Should(BeTrue())
})
})