nikhil_staging / src /signals /substring_search_test.py
nsthorat's picture
Push
e4f9cbe
raw
history blame
No virus
754 Bytes
"""Test the Substring Search signal."""
import pytest
from pydantic import ValidationError
from ..schema import field
from .splitters.text_splitter_test_utils import text_to_expected_spans
from .substring_search import SubstringSignal
def test_substring_fields() -> None:
signal = SubstringSignal(query='test')
assert signal.fields() == field(fields=['string_span'])
def test_query_is_required() -> None:
with pytest.raises(ValidationError):
SubstringSignal()
def test_compute() -> None:
signal = SubstringSignal(query='test')
text = 'The word TEST shows up 3 times, teST and test'
spans = list(signal.compute([text]))
expected_spans = text_to_expected_spans(text, ['TEST', 'teST', 'test'])
assert [expected_spans] == spans