aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAlexander_Kabui2024-05-27 14:33:44 +0300
committerAlexander_Kabui2024-05-27 14:33:44 +0300
commit8aeb4e00af2651cf7ec55f2ace23c600f537ff77 (patch)
treec348fb25daf65076fe4daaa33883a9f812399fc6 /tests
parentd0801cea229d00d5d4ce19fa1cb36242e56070d1 (diff)
downloadgenenetwork3-8aeb4e00af2651cf7ec55f2ace23c600f537ff77.tar.gz
Delete llm obsolete unittests
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/test_llm.py65
1 files changed, 0 insertions, 65 deletions
diff --git a/tests/unit/test_llm.py b/tests/unit/test_llm.py
index 7b8a970..6e0f2af 100644
--- a/tests/unit/test_llm.py
+++ b/tests/unit/test_llm.py
@@ -35,68 +35,3 @@ def test_parse_context():
]
assert parsed_result == expected_result
-
-
-@dataclass(frozen=True)
-class MockResponse:
- """mock a response object"""
- text: str
-
- def __getattr__(self, name: str):
- return self.__dict__[f"_{name}"]
-
-
-class MockGeneNetworkQAClient:
- """mock the GeneNetworkQAClient class"""
-
- def __init__(self, session, api_key):
- pass
-
- def ask(self, query, auth_token):
- """mock method for ask query"""
- # Simulate the ask method
- return MockResponse("Mock response"), "F400995EAFE104EA72A5927CE10C73B7"
-
- def get_answer(self, task_id):
- """mock get_answer method"""
- return MockResponse("Mock answer"), 1
-
-
-def mock_filter_response_text(text):
- """ method to simulate the filterResponseText method"""
- return {"data": {"answer": "Mock answer for what is a gene", "context": {}}}
-
-
-def mock_parse_context(context, get_info_func, format_bib_func):
- """method to simulate the parse context method"""
- return []
-
-
-@pytest.mark.unit_test
-def test_get_gnqa(monkeypatch):
- """test for process.get_gnqa functoin"""
- monkeypatch.setattr(
- "gn3.llms.process.GeneNetworkQAClient",
- MockGeneNetworkQAClient
- )
-
- monkeypatch.setattr(
- 'gn3.llms.process.filter_response_text',
- mock_filter_response_text
- )
- monkeypatch.setattr(
- 'gn3.llms.process.parse_context',
- mock_parse_context
- )
-
- query = "What is a gene"
- auth_token = "test_token"
- result = get_gnqa(query, auth_token)
-
- expected_result = (
- "F400995EAFE104EA72A5927CE10C73B7",
- 'Mock answer for what is a gene',
- []
- )
-
- assert result == expected_result