所以,我刚刚开始在 Django 项目中使用 mock。我正在尝试模拟视图的一部分,该视图向远程 API 发出请求以确认订阅请求是真实的(根据我正在努力的规范的一种验证形式)。
我所拥有的类似于:
class SubscriptionView(View):
def post(self, request, **kwargs):
remote_url = request.POST.get('remote_url')
if remote_url:
response = requests.get(remote_url, params={'verify': 'hello'})
if response.status_code != 200:
return HttpResponse('Verification of request failed')
我现在想做的是使用 mock 来模拟requests.get
调用以更改响应,但我无法弄清楚如何为补丁装饰器执行此操作。我以为你会做类似的事情:
@patch(requests.get)
def test_response_verify(self):
# make a call to the view using self.app.post (WebTest),
# requests.get makes a suitable fake response from the mock object
我如何实现这一目标?