gpt4 book ai didi

Python – 如何模拟单个函数

转载 作者:太空宇宙 更新时间:2023-11-03 18:22:48 24 4
gpt4 key购买 nike

从模拟文档中,我无法理解如何成功实现以下类型的模式。 fetch_url 不存在于类内部。

我在auth.py文件中的函数:

def fetch_url(url, method=urlfetch.GET, data=''):
"""Send a HTTP request"""

result = urlfetch.fetch(url=url, method=method, payload=data,
headers={'Access-Control-Allow-Origin': '*'})

return result.content

我的测试:

import unittest
from mock import Mock

class TestUrlFetch(unittest.TestCase):

def test_fetch_url(self):
from console.auth import fetch_url

# Create a mock object based on the fetch_url function
mock = Mock(spec=fetch_url)

# Mock the fetch_url function
content = mock.fetch_url('https://google.com')

# Test that content is not empty
self.assertIsNotNone(content)

如果我所做的完全是错误的方向,请阐明正确的解决方案。

测试不起作用,并产生以下错误:

======================================================================
ERROR: test_fetch_url (console.tests.test_auth.TestUrlFetch)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/Users/bengrunfeld/Desktop/Work/code/wf-ghconsole/console/tests/test_auth.py", line 34, in test_fetch_url
content = mock.fetch_url('https://google.com')
File "/Users/bengrunfeld/.virtualenvs/env2/lib/python2.7/site-packages/mock.py", line 658, in __getattr__
raise AttributeError("Mock object has no attribute %r" % name)
AttributeError: Mock object has no attribute 'fetch_url'
-------------------- >> begin captured logging << --------------------
root: DEBUG: Using threading.local
--------------------- >> end captured logging << ---------------------

----------------------------------------------------------------------
Ran 1 test in 0.277s

FAILED (errors=1)

最佳答案

首先,正如 univerio 的评论建议你应该这样称呼你的模拟:

mock('https://google.com')

您的测试应该在修复后通过,但该模拟可能没有达到您真正想要的效果。我在 specautospec 方面遇到了一些问题。

  1. 使用 Mock(spec=) 创建的模拟不会检查调用它们的参数数量。我刚刚浏览了文档,他们没有说明这一点,但出于某种原因,我希望它能起作用。 Autospecced模拟会检查参数。

  2. 默认情况下,specautospec function 在调用它们时都会返回模拟对象。当您模拟一个不返回任何内容的函数时,这可能不是您想要的。在这种情况下,您可以手动设置 return_value:

    def foo():
    pass

    mock_foo = Mock(spec=foo, return_value=None)
    mock_foo()

关于Python – 如何模拟单个函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23794577/

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