bot / tests /api /question_answering /test_response.py
MWilinski's picture
deploy 1
ae4e1e8
raw
history blame contribute delete
684 Bytes
import pytest
from api.question_answering.response import Response
def test_set_answer():
r = Response()
r.set_answer('Hello, World!')
assert r.get_answer() == 'Hello, World!'
def test_set_sources():
r = Response()
r.set_sources(['source1', 'source1', 'source2'])
assert len(r.get_sources()) == 2
def test_get_sources_as_text():
r = Response()
r.set_sources(['source1', 'source2'])
assert isinstance(r.get_sources_as_text(), str)
def test_get_response_include_sources():
r = Response()
r.set_answer('Hello, World!')
r.set_sources(['source1', 'source2'])
assert len(r.get_answer(include_sources=True)) > len('Hello, World!')