2024-10-16 03:38:49 +00:00
|
|
|
"""
|
|
|
|
* LogarithmPlotter - 2D plotter software to make BODE plots, sequences and distribution functions.
|
|
|
|
* Copyright (C) 2021-2024 Ad5001
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
"""
|
|
|
|
from typing import Callable, Self
|
|
|
|
|
2024-10-16 20:18:53 +00:00
|
|
|
from tests.plugins.natural.interfaces.base import Assertion, repr_, AssertionInterface
|
|
|
|
from tests.plugins.natural.interfaces.int import IntComparisonAssertionInterface
|
2024-10-16 03:38:49 +00:00
|
|
|
|
|
|
|
PRINT_PREFIX = (" " * 24)
|
|
|
|
|
2024-10-16 20:18:53 +00:00
|
|
|
|
|
|
|
class SpyAssertion(Assertion):
|
|
|
|
def __init__(self, assertion: bool, message: str, calls: list):
|
|
|
|
super().__init__(assertion, message + "\n")
|
2024-10-16 03:38:49 +00:00
|
|
|
if len(calls) > 0:
|
|
|
|
self.message += self.render_calls(calls)
|
|
|
|
else:
|
|
|
|
self.message += f"{PRINT_PREFIX}0 registered calls."
|
|
|
|
|
|
|
|
|
|
|
|
def render_calls(self, calls):
|
|
|
|
lines = [f"{PRINT_PREFIX}{len(calls)} registered call(s):"]
|
|
|
|
for call in calls:
|
2024-10-16 20:18:53 +00:00
|
|
|
repr_args = [repr_(arg) for arg in call[0]]
|
|
|
|
repr_kwargs = [f"{key}={repr_(arg)}" for key, arg in call[1].items()]
|
2024-10-16 03:38:49 +00:00
|
|
|
lines.append(f" - {', '.join([*repr_args, *repr_kwargs])}")
|
|
|
|
return ("\n" + PRINT_PREFIX).join(lines)
|
|
|
|
|
|
|
|
|
|
|
|
class Methods:
|
|
|
|
AT_LEAST_ONCE = "AT_LEAST_ONCE"
|
|
|
|
EXACTLY = "EXACTLY"
|
|
|
|
AT_LEAST = "AT_LEAST"
|
|
|
|
AT_MOST = "AT_MOST"
|
|
|
|
MORE_THAN = "AT_LEAST"
|
|
|
|
LESS_THAN = "AT_MOST"
|
|
|
|
|
2024-10-16 20:18:53 +00:00
|
|
|
|
|
|
|
class CalledInterface(IntComparisonAssertionInterface):
|
2024-10-16 03:38:49 +00:00
|
|
|
"""
|
|
|
|
Internal class generated by Spy.was_called.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, calls: list[tuple[list, dict]]):
|
2024-10-16 20:18:53 +00:00
|
|
|
super().__init__(len(calls))
|
2024-10-16 03:38:49 +00:00
|
|
|
self.__calls = calls
|
|
|
|
self.__method = Methods.AT_LEAST_ONCE
|
|
|
|
|
|
|
|
def __apply_method(self, calls):
|
2024-10-16 20:18:53 +00:00
|
|
|
required = self._compare_to
|
2024-10-16 03:38:49 +00:00
|
|
|
calls_count = len(calls)
|
|
|
|
match self.__method:
|
|
|
|
case Methods.AT_LEAST_ONCE:
|
|
|
|
compare = len(calls) >= 1
|
|
|
|
error = "Method was not called"
|
|
|
|
case Methods.EXACTLY:
|
|
|
|
compare = len(calls) == required
|
|
|
|
error = f"Method was not called {required} times ({required} != {calls_count})"
|
|
|
|
case Methods.AT_LEAST:
|
|
|
|
compare = len(calls) >= required
|
|
|
|
error = f"Method was not called at least {required} times ({required} > {calls_count})"
|
|
|
|
case Methods.AT_MOST:
|
|
|
|
compare = len(calls) <= required
|
|
|
|
error = f"Method was not called at most {required} times ({required} < {calls_count})"
|
|
|
|
case Methods.MORE_THAN:
|
|
|
|
compare = len(calls) > required
|
|
|
|
error = f"Method was not called more than {required} times ({required} >= {calls_count})"
|
|
|
|
case Methods.LESS_THAN:
|
|
|
|
compare = len(calls) < required
|
|
|
|
error = f"Method was not called less than {required} times ({required} <= {calls_count})"
|
|
|
|
case _:
|
|
|
|
raise RuntimeError(f"Unknown method {self.__method}.")
|
|
|
|
return compare, error
|
|
|
|
|
2024-10-16 20:18:53 +00:00
|
|
|
def __bool__(self) -> bool:
|
2024-10-16 03:38:49 +00:00
|
|
|
"""
|
|
|
|
Converts to boolean on assertion.
|
|
|
|
"""
|
|
|
|
compare, error = self.__apply_method(self.__calls)
|
2024-10-16 20:18:53 +00:00
|
|
|
return bool(SpyAssertion(compare, error + ".", self.__calls))
|
2024-10-16 03:38:49 +00:00
|
|
|
|
|
|
|
"""
|
|
|
|
Chaining methods
|
|
|
|
"""
|
2024-10-16 20:18:53 +00:00
|
|
|
|
2024-10-16 03:38:49 +00:00
|
|
|
def __call__(self, *args, **kwargs) -> Self:
|
|
|
|
if len(args) != 1:
|
|
|
|
raise RuntimeError("Cannot call called interface with more than one argument.")
|
2024-10-16 20:18:53 +00:00
|
|
|
self._compare_to = int(args[0])
|
2024-10-16 03:38:49 +00:00
|
|
|
if self.__method == Methods.AT_LEAST_ONCE:
|
|
|
|
self.__method = Methods.EXACTLY
|
|
|
|
return self
|
|
|
|
|
|
|
|
@property
|
|
|
|
def at_least(self) -> Self:
|
2024-10-16 20:18:53 +00:00
|
|
|
if self.__method == Methods.AT_LEAST_ONCE:
|
|
|
|
self.__method = Methods.AT_LEAST
|
|
|
|
else:
|
|
|
|
raise RuntimeError(f"Cannot redefine method from {self.__method} to {Methods.AT_MOST}")
|
2024-10-16 03:38:49 +00:00
|
|
|
return self
|
|
|
|
|
|
|
|
@property
|
|
|
|
def at_most(self) -> Self:
|
2024-10-16 20:18:53 +00:00
|
|
|
if self.__method == Methods.AT_LEAST_ONCE:
|
|
|
|
self.__method = Methods.AT_MOST
|
|
|
|
else:
|
|
|
|
raise RuntimeError(f"Cannot redefine method from {self.__method} to {Methods.AT_MOST}")
|
2024-10-16 03:38:49 +00:00
|
|
|
return self
|
|
|
|
|
|
|
|
@property
|
|
|
|
def more_than(self) -> Self:
|
2024-10-16 20:18:53 +00:00
|
|
|
if self.__method == Methods.AT_LEAST_ONCE:
|
|
|
|
self.__method = Methods.MORE_THAN
|
|
|
|
else:
|
|
|
|
raise RuntimeError(f"Cannot redefine method from {self.__method} to {Methods.MORE_THAN}")
|
2024-10-16 03:38:49 +00:00
|
|
|
return self
|
|
|
|
|
|
|
|
@property
|
|
|
|
def less_than(self) -> Self:
|
2024-10-16 20:18:53 +00:00
|
|
|
if self.__method == Methods.AT_LEAST_ONCE:
|
|
|
|
self.__method = Methods.LESS_THAN
|
|
|
|
else:
|
|
|
|
raise RuntimeError(f"Cannot redefine method from {self.__method} to {Methods.LESS_THAN}")
|
|
|
|
return self
|
|
|
|
|
|
|
|
@property
|
|
|
|
def time(self) -> Self:
|
2024-10-16 03:38:49 +00:00
|
|
|
return self
|
|
|
|
|
|
|
|
@property
|
|
|
|
def times(self) -> Self:
|
|
|
|
return self
|
|
|
|
|
|
|
|
"""
|
|
|
|
Class properties.
|
|
|
|
"""
|
2024-10-16 20:18:53 +00:00
|
|
|
|
2024-10-16 03:38:49 +00:00
|
|
|
def __match_calls_for_condition(self, condition: Callable[[list, dict], bool]) -> tuple[bool, str]:
|
|
|
|
calls = []
|
|
|
|
for call in self.__calls:
|
|
|
|
if condition(call[0], call[1]):
|
|
|
|
calls.append(call)
|
|
|
|
compare, error = self.__apply_method(calls)
|
|
|
|
return compare, error
|
|
|
|
|
2024-10-16 20:18:53 +00:00
|
|
|
def with_arguments(self, *args, **kwargs) -> SpyAssertion:
|
2024-10-16 03:38:49 +00:00
|
|
|
"""
|
|
|
|
Checks if the Spy has been called the given number of times
|
|
|
|
with at least the given arguments.
|
|
|
|
"""
|
2024-10-16 20:18:53 +00:00
|
|
|
|
2024-10-16 03:38:49 +00:00
|
|
|
def some_args_matched(a, kw):
|
|
|
|
args_matched = all((
|
|
|
|
arg in a
|
|
|
|
for arg in args
|
|
|
|
))
|
|
|
|
kwargs_matched = all((
|
|
|
|
key in kw and kw[key] == arg
|
|
|
|
for key, arg in kwargs.items()
|
|
|
|
))
|
|
|
|
return args_matched and kwargs_matched
|
|
|
|
|
2024-10-16 20:18:53 +00:00
|
|
|
compare, error = self.__match_calls_for_condition(some_args_matched)
|
|
|
|
repr_args = ', '.join([repr(arg) for arg in args])
|
|
|
|
repr_kwargs = ', '.join([f"{key}={repr(arg)}" for key, arg in kwargs.items()])
|
|
|
|
msg = f"{error} with arguments ({repr_args}) and keyword arguments ({repr_kwargs})."
|
|
|
|
return SpyAssertion(compare, msg, self.__calls)
|
2024-10-16 03:38:49 +00:00
|
|
|
|
2024-10-16 20:18:53 +00:00
|
|
|
def with_arguments_matching(self, test_condition: Callable[[list, dict], bool]) -> SpyAssertion:
|
2024-10-16 03:38:49 +00:00
|
|
|
"""
|
|
|
|
Checks if the Spy has been called the given number of times
|
|
|
|
with arguments matching the given conditions.
|
|
|
|
"""
|
|
|
|
compare, error = self.__match_calls_for_condition(test_condition)
|
2024-10-16 20:18:53 +00:00
|
|
|
msg = f"{error} with arguments matching given conditions."
|
|
|
|
return SpyAssertion(compare, msg, self.__calls)
|
2024-10-16 03:38:49 +00:00
|
|
|
|
2024-10-16 20:18:53 +00:00
|
|
|
def with_exact_arguments(self, *args, **kwargs) -> SpyAssertion:
|
2024-10-16 03:38:49 +00:00
|
|
|
"""
|
|
|
|
Checks if the Spy has been called the given number of times
|
|
|
|
with all the given arguments.
|
|
|
|
"""
|
|
|
|
compare, error = self.__match_calls_for_condition(lambda a, kw: a == args and kw == kwargs)
|
2024-10-16 20:18:53 +00:00
|
|
|
repr_args = ', '.join([repr(arg) for arg in args])
|
|
|
|
repr_kwargs = ', '.join([f"{key}={repr(arg)}" for key, arg in kwargs.items()])
|
|
|
|
msg = f"{error} with exact arguments ({repr_args}) and keyword arguments ({repr_kwargs})."
|
|
|
|
return SpyAssertion(compare, msg, self.__calls)
|
2024-10-16 03:38:49 +00:00
|
|
|
|
2024-10-16 20:18:53 +00:00
|
|
|
def with_no_argument(self) -> SpyAssertion:
|
2024-10-16 03:38:49 +00:00
|
|
|
"""
|
|
|
|
Checks if the Spy has been called the given number of times
|
|
|
|
with all the given arguments.
|
|
|
|
"""
|
|
|
|
compare, error = self.__match_calls_for_condition(lambda a, kw: len(a) == 0 and len(kw) == 0)
|
2024-10-16 20:18:53 +00:00
|
|
|
return SpyAssertion(compare, f"{error} with no arguments.", self.__calls)
|
2024-10-16 03:38:49 +00:00
|
|
|
|
|
|
|
|
2024-10-16 20:18:53 +00:00
|
|
|
class Spy(AssertionInterface):
|
2024-10-16 03:38:49 +00:00
|
|
|
"""
|
|
|
|
Class to spy into method calls with natural language expressions.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, function: Callable = None):
|
2024-10-16 20:18:53 +00:00
|
|
|
super().__init__(function)
|
2024-10-16 03:38:49 +00:00
|
|
|
self.function = function
|
|
|
|
self.calls = []
|
|
|
|
|
|
|
|
def __call__(self, *args, **kwargs):
|
|
|
|
self.calls.append((args, kwargs))
|
|
|
|
if self.function is not None:
|
|
|
|
self.function(*args, **kwargs)
|
|
|
|
|
|
|
|
@property
|
2024-10-16 20:18:53 +00:00
|
|
|
def called(self) -> CalledInterface:
|
2024-10-16 03:38:49 +00:00
|
|
|
"""
|
|
|
|
Returns a boolean-able interface to check conditions for a given number of
|
|
|
|
time the spy was called.
|
|
|
|
"""
|
|
|
|
return CalledInterface(self.calls)
|
|
|
|
|
|
|
|
@property
|
2024-10-16 20:18:53 +00:00
|
|
|
def not_called(self) -> CalledInterface:
|
2024-10-16 03:38:49 +00:00
|
|
|
"""
|
|
|
|
Returns a boolean-able interface to check that conditions were never fulfilled
|
|
|
|
in the times the spy was called.
|
|
|
|
"""
|
|
|
|
ret = CalledInterface(self.calls)
|
|
|
|
return ret(0)
|