-
-
Notifications
You must be signed in to change notification settings - Fork 6.7k
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
[OpenAPI 3.1] Avoid NPE when handling prefixItems #19735
Conversation
@@ -622,6 +627,11 @@ public void testOpenAPINormalizerProcessingArraySchema31Spec() { | |||
assertEquals(((Schema) schema6.getProperties().get("arrayOfStrings")).getItems().getTypes().contains("string"), true); | |||
assertEquals(((Schema) schema6.getProperties().get("arrayOfStrings")).getItems().getType(), "string"); | |||
assertEquals(((Schema) schema6.getProperties().get("arrayOfStrings")).getType(), "array"); | |||
|
|||
Schema schema8 = openAPI.getComponents().getSchemas().get("ArrayWithPrefixItems"); | |||
assertNotEquals(((Schema) schema8.getProperties().get("with_prefixitems")).getItems(), 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.
OOI, why not:
assertNotEquals(((Schema) schema8.getProperties().get("with_prefixitems")).getItems(), null); | |
assertNotNull(((Schema) schema8.getProperties().get("with_prefixitems")).getItems()); |
?
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.
to me, it's much easier to read when comparing 2 values
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.
👍 Interesting, for me it's the opposite, scanning the assertion function first. Also, some of the convenience functions have more precise error messages in case the assertion fails, which I always appreciate whilst sorting out any messes I may have made :)
@@ -24,14 +24,14 @@ pub enum NumericEnumTesting { | |||
|
|||
} | |||
|
|||
impl ToString for NumericEnumTesting { |
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.
refs #19736
FYI @OpenAPITools/generator-core-team
PR checklist
Commit all changed files.
This is important, as CI jobs will verify all generator outputs of your HEAD commit as it would merge with master.
These must match the expectations made by your contribution.
You may regenerate an individual generator by passing the relevant config(s) as an argument to the script, for example
./bin/generate-samples.sh bin/configs/java*
.IMPORTANT: Do NOT purge/delete any folders/files (e.g. tests) when regenerating the samples as manually written tests may be removed.
master
(upcoming7.x.0
minor release - breaking changes with fallbacks),8.0.x
(breaking changes without fallbacks)