1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
from collections import defaultdict
class StubManager(object):
def __init__(self, forge):
super(StubManager, self).__init__()
self._initialized_method_stubs = defaultdict(dict)
self._recorded_method_stubs = set()
def get_initialized_method_stub_or_none(self, mock, method_name):
return self._initialized_method_stubs[mock.__forge__.id].get(method_name, None)
def add_initialized_method_stub(self, mock, method_name, method):
self._initialized_method_stubs[mock.__forge__.id][method_name] = method
def has_initialized_method_stub(self, mock, method_name):
return self.get_initialized_method_stub_or_none(mock, method_name) is not None
def mark_stub_recorded(self, stub):
self._recorded_method_stubs.add(stub.__forge__.id)
def was_stub_recorded(self, stub):
return stub.__forge__.id in self._recorded_method_stubs
|