繁体   English   中英

pytest - 模拟配置[<section_name> ] 通过 configparser.ConfigParser() / config.read()

[英]pytest - mock config[<section_name>] via configparser.ConfigParser() / config.read()

目标:我想测试我们的 Web 服务连接包装器,例如 GitLab、SFTP、MySQL。 我被困在以下部分:

config = configparser.ConfigParser()
config.read(r"C:\git\config.ini")

我如何模拟/修补/MagicMock 以便config[<section_name>]返回 test_gitlab.py 中为给定键定义的值。 由于我们在各种 .py 文件中收到了上述结构的各种调用,如果可能的话,我希望不要更改实际的config.read(r"C:\\git\\config.ini")调用。

看似有前途但失败的方法:

  • mock configparser.ConfigParser.read.return_value = config_dict --> 这不会改变变量配置,而是返回(最佳情况)没有保存或中断运行的字典
  • 通过config.add_section('GITLAB_TEST'), config.set('GITLAB_TEST', 'tokken', 'test_token')在 test_pytest.py 中添加 'GITLAB_TEST' 部分 --> config 及其定义的部分在 gitlab.py 中被覆盖为config = configparser.ConfigParser()
    # ./module/io/gitlab.py
    import configparser
    import os
    import sys
    import gitlab
    
    class GitlabApi:
        def __init__(self, client=None):
            if sys.platform == "win32":
                config = configparser.ConfigParser()
                config.read(r"C:\git\config.ini")
                self.token = config["GITLAB_{}".format(client)]["token"]
    
        def return_client(self):
            self.api = gitlab.Gitlab(
                "https://gitlab.company_name.com", 
                private_token=self.token
            )
            self.api.auth()
            return self.api
    
    
    # ./tests/test_gitlab.py
    import pytest
    from unittest.mock import MagicMock
    from unittest.mock import Mock
    from ane.io import gitlab
    
    def test_return_client_win32():
        gitlab.sys = Mock(platform="win32")
        gitlab.gitlab.Gitlab = MagicMock()
    
        test_client, expected_private_token, expected_url = "test", "test_token", "test_url"
        config_dict = {
            "GITLAB_TEST": {"token": "test_token"},
            "GITLAB_SCRIPTS": {"token": "script_token"},
        }
    
    
        # following does not work
        gitlab.configparser.ConfigParser = MagicMock()
        gitlab.configparser.ConfigParser.return_value.read.return_value = config_dict
    
    
        gitlab.GitlabApi(client=test_client)  # mocked object
        gitlab.gitlab.Gitlab.assert_called_once_with(
            expected_url, private_token=expected_private_token
        )

一些没有为我解决问题的 stackoverflows,但可能对其他人有帮助:

蟒蛇 3.7

我对上述问题的解决方案:模拟 config.read() 调用的内置 open()。 返回的fake_config_file基本上是以字节为单位的文件。

def test_return_client_win32():
    gitlab.sys = Mock(platform="win32")
    gitlab.gitlab.Gitlab = MagicMock()

    test_client = 'client'
    expected_private_token = 'expected_private_token'
    expected_url = "https://gitlab.company.name"
    fake_config_file = TextIOWrapper(
        BytesIO(
            b"[GITLAB_TEST]\ntoken: test_token\n"
            b"[GITLAB_SCRIPTS]\ntoken: script_token"
        )
    )

    gitlab.configparser.open = MagicMock(return_value=fake_config_file)
    gitlab.GitlabApi(client=test_client)
    gitlab.gitlab.Gitlab.assert_called_once_with(
        expected_url, private_token=expected_private_token
    )

一般来说,我目前建议的方法是:寻找字符串类型的返回值。 深入研究方法,直到找到返回字符串或类似内容的方法。 这是你嘲笑的。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM