2015-08-04 13:55:28 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
import pytest
|
|
|
|
|
2015-08-04 23:05:54 +00:00
|
|
|
from spacy.strings import StringStore
|
2015-08-04 13:55:28 +00:00
|
|
|
from spacy.matcher import *
|
2015-08-04 23:05:54 +00:00
|
|
|
from spacy.attrs import ORTH
|
|
|
|
from spacy.tokens.doc import Doc
|
|
|
|
from spacy.vocab import Vocab
|
2015-08-04 13:55:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
2015-08-04 23:05:54 +00:00
|
|
|
def matcher(EN):
|
2015-08-04 13:55:28 +00:00
|
|
|
specs = []
|
|
|
|
for string in ['JavaScript', 'Google Now', 'Java']:
|
2015-08-04 23:05:54 +00:00
|
|
|
spec = []
|
|
|
|
for orth_ in string.split():
|
|
|
|
spec.append([(ORTH, EN.vocab.strings[orth_])])
|
|
|
|
specs.append((spec, EN.vocab.strings['product']))
|
2015-08-04 13:55:28 +00:00
|
|
|
return Matcher(specs)
|
|
|
|
|
|
|
|
|
|
|
|
def test_compile(matcher):
|
2015-08-04 23:05:54 +00:00
|
|
|
assert matcher.n_patterns == 3
|
2015-08-04 13:55:28 +00:00
|
|
|
|
2015-08-04 23:05:54 +00:00
|
|
|
def test_no_match(matcher, EN):
|
|
|
|
tokens = EN('I like cheese')
|
2015-08-04 13:55:28 +00:00
|
|
|
assert matcher(tokens) == []
|
|
|
|
|
|
|
|
|
2015-08-04 23:05:54 +00:00
|
|
|
def test_match_start(matcher, EN):
|
|
|
|
tokens = EN('JavaScript is good')
|
|
|
|
assert matcher(tokens) == [(EN.vocab.strings['product'], 0, 1)]
|
|
|
|
|
2015-08-04 13:55:28 +00:00
|
|
|
|
2015-08-04 23:05:54 +00:00
|
|
|
def test_match_end(matcher, EN):
|
|
|
|
tokens = EN('I like Java')
|
|
|
|
assert matcher(tokens) == [(EN.vocab.strings['product'], 2, 3)]
|
2015-08-04 13:55:28 +00:00
|
|
|
|
|
|
|
|
2015-08-04 23:05:54 +00:00
|
|
|
def test_match_middle(matcher, EN):
|
|
|
|
tokens = EN('I like Google Now best')
|
|
|
|
assert matcher(tokens) == [(EN.vocab.strings['product'], 2, 4)]
|
2015-08-04 13:55:28 +00:00
|
|
|
|
|
|
|
|
2015-08-04 23:05:54 +00:00
|
|
|
def test_match_multi(matcher, EN):
|
|
|
|
tokens = EN('I like Google Now and Java best')
|
|
|
|
assert matcher(tokens) == [(EN.vocab.strings['product'], 2, 4),
|
|
|
|
(EN.vocab.strings['product'], 5, 6)]
|
2015-08-04 13:55:28 +00:00
|
|
|
|
2015-08-05 22:35:40 +00:00
|
|
|
def test_match_preserved(matcher, EN):
|
|
|
|
doc = EN.tokenizer('I like Java')
|
|
|
|
EN.tagger(doc)
|
|
|
|
EN.entity(doc)
|
|
|
|
assert len(doc.ents) == 0
|
|
|
|
doc = EN.tokenizer('I like Java')
|
|
|
|
matcher(doc)
|
|
|
|
assert len(doc.ents) == 1
|
|
|
|
EN.tagger(doc)
|
|
|
|
EN.entity(doc)
|
|
|
|
assert len(doc.ents) == 1
|