make Stream.Close() a no-op after the stream was closed for shutdown

This commit is contained in:
Marten Seemann 2020-03-25 16:48:32 +07:00
parent fd80fc683a
commit 599d937966
2 changed files with 10 additions and 1 deletions

View file

@ -438,6 +438,11 @@ var _ = Describe("Send Stream", func() {
f, hasMoreData := str.popStreamFrame(1000)
Expect(f).To(BeNil())
Expect(hasMoreData).To(BeFalse())
Expect(str.Close()).To(Succeed())
f, hasMoreData = str.popStreamFrame(1000)
Expect(f).To(BeNil())
Expect(hasMoreData).To(BeFalse())
})
It("doesn't allow FIN twice", func() {