mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
allow access to the underlying quic.Stream from a http.ResponseWriter
This commit is contained in:
parent
d1c5297c0b
commit
35939b25a9
5 changed files with 94 additions and 40 deletions
|
@ -177,6 +177,21 @@ var _ = Describe("Server", func() {
|
|||
Expect(hfs).To(HaveKeyWithValue(":status", []string{"500"}))
|
||||
})
|
||||
|
||||
It("doesn't close the stream if the handler called DataStream()", func() {
|
||||
s.Handler = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
str := w.(DataStreamer).DataStream()
|
||||
str.Write([]byte("foobar"))
|
||||
})
|
||||
|
||||
setRequest(encodeRequest(exampleGetRequest))
|
||||
str.EXPECT().Context().Return(reqContext)
|
||||
str.EXPECT().Write([]byte("foobar"))
|
||||
// don't EXPECT CancelRead()
|
||||
|
||||
serr := s.handleRequest(sess, str, qpackDecoder, nil)
|
||||
Expect(serr.err).ToNot(HaveOccurred())
|
||||
})
|
||||
|
||||
Context("control stream handling", func() {
|
||||
var sess *mockquic.MockEarlySession
|
||||
testDone := make(chan struct{})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue