Closed Rinzwind closed 1 year ago
Patch coverage: 100.00%
and project coverage change: +0.02%
:tada:
Comparison is base (
7d0ccbd
) 54.17% compared to head (da095f6
) 54.19%.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
This pull request fixes issue #1376 by making
#initializeFromString:
in WAUrl take into account that://
can also be included in the query.The example this pull request adds to
#testNastyEdgeCasesParsing
reflects the use of#absolute:
in#requestUrlFor:
in WAFastCGIRequestConverter: the argument to#absolute:
is not a valid absolute URI as defined in section 4.3 in RFC 3986, as it does not begin with a scheme, but it is a valid request target as defined in section 3.2 in RFC 9112. WAUrl and WAFastCGIRequestConverter should maybe be made to better distinguish between those.