feat: add spec validation #2
Merged
Merged
Conversation
- Updated ApiOperation to store full Parameter objects for constraint validation - Enhanced parameter validation to check: - Required parameters are provided (header, query, path) - Parameter locations match OpenAPI definitions - Extra parameters not in operation definitions - Parameter type validation against OpenAPI schema - Fixed URL resolution for relative paths in source descriptions - Improved error messages with readable parameter locations - Added comprehensive unit tests for validator (7 new tests) - All tests passing (69 passed, 1 skipped)
- Added support for validating ReusableObject instances in step parameters - Detects and validates reusable parameter references (#/components/parameters/*) - Validates that referenced parameters exist in components - Properly extracts parameter names from JSON references - Includes reusable parameters in required parameter validation - Added 3 new unit tests for reusable object validation - All 72 tests passing
- Support both JSON Pointer (#/components/...) and runtime expression ($components...) parameter references - Add ReusableObject parameter validation with component existence checks - Fix widespread linting issues: whitespace, imports, type annotations - Update type hints for union types and generator functions - Improve exception handling with specific exception types - All 72 tests passing, code quality checks passing
- Support both JSON Pointer (#/components/...) and runtime expression ($components...) parameter references - Add ReusableObject parameter validation with component existence checks - Fix widespread linting issues: whitespace, imports, type annotations - Update type hints for union types and generator functions - Improve exception handling with specific exception types - All 72 tests passing, code quality checks passing
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.
feature:
fix: