Exemplo n.º 1
0
def test_simple_load(registry: Registry):
    name = registry.load_class("collections.OrderedDict")
    assert name == "collections.OrderedDict"
    items = registry.get_instance(name)
    items["first"] = "hello"
    items["second"] = "world"
    assert json.dumps(items) == '{"first": "hello", "second": "world"}'
Exemplo n.º 2
0
def test_plugin_name(registry: Registry):
    pytest.importorskip("jsonschema")
    name = registry.load_class("puro.plugins.jsonschema.JSONSchemaSelector")
    assert name == "jsonschema"
    instance = registry.get_instance(name,
                                     "instancename",
                                     schema={"type": "string"})
    assert instance.check("hello") is True
Exemplo n.º 3
0
def test_subclass_check(registry: Registry):
    from configparser import RawConfigParser
    registry.load_class("configparser.SafeConfigParser",
                        name="parser",
                        base_class=RawConfigParser)
    cparser = registry.get_instance("parser")
    assert hasattr(cparser, "read")

    with pytest.raises(TypeError):
        registry.load_class("collections.OrderedDict",
                            base_class=RawConfigParser)
Exemplo n.º 4
0
def fixture_registry(request):
    reg = Registry()
    marker = request.node.get_marker("puro_plugins")
    if marker:
        for mod_path in marker.args:
            try:
                reg.load_class(mod_path, base_class=BasePlugin)
            except ModuleNotFoundError as ex:
                # Can't import, eg. missing dependency library -> SKIP
                pytest.skip(f"Test requires {mod_path!r}: {ex}")
            except (AttributeError, TypeError, ValueError) as ex:
                # Invalid module path -> FAIL
                pytest.fail(f"Invalid plugin path {mod_path!r}: {ex}")
    return reg
Exemplo n.º 5
0
async def test_jmespath_action(registry: Registry):
    action = registry.get_instance("jmespath",
                                   "only_version",
                                   expression="{version: version}")
    task = Task({"version": 1, "value": "something-complex-here"})
    await action(task)
    assert task.value == {"version": 1}
Exemplo n.º 6
0
def test_errors(registry: Registry):
    invalid = [
        "collections.TurboDict",
        "operator.gt",
        "",
        ".",
        "filter",
        13,
        None,
    ]
    errors = (AttributeError, TypeError, ValueError)
    for mpath in invalid:
        with pytest.raises(errors):
            name = registry.load_class(mpath)
            print(f"Should not get here: {mpath} {name}")
Exemplo n.º 7
0
def test_override(registry: Registry):
    compare = {"a": 1}

    name1 = registry.load_class("collections.OrderedDict", name="mapping")
    assert name1 == "mapping"
    cls1 = registry.get_class("mapping")
    assert cls1(a=1) == compare
    assert registry.get_instance("mapping", a=1) == compare

    name2 = registry.load_class("collections.UserDict", name="mapping")
    assert name2 == "mapping"
    cls2 = registry.get_class("mapping")
    assert cls2(a=1) == compare
    assert registry.get_instance("mapping", a=1) == compare
    assert cls1 != cls2
Exemplo n.º 8
0
def test_add_class(registry: Registry):
    registry.add_class("notfound", FileNotFoundError, base_class=OSError)
    with pytest.raises(FileNotFoundError):
        raise registry.get_instance("notfound", "Missing")
Exemplo n.º 9
0
def test_getitem(registry: Registry):
    from collections import OrderedDict
    registry.load_class("collections.OrderedDict", name="container")
    assert registry["container"] == OrderedDict