1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543
|
# Copyright 2018 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import re
# Dict with valid schema type names as keys. The values are the allowed
# attribute names and their expected value types.
#
# These are the ONLY supported schema features. For the full schema proposal see
# https://json-schema.org/understanding-json-schema/index.html.
#
# There are also these departures from the proposal:
# - "additionalProperties": false is not supported. Instead, it is assumed by
# default. The value of "additionalProperties" has to be a schema.
ALLOWED_ATTRIBUTES_AND_TYPES = {
'boolean': {
'type': str, # required
'id': str, # optional
'description': str, # optional
'sensitiveValue': bool # optional
},
'string': {
'type': str, # required
'id': str, # optional
'description': str, # optional
'enum': list, # optional
'pattern': str, # optional
'sensitiveValue': bool # optional
},
'integer': {
'type': str, # required
'id': str, # optional
'description': str, # optional
'enum': list, # optional
'minimum': int, # optional
'maximum': int, # optional
'sensitiveValue': bool # optional
},
'array': {
'type': str, # required
'id': str, # optional
'items': dict, # required,
'description': str, # optional
'sensitiveValue': bool # optional
},
'object': {
'type': str, # required
'id': str, # optional
'description': str, # optional
'properties': dict, # one of these 3 properties is required
'patternProperties': dict, # one of these 3 properties is required
'additionalProperties': dict, # one of these 3 properties is required
'required': list, # optional
'sensitiveValue': bool # optional
}
}
# Dict of allowed attributes and their expected types for schemas with a $ref.
ALLOWED_REF_ATTRIBUTES_AND_TYPES = {'$ref': str, 'description': str}
# Dict of human-readable enum types and their python types as values.
ENUM_ITEM_TYPES = {'integer': int, 'string': str}
class SchemaValidator(object):
"""This class can validate schemas by calling ValidateSchema() or can
validate values against their schema by calling ValidateValue().
Schemas with an 'id' used as $ref link by another schema have to be passed to
ValidateSchema() before the schema with the $ref can be used in
ValidateSchema() or ValidateValue().
|schemas_by_id| is used as storage for schemas with their 'id' as key and
their schemas as value.
"""
def __init__(self):
self.schemas_by_id = {}
self.invalid_ref_ids = set()
self.found_ref_ids = set()
self.errors = []
self.enforce_use_entire_schema = False
self.expected_properties = {}
self.expected_pattern_properties = {}
self.expected_additional_properties = {}
self.used_properties = {}
self.used_pattern_properties = {}
self.used_additional_properties = {}
def ValidateSchema(self, schema, schemas_by_id):
"""Checks if |schema| is a valid schema and only uses valid $ref links.
See _ValidateSchemaInternal() for a detailed description of the schema
validation. This method also checks if all used $ref links are known and
valid.
Args:
schema (dict): The JSON schema.
schemas_by_id (dict): A dictionary of all the schemas that can refered to
using $ref.
Returns:
A list contains all schema errors.
"""
self.found_ref_ids.clear()
self.errors = []
self.schemas_by_id = schemas_by_id
self._ValidateSchemaInternal(schema)
unknown_ref_ids = self.found_ref_ids.difference(self.schemas_by_id.keys())
for unknown_ref_id in unknown_ref_ids:
if unknown_ref_id in self.invalid_ref_ids:
self._Error("$ref to invalid schema '%s'." % unknown_ref_id)
else:
self._Error("Unknown $ref '%s'." % unknown_ref_id)
return self.errors
def _ValidateSchemaInternal(self, schema):
"""Check if |schema| is a valid schema.
This method checks whether |schema| is a dict, has a valid 'type' property,
only has properties and values allowed by its type (see
ALLOWED_ATTRIBUTES_AND_TYPES) and calls the appropriate
_Validate{Integer,String,Array,Object}Schema() method.
If the schema has a $ref, the $ref id is added to |found_ref_ids| so that
its existence can be validated later on in ValidateSchema(). They may
also not contain other attributes except for '$ref' and 'description' (see
ALLOWED_REF_ATTRIBUTES_AND_TYPES).
If the schema has an id, the id has to be unique and the schema is stored
for later re-use if it is valid.
Args:
schema (dict): The JSON schema.
"""
num_errors_before = len(self.errors)
# Check that schema is of type dict.
if not isinstance(schema, dict):
self._Error("Schema must be a dict.")
# Validate $ref links. All '$ref' links are gathered in |found_ref_links| so
# that their existence can be validated later on in ValidateSchema(schema).
if '$ref' in schema:
ref_id = schema['$ref']
for name, value in schema.items():
if name not in ALLOWED_REF_ATTRIBUTES_AND_TYPES:
self._Error("Attribute '%s' is not allowed for schema with $ref '%s'."
% (name, ref_id))
expected_type = ALLOWED_REF_ATTRIBUTES_AND_TYPES[name]
if not isinstance(value, expected_type):
self._Error(
("Attribute value for '%s' (%s) has incorrect type (Expected "
"type: '%s'; actual type: '%s')") % (name, value, expected_type,
type(value)))
self.found_ref_ids.add(ref_id)
return
# Every schema (non-ref) must have a type.
if 'type' not in schema:
self._Error("Missing attribute 'type'.")
schema_type = schema['type']
# Check that the type is valid.
if schema_type not in ALLOWED_ATTRIBUTES_AND_TYPES:
self._Error("Unknown type: %s" % schema_type)
# Check that each schema only contains attributes that are allowed in their
# respective type and that their values are of correct type.
allowed_attributes = ALLOWED_ATTRIBUTES_AND_TYPES[schema_type]
for attribute_name, attribute_value in schema.items():
if attribute_name in allowed_attributes:
expected_type = allowed_attributes[attribute_name]
if not isinstance(attribute_value, expected_type):
self._Error(
("Attribute '%s' has incorrect type (Expected type: '%s'; actual "
"type: '%s').") % (attribute_name, expected_type,
type(attribute_value)))
else:
self._Error("Attribute '%s' is not allowed for type '%s'." %
(attribute_name, schema_type))
# Validate schemas depending on 'type'.
if schema_type == 'string':
self._ValidateStringSchema(schema)
elif schema_type == 'integer':
self._ValidateIntegerSchema(schema)
elif schema_type == 'array':
self._ValidateArraySchema(schema)
elif schema_type == 'object':
self._ValidateObjectSchema(schema)
# If the schema has an 'id', ensure that the id is unique and store the
# schema for later reference.
if 'id' in schema:
ref_id = schema['id']
if ref_id in self.schemas_by_id:
self._Error("ID '%s' is not unique." % ref_id)
if len(self.errors) == num_errors_before:
self.schemas_by_id[ref_id] = schema
else:
self.invalid_ref_ids.add(ref_id)
def _ValidateStringSchema(self, schema):
"""Validates a |schema| with type 'string'.
Validates the 'enum' (see _ValidateEnum()) and/or 'pattern' property (see
_ValidatePattern()) if existing.
Args:
schema (dict): The JSON schema.
"""
if 'enum' in schema:
self._ValidateEnum(schema['enum'], 'string')
if 'pattern' in schema:
self._ValidatePattern(schema['pattern'])
def _ValidateIntegerSchema(self, schema):
"""Validates a |schema| with type 'integer'.
Validates the 'enum' property (see _ValidateEnum()) if existing. This
method also ensures that the specified minimum value is smaller or equal to
the specified maximum value, if both exist.
Args:
schema (dict): The JSON schema.
"""
if 'enum' in schema:
self._ValidateEnum(schema['enum'], 'integer')
if ('minimum' in schema and 'maximum' in schema and
schema['minimum'] > schema['maximum']):
self._Error("Invalid range specified: [%s; %s]" % (schema['minimum'],
schema['maximum']))
def _ValidateArraySchema(self, schema):
"""Validates a |schema| with type 'array'.
Validates that the 'items' attribute exists and its value is a valid schema.
Args:
schema (dict): The JSON schema.
"""
if 'items' in schema:
self._ValidateSchemaInternal(schema['items'])
else:
self._Error("Schema of type 'array' must have an 'items' attribute.")
def _ValidateObjectSchema(self, schema):
"""Validates a schema of type 'object'.
If |schema| has a 'required' attribute, this method validates that it is not
empty, only contains strings and only contains property names of properties
defined in the 'properties' attribute.
This method also ensures that at least one of 'properties',
'patternProperties' or 'additionalProperties' is defined.
If 'properties' are defined, they must have non-empty string names and
contain a valid schema.
If 'patternProperties' are defined, they must be valid regex patterns and
contain a valid schema.
If 'additionalProperties is defined, it must contain a valid schema.
Args:
schema (dict): The JSON schema.
'"""
# Validate 'required' attribute.
if 'required' in schema:
required_properties = schema['required']
if not required_properties:
self._Error("Attribute 'required' may not be empty (omit it if empty).")
if not all(
isinstance(required_property, str)
for required_property in required_properties):
self._Error("Attribute 'required' may only contain strings.")
properties = schema.get('properties', {})
unknown_properties = [
property_name for property_name in required_properties
if property_name not in properties
]
if unknown_properties:
self._Error("Unknown properties in 'required': %s" % unknown_properties)
# Validate '*properties' attributes.
has_any_properties = False
if 'properties' in schema:
has_any_properties = True
properties = schema['properties']
for property_name, property_schema in properties.items():
if not isinstance(property_name, str):
self._Error("Property name must be a string.")
if not property_name:
self._Error("Property name may not be empty.")
self._ValidateSchemaInternal(property_schema)
if 'patternProperties' in schema:
has_any_properties = True
pattern_properties = schema['patternProperties']
for property_pattern, property_schema in pattern_properties.items():
self._ValidatePattern(property_pattern)
self._ValidateSchemaInternal(property_schema)
if 'additionalProperties' in schema:
has_any_properties = True
additional_properties = schema['additionalProperties']
self._ValidateSchemaInternal(additional_properties)
if not has_any_properties:
self._Error(
"Schema of type 'object' must have at least one of the following "
"attributes: ['properties', 'patternProperties' or "
"'additionalProperties'].")
def _ValidateEnum(self, enum, schema_type):
"""Validates an |enum| of type |schema_type|.
Validates that |enum| is not empty and its elements have the correct type
according to |schema_type| (see ENUM_ITEM_TYPES).
Args:
enum (list): The list of enum values.
schema_type (str): The schema type in which the enum is used.
"""
if not enum:
self._Error("Attribute 'enum' may not be empty.")
item_type = ENUM_ITEM_TYPES[schema_type]
if not all(isinstance(enum_value, item_type) for enum_value in enum):
self._Error(("Attribute 'enum' for type '%s' may only contain elements of"
" type %s: %s") % (schema_type, item_type, enum))
def _ValidatePattern(self, pattern):
"""Validates a regex |pattern|.
Validates that |pattern| is a string and can be used as regex pattern.
Args:
pattern (str): The regex pattern.
"""
if not isinstance(pattern, str):
self._Error("Pattern must be a string: %s" % pattern)
try:
re.compile(pattern)
except re.error:
self._Error("Pattern is not a valid regex: %s" % pattern)
def ValidateValue(self, schema, value, enforce_use_entire_schema=False):
"""Validates that |value| complies to |schema|.
See _ValidateValueInternal(schema, value) for a detailed description of the
value validation. If |enforce_use_entire_schema| is enabled, each value and
its sub-values have to use every property of each used schema at least once
and values with schema type 'array' may not be empty.
Args:
schema (dict): The JSON schema.
value (any): The value being validated.
enforce_use_entire_schema (bool): Whether each property hsa to be used at
least once.
Returns:
A list contains all value errors.
"""
self.enforce_use_entire_schema = enforce_use_entire_schema
self.expected_properties = {}
self.expected_pattern_properties = {}
self.expected_additional_properties = {}
self.used_properties = {}
self.used_pattern_properties = {}
self.used_additional_properties = {}
self.errors = []
self._ValidateValueInternal(schema, value)
# Check that all properties, patternProperties and additionalProperties were
# used at least once for each schema.
if self.enforce_use_entire_schema:
if self.expected_properties != self.used_properties:
for schema_id, expected_properties \
in self.expected_properties.items():
used_properties = self.used_properties.get(schema_id, set())
unused_properties = expected_properties.difference(used_properties)
if unused_properties:
self._Error("Unused properties: %s" % unused_properties)
if self.expected_pattern_properties != self.used_pattern_properties:
for schema_id, expected_properties \
in self.expected_pattern_properties.items():
used_properties = self.used_pattern_properties.get(schema_id, set())
unused_properties = expected_properties.difference(used_properties)
if unused_properties:
self._Error("Unused pattern properties: %s" % unused_properties)
if self.expected_additional_properties != self.used_additional_properties:
self._Error("Unused additional properties.")
return self.errors
def _ValidateValueInternal(self, schema, value):
"""Validates that |value| complies to |schema|.
This method checks if the |value|'s type is correct according to type
expected in |schema| and calls the associated
_Validate{Integer,String,Array,Object}ValueInternal(schema, value).
Args:
schema (dict): The JSON schema.
value (any): The value being validated.
"""
# Load schema from store if it has '$ref'.
if '$ref' in schema:
ref_id = schema['$ref']
if ref_id not in self.schemas_by_id:
self._Error("Unknown $ref id: %s" % ref_id)
schema = self.schemas_by_id[ref_id]
schema_type = schema.get('type')
if schema_type == 'boolean' and isinstance(value, bool):
pass # Boolean doesn't need any validation.
elif schema_type == 'integer' and isinstance(value, int):
self.ValidateIntegerValue(schema, value)
elif schema_type == 'string' and isinstance(value, (bytes, str)):
self.ValidateStringValue(schema, value)
elif schema_type == 'array' and isinstance(value, list):
self.ValidateArrayValue(schema, value)
elif schema_type == 'object' and isinstance(value, dict):
self.ValidateObjectValue(schema, value)
else:
# Type mismatch or unknown type.
self._Error(
"Type mismatch or unknown (schema_type: %s; value_type: %s): %s" %
(schema_type, type(value), value))
def ValidateIntegerValue(self, schema, value):
"""Validates an integer |value| according to |schema|.
If the |schema| has an enum of possible values, check whether |value| is one
of them.
If 'minimum' and/or 'maximum' are defined in |schema|, check that
minimum <= value <= maximum.
Args:
schema (dict): The JSON schema.
value (int): The value being validated.
"""
if 'enum' in schema:
self._ValidateEnumValue(schema['enum'], value)
if (('minimum' in schema and value < schema['minimum']) or
('maximum' in schema and value > schema['maximum'])):
self._Error(
"Value %s not in range [%s,%s]." %
(value, schema.get('minimum', '-inf'), schema.get('maximum', '+inf')))
def ValidateStringValue(self, schema, value):
"""Validates a string |value| according to |schema|.
If the |schema| has an enum of possible values, check whether |value| is one
of them.
If the |schema| has a 'pattern' attribute, check whether |value| matches the
pattern.
Args:
schema (dict): The JSON schema.
value (str): The value being validated.
"""
if 'enum' in schema:
self._ValidateEnumValue(schema['enum'], value)
if 'pattern' in schema:
pattern = schema['pattern']
if not re.search(pattern, value):
self._Error(
"String value '%s' does not match pattern '%s'." % (value, pattern))
def ValidateArrayValue(self, schema, child_values):
"""Validates an array |child_values| according to |schema|.
Validates each item in |child_values| (see _ValidateValueInternal()).
If |enforce_use_entire_schema| is enabled, the value must contain at least
one element.
Args:
schema (dict): The JSON schema.
child_values (list): The list of children being validated.
"""
child_schema = schema.get('items')
for child_value in child_values:
self._ValidateValueInternal(child_schema, child_value)
if self.enforce_use_entire_schema and not child_values:
self._Error("Array must contain at least one item.")
def ValidateObjectValue(self, schema, value):
"""Validates an object |value| according to |schema|.
Validates each property in |value| according to its matching schema out of
the |schema|'s 'properties', 'patternProperties' or 'additionalProperties'
properties. Also adds the property to the set of |used_*properties|.
If the |schema| is used for the first time in this validation, the
|expected_*properties| are initialized to the |schema|'s properties.
Args:
schema (dict): The JSON schema.
value (dict): The value being validated.
"""
# Get allowed properties.
properties = schema.get('properties', {})
pattern_properties = schema.get('patternProperties', {})
additional_properties = schema.get('additionalProperties', {})
# If the schema hasn't been used before, store sets of expected properties,
# patternProperties and a bool whether we expect additionalProperties to be
# used. Also initialize the list of used properties and patternProperties to
# empty sets.
schema_id = id(schema)
if schema_id not in self.expected_properties:
self.expected_properties[schema_id] = set(properties.keys())
self.expected_pattern_properties[schema_id] = set(
pattern_properties.keys())
self.expected_additional_properties[schema_id] = (
'additionalProperties' in schema)
self.used_properties[schema_id] = set()
self.used_pattern_properties[schema_id] = set()
self.used_additional_properties[schema_id] = False
for property_key, property_value in value.items():
# Find property schema from either properties, patternProperties or
# additionalProperties.
property_schema = {}
if properties and property_key in properties:
property_schema = properties[property_key]
self.used_properties[schema_id].add(property_key)
elif pattern_properties:
matched_pattern = next((pattern
for pattern in pattern_properties.keys()
if re.search(pattern, property_key)), "")
property_schema = pattern_properties.get(matched_pattern, {})
self.used_pattern_properties[schema_id].add(matched_pattern)
if not property_schema and additional_properties:
property_schema = additional_properties
self.used_additional_properties[schema_id] = True
if not property_schema:
self._Error("Unknown property: %s" % property_key)
self._ValidateValueInternal(property_schema, property_value)
# Check that all 'required' properties are existing.
if 'required' in schema:
missing_required = [
required_key for required_key in schema['required']
if required_key not in value
]
if missing_required:
self._Error("Required property missing: %s" % missing_required)
def _ValidateEnumValue(self, enum, value):
"""Validates that |value| is in |enum|.
Args:
enum (list): The list of allowed values.
value (any): The value being validated.
"""
if value not in enum:
self._Error("Unknown enum value: %s (expected one of %s)" % (value, enum))
def _Error(self, message):
"""Captures an error.
Stores error |messages|.
Args:
message (str): The error message."""
self.errors.append(message)
|