Python单元测试模拟函数调用原始函数并失败。

huangapple go评论112阅读模式
英文:

Python Unit Testing a mocked function calls the original function and fails

问题

notification.py:

  1. def get_notification(some_data):
  2. data = details["type"]
  3. notification = {"config1": data, "config2": some_data}
  4. return notification

test_notification.py:

  1. from notification import get_notification
  2. import pytest
  3. def test_get_notifications(mocker):
  4. mocker.patch('notification.get_notification', return_value="SUCCESS")
  5. result = get_notification(some_data)
  6. assert result == "SUCCESS"

Instead of returning "SUCCESS" by the mocked function, the original function is getting called.

I tried using @patch.object which also resulted in calling of the original function.

  1. @patch.object(notification, 'get_notification')
  2. def test_get_notifications(get_notification_mock):
  3. get_notification_mock.return_value = "SUCCESS"
  4. result = get_notification(some_data)
  5. assert result == "SUCCESS"
英文:

I have the following scripts:

notification.py:

  1. def get_notification(some_data):
  2. data = details["type"]
  3. notification = {"config1":data, "config2":some_data}
  4. return notification

test_notification.py:

  1. from notification import get_notification
  2. import pytest
  3. def test_get_notifications(mocker):
  4. mocker.patch('notification.get_notification',return_value="SUCCESS")
  5. result = get_notification(some_data)
  6. assert result == "SUCCESS"

Instead of returning "SUCCESS" by the mocked function, the original function is getting called.

I tried using @patch.object which also resulted in calling of the original function.

  1. @patch.object(notification, 'get_notification')
  2. def test_get_notifications(get_notification_mock):
  3. get_notification_mock.return_value="SUCCESS"
  4. result = get_notification(some_data)
  5. assert result == "SUCCESS"

答案1

得分: 2

这是因为一旦你导入了get_notification,它不再"属于" notification 模块,而是属于 test_notification 模块。
你需要修改你的补丁来指向 test_notification

  1. mocker.patch("test_notification.get_notification", return_value="SUCCESS")
  2. # 或者
  3. mocker.patch(__name__ + ".get_notification", return_value="SUCCESS")
英文:

This is because once you have imported get_notification, it does not "belong" to the notification module but to the test_notification module.
You have to modify your patch to point to the test_notification:

  1. mocker.patch("test_notification.get_notification", return_value="SUCCESS")
  2. # or
  3. mocker.patch(__name__ + ".get_notification", return_value="SUCCESS")

答案2

得分: 0

以下是示例(debug.py)的翻译:

  1. from unittest.mock import patch
  2. def get_notification():
  3. return 'failed'
  4. def test_get_notifications():
  5. with patch(
  6. # change 'debug' to your module name('notification')...
  7. 'debug.get_notification',
  8. return_value='SUCCESS'
  9. ):
  10. assert get_notification() == "SUCCESS"

运行 pytest debug.py

  1. ===================================================================== 测试会话开始 ======================================================================
  2. 平台:Linux -- Python 3.10.6pytest-7.4.0pluggy-1.2.0
  3. 根目录:项目路径...
  4. 收集到 1 个项目
  5. debug.py . [100%]
  6. ====================================================================== 1 个测试通过,用时 0.01 ======================================================================
英文:

Here is an example(debug.py):

  1. from unittest.mock import patch
  2. def get_notification():
  3. return 'failed'
  4. def test_get_notifications():
  5. with patch(
  6. # change 'debug' to your module name('notification')...
  7. 'debug.get_notification',
  8. return_value='SUCCESS'
  9. ):
  10. assert get_notification() == "SUCCESS"

Run pytest debug.py:

  1. ===================================================================== test session starts ======================================================================
  2. platform linux -- Python 3.10.6, pytest-7.4.0, pluggy-1.2.0
  3. rootdir: PATH TO PROJECT...
  4. collected 1 item
  5. debug.py . [100%]
  6. ====================================================================== 1 passed in 0.01s =======================================================================

huangapple
  • 本文由 发表于 2023年7月24日 16:16:03
  • 转载请务必保留本文链接:https://go.coder-hub.com/76752567.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定