如何在Python中模拟Redis客户端? [英] How to mock a redis client in Python?

查看:342
本文介绍了如何在Python中模拟Redis客户端?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我刚刚发现一堆单元测试失败了,因为开发人员没有在测试中嘲笑对Redis客户端的依赖关系.我正在努力解决这个问题,但我自己遇到了困难.

I just found that a bunch of unit tests are failing, due a developer hasn't mocked out the dependency to a redis client within the test. I'm trying to give a hand in this matter but have difficulties myself.

该方法写入Redis客户端:

The method writes to a redis client:

redis_client = get_redis_client()
redis_client.set('temp-facility-data', cPickle.dumps(df))

稍后在断言中检索结果:

Later in the assert the result is retrieved:

res = cPickle.loads(get_redis_client().get('temp-facility-data'))
expected = pd.Series([set([1, 2, 3, 4, 5])], index=[1])
assert_series_equal(res.variation_pks, expected)

我设法成功修补了redis客户端的get()和set().

I managed to patch the redis client's get() and set() successfully.

@mock.patch('redis.StrictRedis.get')
@mock.patch('redis.StrictRedis.set')
def test_identical(self, mock_redis_set, mock_redis_get):
    mock_redis_get.return_value = ???
    f2 = deepcopy(self.f)
    f3 = deepcopy(self.f)
    f2.pk = 2
    f3.pk = 3
    self.one_row(f2, f3)

但是我不知道如何将get()return_value设置为代码中set()的设置,以便测试通过.

but I don't know how to set the return_value of get() to what the set() would set in the code, so that the test would pass.

现在此行未通过测试:

res = cPickle.loads(get_redis_client().get('temp-facility-data'))
TypeError: must be string, not MagicMock

有什么建议吗?

推荐答案

认为您可以使用副作用来设置和获取本地字典中的值

Think you can use side effect to set and get value in a local dict

data = {}
def set(key, val):
    data[key] = val

def get(key):
    return data[key]

mock_redis_set.side_effect = set
mock_redis_get.side_effect = get

未经测试,但我认为它应该做您想要的

not tested this but I think it should do what you want

这篇关于如何在Python中模拟Redis客户端?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆