Skip to content
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
wants to merge 7 commits into
base: main
Choose a base branch
from

Conversation

eli-bl
Copy link
Collaborator

@eli-bl eli-bl commented Sep 13, 2024

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 name xyz. (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:

  • If the union is just because there are multiple types, then go ahead and add a Property for each one.
  • If there is a type or types, but there is also anyOf or oneOf, then we don't need to add anything, because the schemas in the anyOf/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, if type is ["string", "number"] but the anyOf 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 handling nullable by converting the type into a union.

@eli-bl eli-bl marked this pull request as ready for review September 13, 2024 01:44
("3_0_implicit_type", {"nullable": True}),
("3_0_explicit_type", {"type": "string", "nullable": True}),
],
)
def test_property_from_data_str_enum_with_null(
Copy link
Collaborator Author

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.

@eli-bl eli-bl marked this pull request as draft September 13, 2024 22:39
@eli-bl eli-bl marked this pull request as draft September 13, 2024 22:39
@eli-bl eli-bl changed the title fix class generation for nullable enums improve UnionProperty behavior for anyOf/oneOf, lists of types, and nullable enums Sep 14, 2024
@eli-bl eli-bl force-pushed the issue1120-nullable-enum branch 3 times, most recently from 1c0d1ec to b6f22b9 Compare September 16, 2024 17:48
@eli-bl eli-bl force-pushed the issue1120-nullable-enum branch from b6f22b9 to 500f363 Compare September 16, 2024 17:51
@eli-bl eli-bl marked this pull request as ready for review September 16, 2024 17:54
@eli-bl eli-bl requested a review from dbanty September 16, 2024 17:54
@dbanty dbanty added 🐞bug Something isn't working 🥚breaking This change breaks compatibility labels Oct 20, 2024
@eli-bl eli-bl force-pushed the issue1120-nullable-enum branch 3 times, most recently from 4f416e2 to 8696277 Compare December 7, 2024 00:54
@eli-bl eli-bl force-pushed the issue1120-nullable-enum branch from 8696277 to bfb0df1 Compare December 7, 2024 00:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🥚breaking This change breaks compatibility 🐞bug Something isn't working
Projects
None yet
Development

Successfully merging this pull request may close these issues.

union types and nullables can create unnecessary class suffixes (and related problems)
2 participants