mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
http3: use the AdditionalSettings for requests (#4156)
This commit is contained in:
parent
45922f76d6
commit
9b40c50a73
2 changed files with 16 additions and 0 deletions
|
@ -202,6 +202,7 @@ func (r *RoundTripper) getClient(hostname string, onlyCached bool) (rtc *roundTr
|
||||||
MaxHeaderBytes: r.MaxResponseHeaderBytes,
|
MaxHeaderBytes: r.MaxResponseHeaderBytes,
|
||||||
StreamHijacker: r.StreamHijacker,
|
StreamHijacker: r.StreamHijacker,
|
||||||
UniStreamHijacker: r.UniStreamHijacker,
|
UniStreamHijacker: r.UniStreamHijacker,
|
||||||
|
AdditionalSettings: r.AdditionalSettings,
|
||||||
},
|
},
|
||||||
r.QuicConfig,
|
r.QuicConfig,
|
||||||
dial,
|
dial,
|
||||||
|
|
|
@ -71,6 +71,21 @@ var _ = Describe("RoundTripper", func() {
|
||||||
Expect(err).To(MatchError(testErr))
|
Expect(err).To(MatchError(testErr))
|
||||||
})
|
})
|
||||||
|
|
||||||
|
It("creates new clients with additional settings", func() {
|
||||||
|
testErr := errors.New("test err")
|
||||||
|
req, err := http.NewRequest("GET", "https://quic.clemente.io/foobar.html", nil)
|
||||||
|
Expect(err).ToNot(HaveOccurred())
|
||||||
|
rt.AdditionalSettings = map[uint64]uint64{1337: 42}
|
||||||
|
rt.newClient = func(_ string, _ *tls.Config, opts *roundTripperOpts, conf *quic.Config, _ dialFunc) (roundTripCloser, error) {
|
||||||
|
cl := NewMockRoundTripCloser(mockCtrl)
|
||||||
|
cl.EXPECT().RoundTripOpt(gomock.Any(), gomock.Any()).Return(nil, testErr)
|
||||||
|
Expect(opts.AdditionalSettings).To(HaveKeyWithValue(uint64(1337), uint64(42)))
|
||||||
|
return cl, nil
|
||||||
|
}
|
||||||
|
_, err = rt.RoundTrip(req)
|
||||||
|
Expect(err).To(MatchError(testErr))
|
||||||
|
})
|
||||||
|
|
||||||
It("uses the quic.Config, if provided", func() {
|
It("uses the quic.Config, if provided", func() {
|
||||||
config := &quic.Config{HandshakeIdleTimeout: time.Millisecond}
|
config := &quic.Config{HandshakeIdleTimeout: time.Millisecond}
|
||||||
var receivedConfig *quic.Config
|
var receivedConfig *quic.Config
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue