Esempio n. 1
0
def test_run_convolutions_json():
    hdr = Hydraseq('_')

    hdr.insert("a b c _ALPHA")
    hdr.insert("1 2 3 _DIGIT")

    assert hdr.convolutions("a b c 1 2 3".split()) == [{
        'convo': '_ALPHA',
        'end': 3,
        'start': 0,
        'words': ['a', 'b', 'c']
    }, {
        'convo': '_DIGIT',
        'end': 6,
        'start': 3,
        'words': ['1', '2', '3']
    }]
    assert hdr.convolutions("a b 1 2 3 a b".split()) == [{
        'convo':
        '_DIGIT',
        'end':
        5,
        'start':
        2,
        'words': ['1', '2', '3']
    }]
Esempio n. 2
0
def test_run_convolutions_overlap():
    hdr = Hydraseq('_')

    hdr.insert("b a d _1")
    hdr.insert("a n d _2")
    hdr.insert("a d a _3")
    hdr.insert("a n d y _4")
    hdr.insert("a d a n _5")

    tester = "b a d a n d y".split()

    assert hdr.convolutions(tester) == [{
        'convo': '_1',
        'end': 3,
        'start': 0,
        'words': ['b', 'a', 'd']
    }, {
        'convo': '_3',
        'end': 4,
        'start': 1,
        'words': ['a', 'd', 'a']
    }, {
        'convo': '_5',
        'end': 5,
        'start': 1,
        'words': ['a', 'd', 'a', 'n']
    }, {
        'convo': '_2',
        'end': 6,
        'start': 3,
        'words': ['a', 'n', 'd']
    }, {
        'convo': '_4',
        'end': 7,
        'start': 3,
        'words': ['a', 'n', 'd', 'y']
    }]