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

Kotlinx codec provider limit to data, value or sealed classes. #1147

Merged
merged 2 commits into from
Jun 23, 2023

Conversation

rozza
Copy link
Member

@rozza rozza commented Jun 22, 2023

The kotlinx codec was picking up the double array as
it was serializable. However, it should be limited
to top level data, value or sealed kotlin classes.

JAVA-5035
return try {
create(kClass, kClass.serializer(), serializersModule, bsonConfiguration)
} catch (exception: SerializationException) {
return if (!(kClass.isData || kClass.isValue || kClass.isSealed)) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Which of the assertions below test which of the tests here? It seems that at least one test is missing since there are three conditions here and two assertions.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah that test ensures the two cases (double & CharSequence) that we knew were being picked up now return null.

All three types are already tested by the other tests.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It seems like before this change this method was returning a codec for classes that were not data or value or sealed classes, and now it returns null for those. So I'm not clear how an assertion that it now returns null for all of these could already be in the code.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah - KotlinSerializerCodecTest has existing tests for data, value and sealed classes which we want to continue to support.

The shouldReturnNullForSerializableButNotValueClassOrSealedOrDataClassTypes adds a test to ensure other serializable types (that we know about) fail.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, I'm dumb. Since it's a ! for all three then this is fine.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Merged as is in 4.10.x branch

But added 28b9727 to the master branch to improve the readability of this check and the same for the DataclassCodec.

@jyemin jyemin self-requested a review June 22, 2023 16:50
@rozza rozza merged commit a7b9ce0 into mongodb:4.10.x Jun 23, 2023
@rozza rozza deleted the JAVA-5035 branch June 23, 2023 09:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants