Fix for #body_params causing undefined method `size' #210
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
An addition in #205 which adds a
request.body.size
call started causing a 'NoMethodError' exception during "real" non test POST/PUT requests. This error could not be reproduced in a test environment because of the way rack/test wraps request information. During a real life request the request.body type is a Rack::Lint::InputWrapper object. But during a mock scenario a StringIO object. This subtle difference makes it difficult (if not impossible) to reproduce in a test environment without forcing the env to use the InputWrapper object. Changingrequest.body.size
torequest.content_length
eliminates the exception and serves the same purpose.This pull request also cleans up a related duplicate test found in the endpoint spec.