Commit graph

14 commits

Author SHA1 Message Date
Kim Alvefur
e03fe2ebe3 util.jsonschema: Return basic structured validation response 2023-12-02 21:45:38 +01:00
Kim Alvefur
2337f127b5 util.jsonschema: Update test suite ignore rules
A test case was added in the middle, so all these need to be reordered.
2023-05-20 15:44:55 +02:00
Kim Alvefur
693ac009db util.jsonschema: Fix UTF-8ness of 'minLength' and 'maxLength' 2023-04-23 10:42:07 +02:00
Kim Alvefur
3621b8ce91 util.jsonschema: Implement 'minContains' and 'maxContains' 2023-04-23 10:26:43 +02:00
Kim Alvefur
3697942a4a util.jsonschema: Tweak description of disabled test
This doesn't fail because of additionalProperties, looks more like some
issue with recursive definitions and util.jsonpointer that I don't want
feel like investigating now.
2023-04-22 12:45:58 +02:00
Kim Alvefur
1e5f088714 util.jsonschema: Enable passing IEEE 754 equality test 2023-04-22 12:44:53 +02:00
Kim Alvefur
8c9ffa25eb util.jsonschema: Implement 'dependentSchemas'
If this object key exists then this schema must validate against the
current object.  Seems useful.
2023-03-26 15:20:07 +02:00
Kim Alvefur
4bc62438db util.jsonschema: Implement 'dependentRequired'
If this field exists, then these fields must also exist.
2023-03-26 15:19:14 +02:00
Kim Alvefur
f23ad827a3 util.jsonschema: Disable some further new failing tests
Absolute references, weird fractions, unevaluatedProperties???
2023-03-11 12:12:49 +01:00
Kim Alvefur
fc0e882e29 util.jsonschema: Ignore some new tests in test suite
These seem to be using absolute URI references, Not Yet Implemented
2023-03-11 12:01:17 +01:00
Kim Alvefur
c617f27a54 util.jsonschema: Ignore test case for JavaScript specific detail
Also touching on how arrays are indistinguishable from tables in Lua
2022-10-09 15:24:30 +02:00
Kim Alvefur
8f850047e3 util.jsonschema: Ignore some further test cases for URI references
Full-URI references are not implemented
2022-10-09 15:24:26 +02:00
Kim Alvefur
1e74554e20 util.jsonschema: Sort test cases to skip
Piped trough `sort -g`
2022-10-09 14:58:07 +02:00
Kim Alvefur
e700edc50f util.jsonschema: Fix validation to not assume presence of "type" field
MattJ reported a curious issue where validation did not work as
expected. Primarily that the "type" field was expected to be mandatory,
and thus leaving it out would result in no checks being performed.
This was likely caused by misreading during initial development.

Spent some time testing against
https://github.com/json-schema-org/JSON-Schema-Test-Suite.git and
discovered a multitude of issues, far too many to bother splitting into
separate commits.

More than half of them fail. Many because of features not implemented,
which have been marked NYI. For example, some require deep comparisons
e.g. when objects or arrays are present in enums fields.

Some because of quirks with how Lua differs from JavaScript, e.g. no
distinct array or object types. Tests involving fractional floating
point numbers. We're definitely not going to follow references to remote
resources. Or deal with UTF-16 sillyness. One test asserted that 1.0 is
an integer, where Lua 5.3+ will disagree.
2022-07-08 14:38:23 +02:00