Conversation
- Changed OpenapiFirst::Test to track the request _after_ the app has handled the request. See [PR #434](#434). You can restore the old behavior with ```ruby include OpenapiFirst::Test::Methods[MyApp, validate_request_before_handling: true] ``` - Added `OpenapiFirst::ValidatedRequest#unknown?` and `OpenapiFirst::ValidatedResponse#unknown?` - Added support for a static `path_prefix` value to be set on the creation of a Definition. See [PR #432](#432): ```ruby OpenapiFirst.configure do |config| config.register('openapi/openapi.yaml' path_prefix: '/weather') end ``` - Added `OpenapiFirst::Test::Configuration#ignore_response_error` and `OpenapiFirst::Test::Configuration#ignore_request_error` to configure which request/response errors should not raise an error during testing: ```ruby OpenapiFirst::Test.setup do |test| test.ignore_request_error do |validated_request| # Ignore unknown requests on certain paths validated_request.path.start_with?('/api/v1') && validated_request.unknown? end test.ignore_response_error do |validated_response, rack_request| # Ignore invalid response bodies on certain paths validated_request.path.start_with?('/api/legacy/stuff') && validated_request.error.type == :invalid_body end end ```
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Changed
Added
OpenapiFirst::ValidatedRequest#unknown?andOpenapiFirst::ValidatedResponse#unknown?after_response_body_property_validationpath_prefixvalue to be set on the creation of a Definition. See PR #432:OpenapiFirst::Test::Configuration#ignore_response_errorand#ignore_request_errorto configure which request/response errors should not raise an error during testing: