This was initially possible when QpackEncoder was returning a HttpFields instance, however this is not possible anymore because QpackEncoder is constructing a MetaData with MetaDataBuilder which fails if it not a valid HTTP/3 request due to missing some psudo headers.
So these examples from the spec now all fail because they are doing things like sending an encoded field section with only :path=/index.html.
Issue #12396
This test was supposed to test the Encoding and Decoding Examples from RFC9204.
This was initially possible when
QpackEncoder
was returning aHttpFields
instance, however this is not possible anymore becauseQpackEncoder
is constructing aMetaData
withMetaDataBuilder
which fails if it not a valid HTTP/3 request due to missing some psudo headers.So these examples from the spec now all fail because they are doing things like sending an encoded field section with only
:path=/index.html
.