aboutsummaryrefslogtreecommitdiff
path: root/tests/unit
diff options
context:
space:
mode:
authorAlexander_Kabui2025-07-14 17:02:27 +0300
committerBonfaceKilz2025-07-16 22:50:45 +0300
commit6ba8f42a17d9e56c7bc8dbe50b25ea13797fa809 (patch)
tree5e80a17b58366d163f2d75fd176b64df34d425c2 /tests/unit
parent8765e29bcbe8d790e478cdcebcee31cafdeec33f (diff)
downloadgenenetwork3-6ba8f42a17d9e56c7bc8dbe50b25ea13797fa809.tar.gz
feat: Add unittest for cleaning up gnqna queries.
Diffstat (limited to 'tests/unit')
-rw-r--r--tests/unit/test_llm.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/unit/test_llm.py b/tests/unit/test_llm.py
index 8fbaba6..3b91918 100644
--- a/tests/unit/test_llm.py
+++ b/tests/unit/test_llm.py
@@ -4,6 +4,7 @@ import pytest
from gn3.llms.process import fetch_pubmed
from gn3.llms.process import parse_context
from gn3.llms.process import format_bibliography_info
+from gn3.api.llm import clean_query
@pytest.mark.unit_test
@@ -104,3 +105,11 @@ def test_fetching_pubmed_info(monkeypatch):
assert (fetch_pubmed(data, "/pubmed.json", "data/")
== expected_results)
+
+
+@pytest.mark.unit_test
+def test_clean_query():
+ """Test function for cleaning up query"""
+ assert clean_query("!what is genetics.") == "what is genetics"
+ assert clean_query("hello test?") == "hello test"
+ assert clean_query(" hello test with space?") == "hello test with space"