Ejemplo n.º 1
0
def test_sum_args():
    a, b = build.process_schema({
        'types': [
            [
                'Foo',
                t_sum(('A', t_sum(('C', t_int), ('D', t_bool))),
                      ('B', t_tuple(t_int, t_bool)))
            ],
        ],
        'signatures': {
            'method1':
            [t_ref('Foo'),
             t_tuple(optional(t_int), optional(t_bool))]
        }
    })

    def method1(self, inp):
        return inp.match(
            lambda i: i.match(lambda j: (j, None), lambda j: (None, j)),
            lambda i: (i[0], i[1]))

    x = b(_object_with_method(method1))
    assert x.method1((0, (0, 1))) == (1, None)
    assert x.method1((0, (1, True))) == (None, True)
    assert x.method1((1, (2, False))) == (2, False)
Ejemplo n.º 2
0
def test_lists():
    a, b = build.process_schema(
        {'signatures': {
            'method1': [t_array(t_int), t_int]
        }})
    x = b(_object_with_method((lambda self, i: len(i)), name='method1'))
    assert x.method1([1, 2, 3, 4, 5]) == 5
Ejemplo n.º 3
0
def test_unit_output():
    a, b = build.process_schema(
        {'signatures': {
            'method1': [optional(t_unit), t_unit]
        }})
    x = b(_object_with_method((lambda self, i: ()), name='method1'))
    assert x.method1(None) == ()
Ejemplo n.º 4
0
def test_process_schema():
    a, b = build.process_schema(example)
    x = b(_object_with_method((lambda self, i: repr(i)), name='method1'))
    # slightly brittle, but will do for now...
    assert x.method1(({
        'fst': 3,
        'snd': 4
    }, (1, 2, 5))) == "(Record(fst='fst', snd='snd'), (1, 2, 5))"
    assert x.method1(None) == "None"
Ejemplo n.º 5
0
def test_nested_sum():
    a, b = build.process_schema({
        'types': [
            ['Foo', t_sum(('A', t_int), ('B', t_bool))],
        ],
        'signatures': {
            'method1': [
                t_tuple(t_int, t_record(('a', t_bool), ('b', t_ref('Foo')))),
                t_tuple(t_ref('Foo'))
            ]
        }
    })
    x = b(_object_with_method((lambda self, i: i[1][1]), name='method1'))
    assert x.method1((1, (2, (1, False)))) == (1, False)
    assert x.method1((1, (2, (0, 3)))) == (0, 3)
Ejemplo n.º 6
0
def test_sums():
    a, b = build.process_schema(example)
    x = a['Either'].new((1, 3))
    assert isinstance(x, a['Either'])
    assert isinstance(x, a['Either'].Right)
    assert not isinstance(x, a['Either'].Left)
    assert x.valueWithIndex() == (1, 3)
    assert x.getRight() == 3
    with pytest.raises(TypeError):
        x.getLeft()
    assert x.match(lambda a: False, lambda a: True)
    assert not x.match(lambda a: True, lambda a: False)
    assert x.match(lambda i: i, lambda i: i * 3) == 9
    assert x.value == 3

    assert isinstance(a['Either'].Left(3), a['Either'].Left)
    assert not isinstance(a['Either'].Left(3), a['Either'].Right)
Ejemplo n.º 7
0
def test_optional():
    a, b = build.process_schema(example)
    assert a['Optional'](None) is None
    assert a['Optional'](3) == 3
    with pytest.raises(ValueError):
        a['Optional']("string")
Ejemplo n.º 8
0
def test_unit_input():
    a, b = build.process_schema({'signatures': {'method1': [t_unit, t_bool]}})
    x = b(_object_with_method((lambda self, i: i == ()), name='method1'))
    assert x.method1(()) is True