mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
add a http3.RoundTripOpt to skip the request scheme check
Otherwise, we'll only be able to issue https requests. This is what we usually want, but for MASQUE support, the URL will be of the form masque://example.org.
This commit is contained in:
parent
b47fe87e51
commit
c78634df38
2 changed files with 15 additions and 5 deletions
|
@ -179,6 +179,15 @@ var _ = Describe("RoundTripper", func() {
|
|||
Expect(req.Body.(*mockBody).closed).To(BeTrue())
|
||||
})
|
||||
|
||||
It("allow non-https schemes if SkipSchemeCheck is set", func() {
|
||||
req, err := http.NewRequest("GET", "masque://www.example.org/", nil)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
_, err = rt.RoundTrip(req)
|
||||
Expect(err).To(MatchError("http3: unsupported protocol scheme: masque"))
|
||||
_, err = rt.RoundTripOpt(req, RoundTripOpt{SkipSchemeCheck: true, OnlyCachedConn: true})
|
||||
Expect(err).To(MatchError("http3: no cached connection was available"))
|
||||
})
|
||||
|
||||
It("rejects requests without a URL", func() {
|
||||
req1.URL = nil
|
||||
req1.Body = &mockBody{}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue