mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
fix flaky send stream test
This commit is contained in:
parent
2ccd795a61
commit
f2a1206c20
1 changed files with 4 additions and 2 deletions
|
@ -486,13 +486,15 @@ var _ = Describe("Send Stream", func() {
|
|||
|
||||
It("says when it has data for sending", func() {
|
||||
mockFC.EXPECT().UpdateSendWindow(gomock.Any())
|
||||
mockSender.EXPECT().onHasStreamData(streamID)
|
||||
mockSender.EXPECT().onHasStreamData(streamID).Times(2) // once for Write, once for the MAX_STREAM_DATA frame
|
||||
done := make(chan struct{})
|
||||
go func() {
|
||||
defer GinkgoRecover()
|
||||
_, _ = str.Write([]byte("foobar"))
|
||||
_, err := str.Write([]byte("foobar"))
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
close(done)
|
||||
}()
|
||||
waitForWrite()
|
||||
str.handleMaxStreamDataFrame(&wire.MaxStreamDataFrame{
|
||||
StreamID: streamID,
|
||||
ByteOffset: 42,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue