jassi - test summary

August 15, 2022 ยท View on GitHub

jassi failed tests

Some validators have deliberately chosen not to support parts of the spec. Go to the jassi homepage to learn if that is the case for these tests.

test failedreason
allOf with boolean schemas, all true, any value is validExpected result: true but validator returned: false. This excludes this validator from performance tests
anyOf with boolean schemas, all true, any value is validExpected result: true but validator returned: false
anyOf with boolean schemas, some true, any value is validExpected result: true but validator returned: false
boolean schema 'true', number is validExpected result: true but validator returned: false. This excludes this validator from performance tests
boolean schema 'true', string is validExpected result: true but validator returned: false. This excludes this validator from performance tests
boolean schema 'true', boolean true is validExpected result: true but validator returned: false. This excludes this validator from performance tests
boolean schema 'true', boolean false is validExpected result: true but validator returned: false. This excludes this validator from performance tests
boolean schema 'true', null is validExpected result: true but validator returned: false. This excludes this validator from performance tests
boolean schema 'true', object is validExpected result: true but validator returned: false. This excludes this validator from performance tests
boolean schema 'true', empty object is validExpected result: true but validator returned: false. This excludes this validator from performance tests
boolean schema 'true', array is validExpected result: true but validator returned: false. This excludes this validator from performance tests
boolean schema 'true', empty array is validExpected result: true but validator returned: false. This excludes this validator from performance tests
const validation, another value is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
const validation, another type is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
const with object, another object is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
const with object, another type is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
const with array, another array item is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
const with array, array with additional items is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
const with null, not null is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
const with false does not match 0, integer zero is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
const with false does not match 0, float zero is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
const with true does not match 1, integer one is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
const with true does not match 1, float one is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
const with [false] does not match [0], [0] is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
const with [false] does not match [0], [0.0] is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
const with [true] does not match [1], [1] is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
const with [true] does not match [1], [1.0] is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
const with {"a": false} does not match {"a": 0}, {"a": 0} is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
const with {"a": false} does not match {"a": 0}, {"a": 0.0} is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
const with {"a": true} does not match {"a": 1}, {"a": 1} is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
const with {"a": true} does not match {"a": 1}, {"a": 1.0} is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
const with 0 does not match other zero-like types, false is invalidExpected result: false but validator returned: true
const with 0 does not match other zero-like types, empty object is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
const with 0 does not match other zero-like types, empty array is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
const with 0 does not match other zero-like types, empty string is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
const with 1 does not match true, true is invalidExpected result: false but validator returned: true
const with -2.0 matches integer and float types, integer 2 is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
const with -2.0 matches integer and float types, float 2.0 is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
const with -2.0 matches integer and float types, float -2.00001 is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
float and integers are equal up to 64-bit representation limits, integer minus one is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
float and integers are equal up to 64-bit representation limits, float minus one is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
nul characters in strings, do not match string lacking nulExpected result: false but validator returned: true. This excludes this validator from performance tests
contains keyword validation, array without items matching schema is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
contains keyword validation, empty array is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
contains keyword with const keyword, array without item 5 is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
contains keyword with boolean schema true, empty array is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
contains keyword with boolean schema false, any non-empty array is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
contains keyword with boolean schema false, empty array is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
items + contains, matches items, does not match containsExpected result: false but validator returned: true
invalid definition, invalid definition schemaExpected result: false but validator returned: true. This excludes this validator from performance tests
dependencies with boolean subschemas, object with property having schema true is validExpected result: true but validator returned: false. This excludes this validator from performance tests
dependencies with boolean subschemas, object with property having schema false is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
exclusiveMaximum validation, boundary point is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
exclusiveMaximum validation, above the exclusiveMaximum is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
exclusiveMinimum validation, boundary point is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
exclusiveMinimum validation, below the exclusiveMinimum is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
if and then without else, invalid through thenExpected result: false but validator returned: true
if and else without then, invalid through elseExpected result: false but validator returned: true
validate against correct branch, then vs else, invalid through thenExpected result: false but validator returned: true
validate against correct branch, then vs else, invalid through elseExpected result: false but validator returned: true
if with boolean schema true, boolean schema true in if always chooses the then path (invalid)Expected result: false but validator returned: true
if with boolean schema false, boolean schema false in if always chooses the else path (invalid)Expected result: false but validator returned: true
if appears at the end when serialized (keyword processing sequence), no redirects to then and failsExpected result: false but validator returned: true
if appears at the end when serialized (keyword processing sequence), invalid redirects to else and failsExpected result: false but validator returned: true
evaluating the same schema location against the same data location twice is not a sign of an infinite loop, failing caseExpected result: false but validator returned: true. This excludes this validator from performance tests
items with boolean schema (true), any array is validExpected result: true but validator returned: false. This excludes this validator from performance tests
items with boolean schema (false), any non-empty array is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
items with boolean schemas, array with one item is validExpected result: true but validator returned: false. This excludes this validator from performance tests
items and subitems, too many sub-itemsExpected result: false but validator returned: true. This excludes this validator from performance tests
items and subitems, wrong itemExpected result: false but validator returned: true. This excludes this validator from performance tests
items and subitems, wrong sub-itemExpected result: false but validator returned: true. This excludes this validator from performance tests
maxLength validation, two supplementary Unicode code points is long enoughExpected result: true but validator returned: false. This excludes this validator from performance tests
maxProperties = 0 means the object is empty, one property is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
minLength validation, one supplementary Unicode code point is not long enoughExpected result: false but validator returned: true. This excludes this validator from performance tests
not with boolean schema true, any value is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
oneOf with boolean schemas, one true, any value is validExpected result: true but validator returned: false
oneOf with missing optional property, first oneOf validExpected result: true but validator returned: false. This excludes this validator from performance tests
oneOf with missing optional property, second oneOf validExpected result: true but validator returned: false. This excludes this validator from performance tests
float comparison with high precision, comparison works for high numbersExpected result: false but validator returned: true. This excludes this validator from performance tests
float comparison with high precision on negative numbers, comparison works for very negative numbersExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of string-encoded content based on media type, an invalid JSON documentExpected result: false but validator returned: true
validation of binary string-encoding, an invalid base64 string (% is not a valid character)Expected result: false but validator returned: true
validation of binary-encoded media type documents, a validly-encoded invalid JSON documentExpected result: false but validator returned: true
validation of binary-encoded media type documents, an invalid base64 string that is valid JSONExpected result: false but validator returned: true
all integers are multiples of 0.5, if overflow is handled, valid if optional overflow handling is implementedExpected result: true but validator returned: false
validation of date-time strings, a invalid day in date-time stringExpected result: false but validator returned: true
validation of date-time strings, an invalid offset in date-time stringExpected result: false but validator returned: true
validation of date-time strings, an invalid date-time stringExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of date-time strings, only RFC3339 not all of ISO 8601 are validExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of date-time strings, invalid non-padded month datesExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of date-time strings, invalid non-padded day datesExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of date strings, an invalid date-time stringExpected result: false but validator returned: true
validation of date strings, only RFC3339 not all of ISO 8601 are validExpected result: false but validator returned: true
validation of date strings, invalidates non-padded month datesExpected result: false but validator returned: true
validation of date strings, invalidates non-padded day datesExpected result: false but validator returned: true
validation of e-mail addresses, an invalid e-mail addressExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of e-mail addresses, dot before local part is not validExpected result: false but validator returned: true
validation of e-mail addresses, dot after local part is not validExpected result: false but validator returned: true
validation of e-mail addresses, two subsequent dots inside local part are not validExpected result: false but validator returned: true
validation of host names, a host name starting with an illegal characterExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of host names, a host name containing illegal charactersExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of host names, a host name with a component too longExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of host names, starts with hyphenExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of host names, ends with hyphenExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of host names, starts with underscoreExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of host names, ends with underscoreExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of host names, contains underscoreExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of host names, exceeds maximum label lengthExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of an internationalized e-mail addresses, an invalid idn e-mail addressExpected result: false but validator returned: true
validation of an internationalized e-mail addresses, an invalid e-mail addressExpected result: false but validator returned: true
validation of internationalized host names, illegal first char U+302E Hangul single dot tone markExpected result: false but validator returned: true
validation of internationalized host names, contains illegal char U+302E Hangul single dot tone markExpected result: false but validator returned: true
validation of internationalized host names, a host name with a component too longExpected result: false but validator returned: true
validation of internationalized host names, invalid label, correct PunycodeExpected result: false but validator returned: true
validation of internationalized host names, invalid PunycodeExpected result: false but validator returned: true
validation of internationalized host names, U-label contains "--" in the 3rd and 4th positionExpected result: false but validator returned: true
validation of internationalized host names, U-label starts with a dashExpected result: false but validator returned: true
validation of internationalized host names, U-label ends with a dashExpected result: false but validator returned: true
validation of internationalized host names, U-label starts and ends with a dashExpected result: false but validator returned: true
validation of internationalized host names, Begins with a Spacing Combining MarkExpected result: false but validator returned: true
validation of internationalized host names, Begins with a Nonspacing MarkExpected result: false but validator returned: true
validation of internationalized host names, Begins with an Enclosing MarkExpected result: false but validator returned: true
validation of internationalized host names, Exceptions that are DISALLOWED, right-to-left charsExpected result: false but validator returned: true
validation of internationalized host names, Exceptions that are DISALLOWED, left-to-right charsExpected result: false but validator returned: true
validation of internationalized host names, MIDDLE DOT with no preceding 'l'Expected result: false but validator returned: true
validation of internationalized host names, MIDDLE DOT with nothing precedingExpected result: false but validator returned: true
validation of internationalized host names, MIDDLE DOT with no following 'l'Expected result: false but validator returned: true
validation of internationalized host names, MIDDLE DOT with nothing followingExpected result: false but validator returned: true
validation of internationalized host names, Greek KERAIA not followed by GreekExpected result: false but validator returned: true
validation of internationalized host names, Greek KERAIA not followed by anythingExpected result: false but validator returned: true
validation of internationalized host names, Hebrew GERESH not preceded by HebrewExpected result: false but validator returned: true
validation of internationalized host names, Hebrew GERESH not preceded by anythingExpected result: false but validator returned: true
validation of internationalized host names, Hebrew GERSHAYIM not preceded by HebrewExpected result: false but validator returned: true
validation of internationalized host names, Hebrew GERSHAYIM not preceded by anythingExpected result: false but validator returned: true
validation of internationalized host names, KATAKANA MIDDLE DOT with no Hiragana, Katakana, or HanExpected result: false but validator returned: true
validation of internationalized host names, KATAKANA MIDDLE DOT with no other charactersExpected result: false but validator returned: true
validation of internationalized host names, Arabic-Indic digits mixed with Extended Arabic-Indic digitsExpected result: false but validator returned: true
validation of internationalized host names, ZERO WIDTH JOINER not preceded by ViramaExpected result: false but validator returned: true
validation of internationalized host names, ZERO WIDTH JOINER not preceded by anythingExpected result: false but validator returned: true
validation of IP addresses, an IP address with too many componentsExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of IP addresses, an IP address with out-of-range valuesExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of IP addresses, an IP address without 4 componentsExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of IP addresses, an IP address as an integerExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of IP addresses, an IP address as an integer (decimal)Expected result: false but validator returned: true. This excludes this validator from performance tests
validation of IPv6 addresses, an IPv6 address with out-of-range valuesExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of IPv6 addresses, an IPv6 address with too many componentsExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of IPv6 addresses, an IPv6 address containing illegal charactersExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of IPv6 addresses, missing leading octet is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of IPv6 addresses, missing trailing octet is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of IPv6 addresses, missing leading octet with omitted octets laterExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of IPv6 addresses, two sets of double colons is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of IPv6 addresses, mixed format with ipv4 section with octet out of rangeExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of IPv6 addresses, mixed format with ipv4 section with a hex octetExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of IPv6 addresses, triple colons is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of IPv6 addresses, insufficient octets without double colonsExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of IPv6 addresses, no colons is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of IPv6 addresses, ipv4 is not ipv6Expected result: false but validator returned: true. This excludes this validator from performance tests
validation of IPv6 addresses, ipv4 segment must have 4 octetsExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of IPv6 addresses, leading whitespace is invalidExpected result: false but validator returned: true
validation of IPv6 addresses, trailing whitespace is invalidExpected result: false but validator returned: true
validation of IPv6 addresses, netmask is not a part of ipv6 addressExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of IPv6 addresses, zone id is not a part of ipv6 addressExpected result: false but validator returned: true
validation of IPv6 addresses, a long invalid ipv6, below length limit, firstExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of IPv6 addresses, a long invalid ipv6, below length limit, secondExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of IRI References, an invalid IRI ReferenceExpected result: false but validator returned: true
validation of IRI References, an invalid IRI fragmentExpected result: false but validator returned: true
validation of IRIs, an invalid IRI based on IPv6Expected result: false but validator returned: true
validation of IRIs, an invalid relative IRI ReferenceExpected result: false but validator returned: true
validation of IRIs, an invalid IRIExpected result: false but validator returned: true
validation of IRIs, an invalid IRI though valid IRI referenceExpected result: false but validator returned: true
validation of JSON-pointers (JSON String Representation), not a valid JSON-pointer (~ not escaped)Expected result: false but validator returned: true. This excludes this validator from performance tests
validation of JSON-pointers (JSON String Representation), not a valid JSON-pointer (URI Fragment Identifier) #1Expected result: false but validator returned: true. This excludes this validator from performance tests
validation of JSON-pointers (JSON String Representation), not a valid JSON-pointer (URI Fragment Identifier) #2Expected result: false but validator returned: true. This excludes this validator from performance tests
validation of JSON-pointers (JSON String Representation), not a valid JSON-pointer (URI Fragment Identifier) #3Expected result: false but validator returned: true. This excludes this validator from performance tests
validation of JSON-pointers (JSON String Representation), not a valid JSON-pointer (some escaped, but not all) #1Expected result: false but validator returned: true. This excludes this validator from performance tests
validation of JSON-pointers (JSON String Representation), not a valid JSON-pointer (some escaped, but not all) #2Expected result: false but validator returned: true. This excludes this validator from performance tests
validation of JSON-pointers (JSON String Representation), not a valid JSON-pointer (wrong escape character) #1Expected result: false but validator returned: true. This excludes this validator from performance tests
validation of JSON-pointers (JSON String Representation), not a valid JSON-pointer (wrong escape character) #2Expected result: false but validator returned: true. This excludes this validator from performance tests
validation of JSON-pointers (JSON String Representation), not a valid JSON-pointer (multiple characters not escaped)Expected result: false but validator returned: true. This excludes this validator from performance tests
validation of JSON-pointers (JSON String Representation), not a valid JSON-pointer (isn't empty nor starts with /) #1Expected result: false but validator returned: true. This excludes this validator from performance tests
validation of JSON-pointers (JSON String Representation), not a valid JSON-pointer (isn't empty nor starts with /) #2Expected result: false but validator returned: true. This excludes this validator from performance tests
validation of JSON-pointers (JSON String Representation), not a valid JSON-pointer (isn't empty nor starts with /) #3Expected result: false but validator returned: true. This excludes this validator from performance tests
validation of regular expressions, a regular expression with unclosed parens is invalidExpected result: false but validator returned: true
validation of Relative JSON Pointers (RJP), an invalid RJP that is a valid JSON PointerExpected result: false but validator returned: true
validation of Relative JSON Pointers (RJP), negative prefixExpected result: false but validator returned: true
validation of time strings, an invalid time stringExpected result: false but validator returned: true
validation of time strings, only RFC3339 not all of ISO 8601 are validExpected result: false but validator returned: true
validation of URI References, an invalid URI ReferenceExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of URI References, an invalid URI fragmentExpected result: false but validator returned: true. This excludes this validator from performance tests
format: uri-template, an invalid uri-templateExpected result: false but validator returned: true
validation of URIs, an invalid protocol-relative URI ReferenceExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of URIs, an invalid relative URI ReferenceExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of URIs, an invalid URIExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of URIs, an invalid URI though valid URI referenceExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of URIs, an invalid URI with spacesExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of URIs, an invalid URI with spaces and missing schemeExpected result: false but validator returned: true. This excludes this validator from performance tests
validation of URIs, an invalid URI with comma in schemeExpected result: false but validator returned: true. This excludes this validator from performance tests
Proper UTF-16 surrogate pair handling: pattern, matches emptyExpected result: true but validator returned: false
Proper UTF-16 surrogate pair handling: pattern, matches twoExpected result: true but validator returned: false
Proper UTF-16 surrogate pair handling: patternProperties, doesn't match twoExpected result: false but validator returned: true
patternProperties with boolean schemas, object with property matching schema true is validExpected result: true but validator returned: false. This excludes this validator from performance tests
patternProperties with boolean schemas, object with property matching schema false is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
properties with boolean schema, only 'true' property present is validExpected result: true but validator returned: false. This excludes this validator from performance tests
propertyNames validation, some property names invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
propertyNames with boolean schema false, object with any properties is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
root pointer ref, recursive mismatchExpected result: false but validator returned: true. This excludes this validator from performance tests
relative pointer ref to object, mismatchExpected result: false but validator returned: true. This excludes this validator from performance tests
relative pointer ref to array, mismatch arrayExpected result: false but validator returned: true. This excludes this validator from performance tests
escaped pointer ref, slash invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
escaped pointer ref, tilde invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
escaped pointer ref, percent invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
nested refs, nested ref invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
ref overrides any sibling keywords, ref valid, maxItems ignoredExpected result: true but validator returned: false
ref overrides any sibling keywords, ref invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
remote ref, containing refs itself, remote ref invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
property named $ref, containing an actual $ref, property named $ref invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
$ref to boolean schema false, any value is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
Recursive references between schemas, invalid treeExpected result: false but validator returned: true. This excludes this validator from performance tests
refs with quote, object with strings is invalidExpected result: false but validator returned: true. This excludes this validator from performance tests
Location-independent identifier, mismatchExpected result: false but validator returned: true
Location-independent identifier with absolute URI, mismatchExpected result: false but validator returned: true
Location-independent identifier with base URI change in subschema, mismatchExpected result: false but validator returned: true
remote ref, remote ref invalidExpected result: false but validator returned: true
fragment within remote ref, remote fragment invalidExpected result: false but validator returned: true
ref within remote ref, ref within ref invalidExpected result: false but validator returned: true
base URI change, base URI change ref invalidExpected result: false but validator returned: true
base URI change - change folder, string is invalidExpected result: false but validator returned: true
base URI change - change folder in subschema, string is invalidExpected result: false but validator returned: true
root ref in remote ref, object is invalidExpected result: false but validator returned: true

All other tests passed.

back to benchmarks