-
-
Notifications
You must be signed in to change notification settings - Fork 877
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
Allow integer in number subschema with strictTypes #1938
Closed
Closed
Changes from 2 commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
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 |
---|---|---|
@@ -0,0 +1,103 @@ | ||
import _Ajv from "../ajv" | ||
import Ajv from "ajv" | ||
|
||
describe("issue 1935: integer valid type in number sub-schema", () => { | ||
let ajv: Ajv | ||
before(() => { | ||
ajv = new _Ajv({strict: true}) | ||
}) | ||
|
||
it("should allow integer in `if`", () => { | ||
ajv.compile({ | ||
type: "number", | ||
if: { | ||
type: "integer", | ||
maximum: 5, | ||
}, | ||
else: { | ||
minimum: 10, | ||
}, | ||
}) | ||
}) | ||
|
||
it("should allow integer in `then`", () => { | ||
ajv.compile({ | ||
type: "number", | ||
if: { | ||
multipleOf: 2, | ||
}, | ||
then: { | ||
type: "integer", | ||
minimum: 10, | ||
}, | ||
}) | ||
}) | ||
|
||
it("should allow integer in `else`", () => { | ||
ajv.compile({ | ||
type: "number", | ||
if: { | ||
maximum: 5, | ||
}, | ||
else: { | ||
type: "integer", | ||
minimum: 10, | ||
}, | ||
}) | ||
}) | ||
|
||
it("should allow integer in `allOf`", () => { | ||
ajv.compile({ | ||
type: "number", | ||
allOf: [ | ||
{ | ||
type: "integer", | ||
minimum: 10, | ||
}, | ||
{ | ||
multipleOf: 2, | ||
}, | ||
], | ||
}) | ||
}) | ||
|
||
it("should allow integer in `oneOf`", () => { | ||
ajv.compile({ | ||
type: "number", | ||
oneOf: [ | ||
{ | ||
type: "integer", | ||
minimum: 10, | ||
}, | ||
{ | ||
multipleOf: 2, | ||
}, | ||
], | ||
}) | ||
}) | ||
|
||
it("should allow integer in `anyOf`", () => { | ||
ajv.compile({ | ||
type: "number", | ||
oneOf: [ | ||
{ | ||
type: "integer", | ||
minimum: 10, | ||
}, | ||
{ | ||
multipleOf: 2, | ||
}, | ||
], | ||
}) | ||
}) | ||
|
||
it("should allow integer in `not`", () => { | ||
ajv.compile({ | ||
type: "number", | ||
not: { | ||
type: "integer", | ||
minimum: 10, | ||
}, | ||
}) | ||
}) | ||
}) |
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.
I'm pretty sure this is the offending line, just not sure if this is the optimal solution.
In my example from the issue,
it.dataTypes === ['number']
andtypes === ['integer']
The existing logic would filter dataTypes down to an empty array, then throw on error on keywords like
maximum
without a type.It is filtered because
includesType
does not detect any overlap, and would (by intentional design) only allownumber
in the base type.My solution is to simply append
number
to the type array, to effectively allow the second case to be true as well.Intuitively it seems like an overly broad solution, as
number
is not a valid type for every other type, and we still want to preventnumber
inside aninteger
.However the lines just before this are performing that validation/filtering, so I'm pretty sure at this point both type arrays are are
length <= 1
.If there is a better way to write this, or perhaps another way to attack this let me know!
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.
it's indeed more tricky than that... updated!