2015-02-07 21:14:07 +03:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2015-07-13 19:39:38 +03:00
|
|
|
from spacy.tokens import Doc
|
|
|
|
|
2015-02-07 21:14:07 +03:00
|
|
|
import pytest
|
|
|
|
|
2015-04-19 22:39:18 +03:00
|
|
|
|
2015-07-23 02:19:11 +03:00
|
|
|
def mest_getitem(EN):
|
2015-06-07 19:02:24 +03:00
|
|
|
tokens = EN(u'Give it back! He pleaded.')
|
2015-02-07 21:14:07 +03:00
|
|
|
assert tokens[0].orth_ == 'Give'
|
|
|
|
assert tokens[-1].orth_ == '.'
|
|
|
|
with pytest.raises(IndexError):
|
|
|
|
tokens[len(tokens)]
|
2015-07-13 19:39:38 +03:00
|
|
|
|
|
|
|
|
2015-07-23 02:19:11 +03:00
|
|
|
def mest_serialize(EN):
|
|
|
|
tokens = EN(u'Give it back! He pleaded.')
|
|
|
|
packed = tokens.to_bytes()
|
|
|
|
new_tokens = Doc(EN.vocab).from_bytes(packed)
|
|
|
|
assert tokens.string == new_tokens.string
|
|
|
|
assert [t.orth_ for t in tokens] == [t.orth_ for t in new_tokens]
|
|
|
|
assert [t.orth for t in tokens] == [t.orth for t in new_tokens]
|
|
|
|
|
|
|
|
|
|
|
|
def test_serialize_whitespace(EN):
|
2015-07-13 19:39:38 +03:00
|
|
|
tokens = EN(u' Give it back! He pleaded. ')
|
2015-07-23 02:19:11 +03:00
|
|
|
packed = tokens.to_bytes()
|
|
|
|
new_tokens = Doc(EN.vocab).from_bytes(packed)
|
2015-07-13 19:39:38 +03:00
|
|
|
assert tokens.string == new_tokens.string
|
|
|
|
assert [t.orth_ for t in tokens] == [t.orth_ for t in new_tokens]
|
|
|
|
assert [t.orth for t in tokens] == [t.orth for t in new_tokens]
|