Esempio n. 1
0
def handle_data_fetcher(
    collection: Union[Dict[str, Any], List[Any]],
    cfg: DataFetcher,
) -> ResultE[AnyType]:
    """Find a data at path or produce a value.

    return value can be:
    - value found at path
    - value found but sliced
    - value found applied to regular expression
    - conditional value depending on if statements
    - default value if all the above still produces `None`

    Flow description:

    find data from path or None ->
    apply regular expression ->
    apply slicing ->
    apply if statements ->
    return default value if Failure else mapped value
    """
    return flow(
        collection,
        partial(fetch_data_by_keys, path=cfg.path),
        fix(lambda _: None),  # type: ignore
        bind(partial(
            apply_regex,
            regex=cfg.regex,
        ), ),
        fix(lambda _: None),  # type: ignore
        map_(partial(
            apply_slicing,
            slicing=cfg.slicing,
        )),
        bind(partial(
            apply_if_statements,
            statements=cfg.if_statements,
        )),
        rescue(  # type: ignore
            lambda _: apply_default(cfg.default), ),
    )
Esempio n. 2
0
def handle_attribute(
    collection: Union[Dict[str, Any], List[Any]],
    cfg: Attribute,
) -> ResultE[AnyType]:
    """Handle one attribute with data fetchers, ifs, casting and default value.

    flow description:

    Fetch once for all data in Attribute.data_fetchers ->
    Apply separator to values if there are more than 1
    Failure -> fix to Success(None)
    Apply if statements
    Success -> Cast Value
    Failure -> apply default value

    Return Result
    """
    fetched_values = [
        fetched.unwrap() for fetched in  # noqa: WPS361
        [
            handle_data_fetcher(collection, data_fetcher)
            for data_fetcher in cfg.data_fetchers
        ] if is_successful(fetched)
    ]

    # partially declare if statement and casting functions
    ifs = partial(apply_if_statements, statements=cfg.if_statements)

    cast = safe(lambda the_value: the_value)
    if cfg.casting:
        cast = partial(apply_casting, casting=cfg.casting)

    return flow(
        apply_separator(fetched_values, separator=cfg.separator),
        fix(lambda _: None),  # type: ignore
        bind(ifs),
        bind(cast),
        rescue(lambda _: apply_default(default=cfg.default), ),
    )
Esempio n. 3
0
def test_apply_default():
    """Test if we get a default value."""
    assert apply_default(None, 'default').unwrap() == 'default'
Esempio n. 4
0
def test_bad_mapped_value():
    """Test if we get a Failure when we give bad mapped value."""
    test = apply_default(['array'], None)
    assert not is_successful(test)
    assert 'Unable to give default value' in str(test.failure())
Esempio n. 5
0
def test_no_values():
    """Test returns Failure."""
    test = apply_default(None, None)
    assert not is_successful(test)
Esempio n. 6
0
def test_no_default_value():
    """Test value returned when exists."""
    assert apply_default('val', None).unwrap() == 'val'