aea.configurations.validation
Implementation of the configuration validation.
make_
jsonschema_
base_
uri
Make the JSONSchema base URI, cross-platform.
Arguments:
base_uri_path
: the path to the base directory.
Returns:
the string in URI form.
ExtraPropertiesError Objects
Extra properties exception.
__
str__
Get string representation of the object.
__
repr__
Get string representation of the object.
CustomTypeChecker Objects
Custom type checker to handle env variables.
is_
type
Check is instance of type.
own_
additional_
properties
Additional properties validator.
ConfigValidator Objects
Configuration validator implementation.
__
init__
Initialize the parser for configuration files.
Arguments:
schema_filename
: the path to the JSON-schema file in 'aea/configurations/schemas'.env_vars_friendly
: whether or not it is env var friendly.
split_
component_
id_
and_
config
| @staticmethod
| split_component_id_and_config(component_index: int, component_configuration_json: Dict) -> ComponentId
Split component id and configuration.
Arguments:
component_index
: the position of the component configuration in the agent config file..component_configuration_json
: the JSON object to process.
Returns:
the component id and the configuration object.
Raises:
ValueError
: if the component id cannot be extracted.
validate_
component_
configuration
| @classmethod
| validate_component_configuration(cls, component_id: ComponentId, configuration: Dict, env_vars_friendly: bool = False) -> None
Validate the component configuration of an agent configuration file.
This check is to detect inconsistencies in the specified fields.
Arguments:
component_id
: the component id.configuration
: the configuration dictionary.env_vars_friendly
: bool, if set True, will not raise errors over the env variable definitions.
Raises:
ValueError
: if the configuration is not valid.
validate
Validate a JSON object against the right JSON schema.
Arguments:
json_data
: the JSON data.
validate_
agent_
components_
configuration
Validate agent component configurations overrides.
Arguments:
component_configurations
: the component configurations to validate.
required_
fields
Get the required fields.
Returns:
list of required fields.
validate_
data_
with_
pattern
validate_data_with_pattern(data: dict, pattern: dict, excludes: Optional[List[Tuple[str]]] = None, skip_env_vars: bool = False) -> List[str]
Validate data dict with pattern dict for attributes present and type match.
Arguments:
data
: data dict to validatepattern
: dict with pattern to check overexcludes
: list of tuples of str of paths to be skipped during the checkskip_env_vars
: is set True will not check data type over env variables.
Returns:
list of str with error descriptions
filter_
data
Return difference in values or SAME_MARK
object if values are the same.