3

使用 python 模块 Beaker 或 Dogpile 进行缓存,是否可以测试具有特定键值的区域是否已经存在于缓存中?

4

1 回答 1

-1

假设您有一个用烧杯缓存的方法:

@cache_region('foo_term')
def cached_method(bar):
   return actual_method(bar)

然后在您的测试中,您可以修补 method_to_test 并断言它被调用/未调用:

def test_cache():
    with patch('package.module.actual_method') as m:
        cached_method(foo)
        assert m.call_args_list = [call(foo)] # Asserting it is not cached the first time

        cached_method(foo)
        assert m.call_args_list = [call(foo)] # Now asserting it is cached

        cached_method(bar)
        assert m.call_args_list = [call(foo), call(bar)] # asserting `bar' is not cached

请注意,您必须用函数的“缓存”版本包装要缓存的方法,并将烧杯缓存装饰器放在缓存版本上。当然,除非你找到一种方法来使用这种黑魔法patch制作作品。

于 2015-01-14T13:33:12.443 回答