forked from openapi-generators/openapi-python-client
-
Notifications
You must be signed in to change notification settings - Fork 1
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
eng: fix bug in type generation for nullable/union props BNCH-111776 #219
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
9056e92
fix bug in type generation for nullable props BNCH-111776
eli-bl b92fed6
functional tests for union type fix
eli-bl f4d3735
misc fixes
eli-bl 1d76bca
Merge branch 'prod/2.x' into eli.bishop/BNCH-111776-nullables
eli-bl 668ea04
clarify nullable special-case logic
eli-bl a5ed889
further clarification
eli-bl File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -133,47 +133,23 @@ def test_invalid_values(self, MyModel): | |
""" | ||
components: | ||
schemas: | ||
MyEnum: | ||
type: string | ||
enum: ["a", "b"] | ||
MyEnumIncludingNull: | ||
type: ["string", "null"] | ||
enum: ["a", "b", null] | ||
MyNullOnlyEnum: | ||
EnumOfNullOnly: | ||
enum: [null] | ||
MyModel: | ||
properties: | ||
nullableEnumProp: | ||
oneOf: | ||
- {"$ref": "#/components/schemas/MyEnum"} | ||
- type: "null" | ||
enumIncludingNullProp: {"$ref": "#/components/schemas/MyEnumIncludingNull"} | ||
nullOnlyEnumProp: {"$ref": "#/components/schemas/MyNullOnlyEnum"} | ||
nullOnlyEnumProp: {"$ref": "#/components/schemas/EnumOfNullOnly"} | ||
required: ["nullOnlyEnumProp"] | ||
""") | ||
@with_generated_code_imports( | ||
".models.MyEnum", | ||
".models.MyEnumIncludingNullType1", # see comment in test_nullable_enum_prop | ||
".models.MyModel", | ||
".types.Unset", | ||
) | ||
class TestNullableEnums: | ||
def test_nullable_enum_prop(self, MyModel, MyEnum, MyEnumIncludingNullType1): | ||
# Note, MyEnumIncludingNullType1 should be named just MyEnumIncludingNull - | ||
# known bug: https://github.com/openapi-generators/openapi-python-client/issues/1120 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This was one of the cases affected by the bug. In the new version of this test that's in |
||
assert_model_decode_encode(MyModel, {"nullableEnumProp": "b"}, MyModel(nullable_enum_prop=MyEnum.B)) | ||
assert_model_decode_encode(MyModel, {"nullableEnumProp": None}, MyModel(nullable_enum_prop=None)) | ||
assert_model_decode_encode( | ||
MyModel, | ||
{"enumIncludingNullProp": "a"}, | ||
MyModel(enum_including_null_prop=MyEnumIncludingNullType1.A), | ||
) | ||
assert_model_decode_encode( MyModel, {"enumIncludingNullProp": None}, MyModel(enum_including_null_prop=None)) | ||
class TestSingleValueNullEnum: | ||
def test_enum_of_null_only(self, MyModel): | ||
assert_model_decode_encode(MyModel, {"nullOnlyEnumProp": None}, MyModel(null_only_enum_prop=None)) | ||
|
||
def test_type_hints(self, MyModel, MyEnum, Unset): | ||
expected_type = Union[MyEnum, None, Unset] | ||
assert_model_property_type_hint(MyModel, "nullable_enum_prop", expected_type) | ||
|
||
def test_type_hints(self, MyModel): | ||
assert_model_property_type_hint(MyModel, "null_only_enum_prop", None) | ||
|
||
|
||
@with_generated_client_fixture( | ||
""" | ||
|
@@ -217,6 +193,8 @@ def test_invalid_int(self, MyModel): | |
|
||
@with_generated_client_fixture( | ||
""" | ||
# Tests of literal_enums mode, where enums become a typing.Literal type instead of a class | ||
|
||
components: | ||
schemas: | ||
MyEnum: | ||
|
@@ -261,6 +239,8 @@ def test_invalid_values(self, MyModel): | |
|
||
@with_generated_client_fixture( | ||
""" | ||
# Tests of literal_enums mode, where enums become a typing.Literal type instead of a class | ||
|
||
components: | ||
schemas: | ||
MyEnum: | ||
|
@@ -305,6 +285,8 @@ def test_invalid_values(self, MyModel): | |
|
||
@with_generated_client_fixture( | ||
""" | ||
# Similar to some of the "union with null" tests in test_unions.py, but in literal_enums mode | ||
|
||
components: | ||
schemas: | ||
MyEnum: | ||
|
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
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
Oops, something went wrong.
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.
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 changes in this file are just to cut out some test cases that I moved into
test_unions.py
, because ultimately the issue isn't about the enum itself, it's about the union type (created either explicitly withoneOf
, or implicitly by adding "null" as an allowable type).