-
-
Notifications
You must be signed in to change notification settings - Fork 225
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
improve UnionProperty behavior for anyOf/oneOf, lists of types, and nullable enums #1121
Open
eli-bl
wants to merge
7
commits into
openapi-generators:main
Choose a base branch
from
eli-bl:issue1120-nullable-enum
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains 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
eli-bl
commented
Sep 13, 2024
("3_0_implicit_type", {"nullable": True}), | ||
("3_0_explicit_type", {"type": "string", "nullable": True}), | ||
], | ||
) | ||
def test_property_from_data_str_enum_with_null( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The reason that this unit test wasn't catching the problem was that there several ways the same nullable enum could be declared, and it was only testing one of them.
1c0d1ec
to
b6f22b9
Compare
b6f22b9
to
500f363
Compare
4f416e2
to
8696277
Compare
8696277
to
bfb0df1
Compare
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.
Fixes #1120.
There are two related changes here:
First, when processing the anyOf/oneOf items in a union, check whether each item will generate a named Python class (i.e. is it an enum or a model). If exactly one of them will, then we should not use a synthetic name like
xyz_type_1
; instead just use the original namexyz
. (If more than one of them will, then we do need to add name suffixes; if none of them will, then it doesn't really matter since none of the synthetic names will show up in Python code anyway).That fixes the case described in the issue where nullable object/enum classes got an unnecessary "Type1" suffix. It's a breaking change, but, I think, a desirable one— I don't think anyone prefers to have "Type1" added in those cases, and depending on that would be a bad idea anyway since it's an obscure implementation detail. So I haven't gated it behind a config option.
Second, if we're creating a union and
type
has been explicitly specified— these were the cases where a bunch of spurious -Type1, -Type2Type1, etc. were being created, because of faulty logic that assumed every explicit type had to be added separately to the union. I believe the correct behavior is:type
s, then go ahead and add a Property for each one.type
ortype
s, but there is alsoanyOf
oroneOf
, then we don't need to add anything, because the schemas in theanyOf
/oneOf
list already describe what kind of values there can be. (We could add a check to make sure the types aren't contradictory— for instance, iftype
is["string", "number"]
but theanyOf
variants are objects— but that's out of scope here.)The second issue was also the reason for the weird behavior of
nullable
with enums in 3.0, because we are handlingnullable
by converting the type into a union.