Пример #1
0
def test_axes_map():
    """
    map from Axes([aaa, bbb]) to Axes([zzz, bbb]) via AxesMap {aaa: zzz}
    """
    a = ng.make_axis(1, name='aaa')
    b = ng.make_axis(2, name='bbb')
    z = ng.make_axis(1, name='zzz')

    axes_before = ng.make_axes([a, b])
    axes_after = ng.make_axes([z, b])

    axes_map = AxesMap({a.name: z.name})

    assert axes_after == axes_map.map_axes(axes_before)
Пример #2
0
def test_duplicate_axis_names():
    with pytest.raises(DuplicateAxisNames) as e:
        AxesMap({'aaa': 'zzz', 'bbb': 'zzz', 'ccc': 'yyy'})

    assert e.value.duplicate_axis_names == {
        'zzz': set(['aaa', 'bbb']),
    }
Пример #3
0
def test_invalid_axes_map_message():
    with pytest.raises(ValueError) as exc_info:
        AxesMap({'aaa': 'zzz', 'bbb': 'zzz', 'ccc': 'yyy'})

    e = exc_info.value

    # check that offending names are listed in the error message
    assert 'aaa' in str(e)
    assert 'bbb' in str(e)
    assert 'zzz' in str(e)

    # check that non-offending names are not listed in the error message
    assert 'ccc' not in str(e)
    assert 'yyy' not in str(e)
Пример #4
0
def test_axes_map_init_from_axes():
    axes_map = AxesMap(
        {ng.make_axis(1, name='aaa'): ng.make_axis(1, name='zzz')})

    assert axes_map['aaa'] == 'zzz'
Пример #5
0
def test_axes_map_immutable():
    axes_map = AxesMap({})

    with pytest.raises(TypeError):
        axes_map['x'] = 'y'
Пример #6
0
def pb_to_axes_map(msg):
    axes_map = AxesMap(pb_to_dict(msg.mapping.map_val.map))
    return axes_map