gpt4 book ai didi

python - 模拟 requests.post 和 requests.json 解码器 python

转载 作者:太空狗 更新时间:2023-10-30 01:56:47 27 4
gpt4 key购买 nike

我正在为我的模块创建一个测试套件,它大量使用了请求库。但是,我正在尝试为特定请求模拟几个不同的返回值,但我在这样做时遇到了麻烦。这是我的无效代码片段:

class MyTests(unittest.TestCase):

@patch('mypackage.mymodule.requests.post')
def test_change_nested_dict_function(self, mock_post):
mock_post.return_value.status_code = 200
mock_post.return_value.json = nested_dictionary
modified_dict = mymodule.change_nested_dict()
self.assertEqual(modified_dict['key1']['key2'][0]['key3'], 'replaced_value')

我试图模拟的功能:

import requests

def change_nested_dict():
uri = 'http://this_is_the_endpoint/I/am/hitting'
payload = {'param1': 'foo', 'param2': 'bar'}
r = requests.post(uri, params=payload)

# This function checks to make sure the response is giving the
# correct status code, hence why I need to mock the status code above
raise_error_if_bad_status_code(r)

dict_to_be_changed = r.json()

def _internal_fxn_to_change_nested_value(dict):
''' This goes through the dict and finds the correct key to change the value.
This is the actual function I am trying to test above'''
return changed_dict


modified_dict = _internal_fxn_to_change_nested_value(dict_to_be_changed)

return modified_dict

我知道一个简单的方法是不使用嵌套函数,但我只向您展示了整个函数代码的一部分。相信我,嵌套函数是必要的,我真的不想更改它的那部分。

我的问题是,我不明白如何模拟 requests.post 然后为状态代码和内部 json 解码器设置返回值。我似乎也找不到解决此问题的方法,因为我似乎也无法修补内部功能,这也可以解决此问题。有人有什么建议/想法吗?非常感谢。

最佳答案

我碰到这里虽然我同意可能使用特殊用途的库是一个更好的解决方案,但我最终做了以下事情

from mock import patch, Mock

@patch('requests.post')
def test_something_awesome(mocked_post):
mocked_post.return_value = Mock(status_code=201, json=lambda : {"data": {"id": "test"}})

这对我在进行单元测试时在接收端获取 status_codejson() 都很有用。

写在这里是想着有人会觉得有用。

关于python - 模拟 requests.post 和 requests.json 解码器 python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48432029/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com