2017-01-10 21:24:10 +03:00
|
|
|
# coding: utf-8
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2017-01-13 00:00:37 +03:00
|
|
|
from ...matcher import Matcher
|
|
|
|
from ...attrs import IS_PUNCT, ORTH
|
2016-10-28 17:38:32 +03:00
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
2017-01-10 21:24:10 +03:00
|
|
|
|
2016-10-28 17:38:32 +03:00
|
|
|
@pytest.mark.models
|
2017-01-13 00:00:37 +03:00
|
|
|
def test_issue587(EN):
|
|
|
|
"""Test that Matcher doesn't segfault on particular input"""
|
|
|
|
matcher = Matcher(EN.vocab)
|
2017-01-10 21:24:10 +03:00
|
|
|
content = '''a b; c'''
|
2016-10-28 18:41:16 +03:00
|
|
|
matcher.add(entity_key='1', label='TEST', attrs={}, specs=[[{ORTH: 'a'}, {ORTH: 'b'}]])
|
2017-01-13 00:00:37 +03:00
|
|
|
matcher(EN(content))
|
2016-10-28 18:41:16 +03:00
|
|
|
matcher.add(entity_key='2', label='TEST', attrs={}, specs=[[{ORTH: 'a'}, {ORTH: 'b'}, {IS_PUNCT: True}, {ORTH: 'c'}]])
|
2017-01-13 00:00:37 +03:00
|
|
|
matcher(EN(content))
|
2016-10-28 18:41:16 +03:00
|
|
|
matcher.add(entity_key='3', label='TEST', attrs={}, specs=[[{ORTH: 'a'}, {ORTH: 'b'}, {IS_PUNCT: True}, {ORTH: 'd'}]])
|
2017-01-13 00:00:37 +03:00
|
|
|
matcher(EN(content))
|