Ejemplo n.º 1
0
def test_get_key_in_dict():
    """Test that we can fetch key in dict."""
    input_data = {'key': 'val1'}
    config = {
        'name': 'attrib',
        'mappings': [
            {'path': ['key']},
        ],
    }

    assert handle_attribute(
        input_data,
        config,
    ).unwrap() == 'val1'
Ejemplo n.º 2
0
def test_casting_to_decimal():
    """Test that we can cast a string value to decimal."""
    input_data = {'key': '1,123,123.12'}
    config = {
        'name': 'attrib',
        'mappings': [
            {'path': ['key']},
        ],
        'casting': {'to': 'decimal'},
    }

    assert handle_attribute(
        input_data,
        config,
    ).unwrap() == decimal.Decimal('1123123.12')
Ejemplo n.º 3
0
def test_all():
    """Test a full attribute schema."""
    input_data = {'key': 'val1', 'key2': 'val2'}
    config = {
        'name':
        'attrib',
        'mappings': [
            {
                'path': ['key'],
                'if_statements': [
                    {
                        'condition': 'is',
                        'target': 'val1',
                        'then': None,
                    },
                ],
                'default':
                'default',
            },
            {
                'path': ['key2'],
                'if_statements': [
                    {
                        'condition': 'is',
                        'target': 'val2',
                        'then': 'if',
                    },
                ],
            },
        ],
        'separator':
        '-',
        'if_statements': [
            {
                'condition': 'is',
                'target': 'default-if',
                'then': None,
            },
        ],
        'default':
        'default2',
    }

    assert handle_attribute(
        input_data,
        config,
    ).unwrap() == 'default2'
Ejemplo n.º 4
0
def map_attributes(input_data, configuration) -> Optional[MappedDict]:
    """For all attributes map attribute.

    name of attribute should be set
    {
        'attribute1': 'value',
        'attribute2': 'value2',
    }
    """
    attributes: MappedDict = {}

    for attribute_cfg in configuration:
        attribute_value = handle_attribute(input_data, attribute_cfg)

        if is_successful(attribute_value):
            attributes[attribute_cfg[NAME]] = attribute_value.unwrap()

    return attributes or None
Ejemplo n.º 5
0
def test_regexp_is_not_applied_to_attribute():
    """Test that we don't lose data when search by pattern fails."""
    input_data: dict = {'game': '1. d4 d5'}
    config: dict = {
        'name':
        'moves',
        'mappings': [
            {
                'path': ['game'],
                'regexp': {
                    'search': '(d6)',
                    'group': 0,
                },
            },
        ],
    }
    regexp = handle_attribute(input_data, config)
    assert isinstance(regexp.failure(), ValueError) is True
    assert regexp.failure().args == ('Default value should not be `None`', )
Ejemplo n.º 6
0
def test_regexp_is_applied_to_attribute():
    """Test that we can search by pattern."""
    input_data: dict = {'game': '1. e4 e5 ... 14. Rxe8+ Rxe8'}
    config: dict = {
        'name':
        'moves',
        'mappings': [
            {
                'path': ['game'],
                'regexp': {
                    'search': '(Rxe8)',
                    'group': 1,
                },
            },
        ],
    }
    assert handle_attribute(
        input_data,
        config,
    ).unwrap() == 'Rxe8'