mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
add a http3.RoundTripper.EnableDatagram option
This commit is contained in:
parent
0b0cb7c06f
commit
3cb07d8f00
3 changed files with 22 additions and 2 deletions
|
@ -136,6 +136,18 @@ var _ = Describe("Client", func() {
|
|||
Expect(dialerCalled).To(BeTrue())
|
||||
})
|
||||
|
||||
It("enables HTTP/3 Datagrams", func() {
|
||||
testErr := errors.New("handshake error")
|
||||
client, err := newClient("localhost:1337", nil, &roundTripperOpts{EnableDatagram: true}, nil, nil)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
dialAddr = func(hostname string, _ *tls.Config, quicConf *quic.Config) (quic.EarlySession, error) {
|
||||
Expect(quicConf.EnableDatagrams).To(BeTrue())
|
||||
return nil, testErr
|
||||
}
|
||||
_, err = client.RoundTrip(req)
|
||||
Expect(err).To(MatchError(testErr))
|
||||
})
|
||||
|
||||
It("errors when dialing fails", func() {
|
||||
testErr := errors.New("handshake error")
|
||||
client, err := newClient("localhost:1337", nil, &roundTripperOpts{}, nil, nil)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue