| """ |
| Copyright (c) 2013 Julian Berman |
| |
| Permission is hereby granted, free of charge, to any person obtaining a copy |
| of this software and associated documentation files (the "Software"), to deal |
| in the Software without restriction, including without limitation the rights |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| copies of the Software, and to permit persons to whom the Software is |
| furnished to do so, subject to the following conditions: |
| |
| The above copyright notice and this permission notice shall be included in |
| all copies or substantial portions of the Software. |
| |
| SPDX-License-Identifier: MIT |
| """ |
|
|
| |
| |
| from __future__ import annotations |
|
|
| import logging |
| from collections import deque |
| from collections.abc import Mapping |
| from dataclasses import dataclass, field, fields |
| from typing import Any, Callable |
|
|
| from cfnlint.conditions import UnknownSatisfisfaction |
| from cfnlint.context import Context, create_context_for_template |
| from cfnlint.helpers import is_function |
| from cfnlint.jsonschema import _keywords, _keywords_cfn, _resolvers_cfn |
| from cfnlint.jsonschema._filter import FunctionFilter |
| from cfnlint.jsonschema._format import FormatChecker, cfn_format_checker |
| from cfnlint.jsonschema._types import TypeChecker, cfn_type_checker |
| from cfnlint.jsonschema._typing import ResolutionResult, V, ValidationResult |
| from cfnlint.jsonschema._utils import custom_msg |
| from cfnlint.jsonschema.exceptions import ( |
| UndefinedTypeCheck, |
| UnknownType, |
| ValidationError, |
| ) |
| from cfnlint.schema.resolver import RefResolver, id_of |
| from cfnlint.template import Template |
|
|
| LOGGER = logging.getLogger(__name__) |
|
|
|
|
| def create( |
| validators: Mapping[str, V] | None = None, |
| function_filter: FunctionFilter | None = None, |
| fn_resolvers: Mapping[str, Any] | None = None, |
| ): |
| validators_arg = validators or {} |
| function_filter_arg = function_filter or FunctionFilter() |
| fn_resolvers_arg = fn_resolvers or {} |
|
|
| @dataclass |
| class Validator: |
| """ |
| |
| Arguments: |
| |
| schema: |
| |
| The schema that the validator object will validate with. |
| It is assumed to be valid, and providing |
| an invalid schema can lead to undefined behavior. |
| """ |
|
|
| _type_checker: TypeChecker = field( |
| init=False, default_factory=lambda: cfn_type_checker |
| ) |
| format_checker: FormatChecker = field( |
| init=False, default_factory=lambda: cfn_format_checker |
| ) |
|
|
| |
| schema: Mapping | bool = field(repr=True, default=True) |
| validators: Mapping[str, V] = field( |
| init=False, default_factory=lambda: validators_arg |
| ) |
| resolver: RefResolver = field(default=None, repr=False) |
| function_filter: FunctionFilter = field( |
| init=True, default_factory=lambda: function_filter_arg |
| ) |
| cfn: Template = field(default_factory=lambda: Template(None, {})) |
| context: Context = field(default=None) |
|
|
| fn_resolvers: Mapping[ |
| str, |
| Callable[["Validator", Any], ResolutionResult], |
| ] = field(init=False, default_factory=lambda: fn_resolvers_arg) |
|
|
| def __post_init__(self): |
| if self.context is None: |
| self.context = create_context_for_template(self.cfn) |
| if self.resolver is None: |
| self.resolver = RefResolver.from_schema( |
| schema=self.schema, |
| ) |
|
|
| def is_type(self, instance: Any, type: str) -> bool: |
| """ |
| Check if the instance is of the given (JSON Schema) type. |
| |
| Arguments: |
| |
| instance: |
| |
| the value to check |
| |
| type: |
| |
| the name of a known (JSON Schema) type |
| |
| Returns: |
| |
| whether the instance is of the given type |
| |
| Raises: |
| |
| `cfnlint.jsonschema.exceptions.UnknownType`: |
| |
| if ``type`` is not a known type |
| """ |
| try: |
| return self._type_checker.is_type(instance, type) |
| except UndefinedTypeCheck: |
| raise UnknownType(type, instance, self.schema) |
|
|
| def is_valid(self, instance: Any) -> bool: |
| """ |
| Check if the instance is valid under the current `schema`. |
| |
| Returns: |
| |
| whether the instance is valid or not |
| |
| >>> schema = {"maxItems" : 2} |
| >>> StandardValidator(schema).is_valid([2, 3, 4]) |
| False |
| """ |
| error = next(self.iter_errors(instance), None) |
| return error is None |
|
|
| def _resolve_fn(self, key: str, value: Any) -> ResolutionResult: |
| for ( |
| value_resolved_value, |
| value_resolved_validator, |
| value_resolved_errs, |
| ) in self.resolve_value(value): |
| if value_resolved_errs: |
| continue |
| for ( |
| fn_resolved_value, |
| fn_resolved_validator, |
| fn_resolved_err, |
| ) in self.fn_resolvers[key]( |
| value_resolved_validator, value_resolved_value |
| ): |
| if fn_resolved_err: |
| fn_resolved_err.path.appendleft(key) |
| yield ( |
| fn_resolved_value, |
| fn_resolved_validator, |
| fn_resolved_err, |
| ) |
|
|
| def resolve_value(self, instance: Any) -> ResolutionResult: |
| key, value = is_function(instance) |
| if key in self.fn_resolvers: |
| |
| for r_value, r_validator, r_errs in self._resolve_fn(key, value): |
| if not r_errs: |
| try: |
| for _, region_context in r_validator.context.ref_value( |
| "AWS::Region" |
| ): |
| if self.cfn.conditions.satisfiable( |
| region_context.conditions.status, |
| region_context.ref_values, |
| ): |
| yield r_value, r_validator.evolve( |
| context=region_context.evolve( |
| is_resolved_value=True, |
| ) |
| ), r_errs |
| except UnknownSatisfisfaction as err: |
| LOGGER.debug(err) |
| return |
| else: |
| yield None, r_validator, r_errs |
| return |
|
|
| |
| |
| yield instance, self, None |
|
|
| def iter_errors(self, instance: Any) -> ValidationResult: |
| r""" |
| Lazily yield each of the validation errors in the given instance. |
| |
| >>> schema = { |
| ... "type" : "array", |
| ... "items" : {"enum" : [1, 2, 3]}, |
| ... "maxItems" : 2, |
| ... } |
| >>> v = StandardValidator(schema) |
| >>> for error in sorted(v.iter_errors([2, 3, 4]), key=str): |
| ... print(error.message) |
| 4 is not one of [1, 2, 3] |
| [2, 3, 4] is too long |
| """ |
| schema = self.schema |
|
|
| if schema is True: |
| return |
| elif schema is False: |
| yield ValidationError( |
| f"False schema does not allow {instance!r}", |
| validator=None, |
| validator_value=None, |
| instance=instance, |
| schema=schema, |
| ) |
| return |
|
|
| scope = id_of(schema) |
| if scope: |
| self.resolver.push_scope(scope) |
| try: |
| |
| for _instance, _schema, _validator in self.function_filter.filter( |
| self, instance, schema |
| ): |
| for k, v in _schema.items(): |
| validator = self.validators.get(k) |
| if validator is None: |
| continue |
|
|
| try: |
| for err in ( |
| validator(_validator, v, _instance, _schema) or () |
| ): |
| msg = custom_msg(k, _schema) or err.message |
| if msg is not None: |
| err.message = msg |
| |
| err._set( |
| validator=k, |
| validator_value=v, |
| instance=_instance, |
| schema=_schema, |
| type_checker=self._type_checker, |
| ) |
| if k not in {"if", "$ref"}: |
| err.schema_path.appendleft(k) |
| yield err |
| except Exception as err: |
| LOGGER.debug(err, exc_info=True) |
| yield ValidationError( |
| f"Exception {str(err)!r} raised while validating {k!r}", |
| validator=k, |
| validator_value=v, |
| instance=instance, |
| schema=self.schema, |
| schema_path=deque([k]), |
| ) |
| finally: |
| if scope: |
| self.resolver.pop_scope() |
|
|
| def validate(self, instance: Any) -> None: |
| """ |
| Check if the instance is valid under the current `schema`. |
| |
| Raises: |
| |
| `cfnlint.jsonschema.exceptions.ValidationError`: |
| |
| if the instance is invalid |
| |
| >>> schema = {"maxItems" : 2} |
| >>> StandardValidator(schema).validate([2, 3, 4]) |
| Traceback (most recent call last): |
| ... |
| ValidationError: [2, 3, 4] is too long |
| """ |
| for error in self.iter_errors(instance): |
| raise error |
|
|
| def descend( |
| self, |
| instance: Any, |
| schema: Any, |
| path: str | int | None = None, |
| schema_path: str | int | None = None, |
| property_path: str | None = None, |
| ) -> ValidationResult: |
| for error in self.evolve( |
| schema=schema, |
| context=self.context.evolve( |
| path=self.context.path.descend( |
| path=path, |
| cfn_path=property_path, |
| ), |
| ), |
| ).iter_errors(instance): |
| if path is not None: |
| error.path.appendleft(path) |
| if schema_path is not None: |
| error.schema_path.appendleft(schema_path) |
| yield error |
|
|
| def evolve(self, **kwargs) -> "Validator": |
| """ |
| Create a new validator like this one, but with given changes. |
| |
| Preserves all other attributes, so can be used to e.g. create a |
| validator with a different schema but with the same :kw:`$ref` |
| resolution behavior. |
| |
| >>> validator = StandardValidator({}) |
| >>> validator.evolve(schema={"type": "number"}) |
| StandardValidator(schema={'type': 'number'}, format_checker=None) |
| """ |
| cls = self.__class__ |
| for f in fields(Validator): |
| if f.init: |
| kwargs.setdefault(f.name, getattr(self, f.name)) |
|
|
| return cls(**kwargs) |
|
|
| def extend( |
| self, |
| validators: dict[str, V] | None = None, |
| function_filter: FunctionFilter | None = None, |
| fn_resolvers: Mapping[str, Callable[["Validator", Any], Any]] | None = None, |
| ) -> "Validator": |
| """ |
| Extends the current validator. |
| |
| Updates validator in the current instance with the validators provided. |
| |
| >>> validator = StandardValidator({}).extend(validators={"type": type}) |
| """ |
| all_validators = dict(self.validators) |
| if validators is not None: |
| all_validators.update(validators) |
|
|
| if function_filter is None: |
| function_filter = self.function_filter |
|
|
| all_fn_resolvers = dict(self.fn_resolvers) |
| if fn_resolvers is not None: |
| all_fn_resolvers.update(fn_resolvers) |
|
|
| return create( |
| validators=all_validators, |
| function_filter=function_filter, |
| fn_resolvers=all_fn_resolvers, |
| ) |
|
|
| return Validator |
|
|
|
|
| _standard_validators: dict[str, V] = { |
| "$ref": _keywords.ref, |
| "additionalProperties": _keywords.additionalProperties, |
| "allOf": _keywords.allOf, |
| "anyOf": _keywords.anyOf, |
| "const": _keywords.const, |
| "contains": _keywords.contains, |
| "dependencies": _keywords.dependencies, |
| "dependentRequired": _keywords.dependentRequired, |
| "dependentExcluded": _keywords.dependentExcluded, |
| "enum": _keywords.enum, |
| "enumCaseInsensitive": _keywords.enumCaseInsensitive, |
| "exclusiveMaximum": _keywords.exclusiveMaximum, |
| "exclusiveMinimum": _keywords.exclusiveMinimum, |
| "format": _keywords.format, |
| "if": _keywords.if_, |
| "items": _keywords.items, |
| "maxItems": _keywords.maxItems, |
| "maxLength": _keywords.maxLength, |
| "maxProperties": _keywords.maxProperties, |
| "maximum": _keywords.maximum, |
| "minItems": _keywords.minItems, |
| "minLength": _keywords.minLength, |
| "minProperties": _keywords.minProperties, |
| "minimum": _keywords.minimum, |
| "multipleOf": _keywords.multipleOf, |
| "not": _keywords.not_, |
| "oneOf": _keywords.oneOf, |
| "pattern": _keywords.pattern, |
| "patternProperties": _keywords.patternProperties, |
| "prefixItems": _keywords.prefixItems, |
| "properties": _keywords.properties, |
| "propertyNames": _keywords.propertyNames, |
| "required": _keywords.required, |
| "requiredOr": _keywords.requiredOr, |
| "requiredXor": _keywords.requiredXor, |
| "type": _keywords.type, |
| "uniqueItems": _keywords.uniqueItems, |
| "uniqueKeys": _keywords.uniqueKeys, |
| } |
|
|
| CfnTemplateValidator = create( |
| validators={ |
| **_standard_validators, |
| **_keywords_cfn.cfn_validators, |
| }, |
| function_filter=FunctionFilter(), |
| fn_resolvers=_resolvers_cfn.fn_resolvers, |
| ) |
|
|
| StandardValidator = create( |
| validators=_standard_validators, |
| function_filter=FunctionFilter( |
| add_cfn_lint_keyword=False, |
| ), |
| ) |
|
|