mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
remove the SkipSchemeCheck RoundTripOpt (#3353)
This option was needed for an early draft version of MASQUE. MASQUE now uses the https scheme.
This commit is contained in:
parent
3a102406ea
commit
85b495445e
2 changed files with 2 additions and 14 deletions
|
@ -179,15 +179,6 @@ 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