[python] Add test cases for flatten-property unknown type and read-only scenarios#9851
Draft
[python] Add test cases for flatten-property unknown type and read-only scenarios#9851
Conversation
…-only properties Co-authored-by: msyyc <70930885+msyyc@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add test case for Azure typespec-azure pull request 3729
[python] Add test cases for flatten-property unknown type and read-only scenarios
Mar 2, 2026
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.
Adds Python mock API tests covering two new Spector scenarios from Azure/typespec-azure#3729 for
@flattenPropertyedge cases.Spec dependency bump
@azure-tools/azure-http-specs:0.1.0-alpha.38-dev.2→0.1.0-alpha.38-dev.4(adds the two new scenarios)New test cases (sync + async)
putFlattenUnknownModel— flatten is a no-op onunknowntype;propertiesstays as a top-level field:putFlattenReadOnlyModel— model whose flattened sub-object contains only read-only properties; uses the mapping constructorSolution({"name": "foo"})so the emptypropertiesbag is not serialized into the request body, matching the server's expected{"name": "foo"}. Read-only response fields are asserted via dict access since the generator stores them at the top level of the raw dict:Original prompt
🔒 GitHub Advanced Security automatically protects Copilot coding agent pull requests. You can protect all pull requests by enabling Advanced Security for your repositories. Learn more about Advanced Security.