split the stream into a receive and a send stream

This commit is contained in:
Marten Seemann 2017-12-16 15:55:01 +07:00
parent c0eb12bb29
commit e926b0805a
12 changed files with 1942 additions and 1626 deletions

View file

@ -678,7 +678,9 @@ var _ = Describe("Streams Map", func() {
BeforeEach(func() {
callbackCalledForStream = callbackCalledForStream[:0]
for i := 4; i <= 8; i++ {
err := m.putStream(&stream{streamID: protocol.StreamID(i)})
str := mocks.NewMockStreamI(mockCtrl)
str.EXPECT().StreamID().Return(protocol.StreamID(i)).AnyTimes()
err := m.putStream(str)
Expect(err).NotTo(HaveOccurred())
}
})