我正在尝试修补执行数据库查找并返回如下对象的上下文管理器:
class MyClass:
@contextlib.contextmanager
def client_ctx(self, id):
# hidrate from DB and yield object
yield client # instance of SQAlchemy model Client
def run(self, id):
with self.client_ctx(id) as cl:
# do work here
在这种情况下,客户端类是一个 SQLAlchemy 模型。
在我的测试中,我试图修补此方法client_ctx以简单地返回在测试中实例化的对象,如下所示:
@patch('MyClass.client_ctx')
def test_ctx(self, _mocked_ctx_manager):
myclass = MyClass()
client = Client(
id=1,
code='test-client')
_mocked_ctx_manager.__enter__.return_value = client
myclass.run(1)
我得到:TypeError: Object of type MagicMock is not JSON serializable这对我来说毫无意义。我做错了什么,有没有更好的方法来模拟上下文管理器?
30秒到达战场
相关分类