test(core): add regression test for list-index $ref resolution (MCP-style schema) #34097
+78 −0
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.
This PR adds a regression test covering the JSON Schema
$refpattern found inMCP-style schemas, where a
$refpoints into a list-based structure such as:#/properties/body/anyOf/1/properties/Message/properties/bccRecipients/items
This pattern historically failed due to incorrect handling of numeric list
components in
_retrieve_ref. The underlying bug has since been fixed, andthis test ensures coverage so we don't regress on list-index
$refresolution.The new test (
test_dereference_refs_list_index_items_ref_mcp_like) verifies:anyOf[1]items.$refccRecipients.itemsis identical to the resolved schema ofbccRecipients.itemsNo code changes are included, just the one test — this PR adds coverage to preserve the expected
behavior and documents support for this real-world MCP schema pattern.
Related to #32012.