Source code for mbtest.imposters.base

# encoding=utf-8
from abc import ABCMeta, abstractmethod
from typing import Any, Mapping, MutableMapping

# JsonStructure = Union[MutableMapping[str, "JsonStructure"], Iterable["JsonStructure"], str, int, bool, None]
JsonStructure = Any  # TODO Pending a better solution to https://github.com/python/typing/issues/182


[docs]class JsonSerializable(metaclass=ABCMeta): """Object capable of being converted to a JSON serializable structure (using :py:meth:`as_structure`) or from such a structure ((using :py:meth:`from_structure`). """
[docs] @abstractmethod def as_structure(self) -> JsonStructure: # pragma: no cover """Converted to a JSON serializable structure. :returns: Structure suitable for JSON serialisation. """ raise NotImplementedError()
[docs] @classmethod @abstractmethod def from_structure(cls, structure: JsonStructure) -> "JsonSerializable": # pragma: no cover """Converted from a JSON serializable structure. :param structure: JSON structure to be converted. :returns: Converted object. """ raise NotImplementedError()
[docs] @staticmethod def add_if_true(dictionary: MutableMapping[str, Any], key: str, value: Any) -> None: if value: dictionary[key] = value
[docs] def set_if_in_dict(self, dictionary: Mapping[str, Any], key: str, name: str) -> None: if key in dictionary: setattr(self, name, dictionary[key])
def __repr__(self) -> str: # pragma: no cover state = (f"{attr:s}={value!r:s}" for (attr, value) in vars(self).items()) return f"{self.__class__.__module__:s}.{self.__class__.__name__:s}({', '.join(state):s})"
[docs]class Injecting(JsonSerializable, metaclass=ABCMeta): def __init__(self, inject: str) -> None: self.inject = inject
[docs] def as_structure(self) -> JsonStructure: return {"inject": self.inject}