Description
Description
In the validator https://github.com/spec-first/connexion/blob/main/connexion/validators/abstract.py#L126 a http status code 400 error is raised if content-length header is missing or 0 when a request body is present. The server response is then "RequestBody is required", which is confusing, as the request body does exist.
Expected behaviour
According to https://datatracker.ietf.org/doc/html/rfc7230#section-3.3.2 the correct server response should be http status code 411 "Length Required", ideally identifying that body was present but content-length not set or 0. Ideally, the error message would indicate "content-length header missing or 0".
Actual behaviour
Server response to missing content-length header or header with value 0 is 400 "RequestBody is required".
Steps to reproduce
Send http POST with body but missing content-length or content-length 0.
Additional info:
Output of the commands:
python --version
: Python 3.10.12pip show connexion | grep "^Version\:"
Version: 3.1.0