我想测试一个huey任务,并且需要修补requests.get
.
# huey_tasks.py
from huey import RedisHuey
huey = RedisHuey()
@huey.task()
def function():
import requests
print(requests.get('http://www.google.com'))
运行测试的文件:
import huey_tasks
@patch('requests.get')
def call_patched(fake_get):
fake_get.return_value = '1'
huey_tasks.function()
启动 huey_consumer:huey_tasks.huey -w 10 -l logs/huey.log
运行测试,但是补丁没有任何效果。
[2016-01-24 17:01:12,053] INFO:requests.packages.urllib3.connectionpool:Worker-1:Starting new HTTP connection (1): www.google.com
[2016-01-24 17:01:12,562] INFO:requests.packages.urllib3.connectionpool:Worker-1:Starting new HTTP connection (1): www.google.com.sg
<Response[200]>
如果我移除@huey.task()
装饰器,则修补工作1
并被打印。
那么我应该如何测试huey任务呢?毕竟,我不能每次都删除装饰器,必须是更好的方法。