mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +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
|
@ -5,7 +5,10 @@ import (
|
|||
"io"
|
||||
"net/http"
|
||||
|
||||
mockquic "github.com/lucas-clemente/quic-go/internal/mocks/quic"
|
||||
"github.com/lucas-clemente/quic-go/internal/utils"
|
||||
|
||||
"github.com/golang/mock/gomock"
|
||||
"github.com/marten-seemann/qpack"
|
||||
|
||||
. "github.com/onsi/ginkgo"
|
||||
|
@ -20,7 +23,9 @@ var _ = Describe("Response Writer", func() {
|
|||
|
||||
BeforeEach(func() {
|
||||
strBuf = &bytes.Buffer{}
|
||||
rw = newResponseWriter(strBuf, utils.DefaultLogger)
|
||||
str := mockquic.NewMockStream(mockCtrl)
|
||||
str.EXPECT().Write(gomock.Any()).Do(strBuf.Write).AnyTimes()
|
||||
rw = newResponseWriter(str, utils.DefaultLogger)
|
||||
})
|
||||
|
||||
decodeHeader := func(str io.Reader) map[string][]string {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue