在pytest中使用命令行选项进行非Python测试

时间:2019-07-01 11:56:02

标签: python pytest

我正在使用https://docs.pytest.org/en/latest/example/nonpython.html中的教程来实现基于外部文件的自定义测试用例。

我需要用一个布尔标志来参数化它们。我希望能够使用命令行选项运行pytest,在我的情况下是--use-real-api,它将关闭使用模拟并与远程网络API进行真正的对话。

我尝试使用cmdopt教程并将其混合在一起,但是找不到从自定义pytest.Item子类中读取参数的任何方法。你能帮忙吗?这是本教程中的一个简单示例。我想让它根据传递的cmdopt的值来更改测试行为。

# content of conftest.py
import pytest


def pytest_collect_file(parent, path):
    if path.ext == ".yml" and path.basename.startswith("test"):
        return YamlFile(path, parent)


class YamlFile(pytest.File):
    def collect(self):
        import yaml
        raw = yaml.safe_load(self.fspath.open())
        for name, spec in sorted(raw.items()):
            yield YamlItem(name, self, spec)


class YamlItem(pytest.Item):
    def __init__(self, name, parent, spec):
        super().__init__(name, parent)
        self.spec = spec

    def runtest(self):
        for name, value in sorted(self.spec.items()):
            # some custom test execution (dumb example follows)
            if name != value:
                raise YamlException(self, name, value)

    def repr_failure(self, excinfo):
        """ called when self.runtest() raises an exception. """
        if isinstance(excinfo.value, YamlException):
            return "\n".join(
                [
                    "usecase execution failed",
                    "   spec failed: %r: %r" % excinfo.value.args[1:3],
                    "   no further details known at this point.",
                ]
            )

    def reportinfo(self):
        return self.fspath, 0, "usecase: %s" % self.name


class YamlException(Exception):
    """ custom exception for error reporting. """


def pytest_addoption(parser):
    parser.addoption(
        "--cmdopt", action="store", default="type1", help="my option: type1 or type2"
    )


@pytest.fixture
def cmdopt(request):
    return request.config.getoption("--cmdopt")

1 个答案:

答案 0 :(得分:1)

pytest中的每个集合实体(FileModuleFunction等)都是Node类的子类型,它定义了对{{ 1}}对象。知道这一点,任务就变得容易了:

config

运行def pytest_addoption(parser): parser.addoption('--run-yml', action='store_true') def pytest_collect_file(parent, path): run_yml = parent.config.getoption('--run-yml') if run_yml and path.ext == ".yml" and path.basename.startswith("test"): return YamlFile(path, parent) 现在将收集YAML文件;没有该标志,它们将被忽略。

与访问自定义类中的配置相同,例如:

pytest --run-yml