tests: added tests (#250)

This commit is contained in:
cachho
2023-07-16 02:28:51 +02:00
committed by GitHub
parent d12aeec1ff
commit 3f71050c47
9 changed files with 388 additions and 29 deletions

View File

@@ -0,0 +1,72 @@
# ruff: noqa: E501
import unittest
from unittest.mock import patch
from embedchain import App
from embedchain.config import InitConfig
from embedchain.vectordb.chroma_db import ChromaDB, chromadb
class TestChromaDbHosts(unittest.TestCase):
def test_init_with_host_and_port(self):
"""
Test if the `ChromaDB` instance is initialized with the correct host and port values.
"""
host = "test-host"
port = "1234"
with patch.object(chromadb, "Client") as mock_client:
_db = ChromaDB(host=host, port=port)
expected_settings = chromadb.config.Settings(
chroma_api_impl="rest",
chroma_server_host=host,
chroma_server_http_port=port,
)
mock_client.assert_called_once_with(expected_settings)
class TestChromaDbHostsInit(unittest.TestCase):
@patch("embedchain.vectordb.chroma_db.chromadb.Client")
def test_init_with_host_and_port(self, mock_client):
"""
Test if the `App` instance is initialized with the correct host and port values.
"""
host = "test-host"
port = "1234"
config = InitConfig(host=host, port=port)
_app = App(config)
self.assertEqual(mock_client.call_args[0][0].chroma_server_host, host)
self.assertEqual(mock_client.call_args[0][0].chroma_server_http_port, port)
class TestChromaDbHostsNone(unittest.TestCase):
@patch("embedchain.vectordb.chroma_db.chromadb.Client")
def test_init_with_host_and_port(self, mock_client):
"""
Test if the `App` instance is initialized without default hosts and ports.
"""
_app = App()
self.assertEqual(mock_client.call_args[0][0].chroma_server_host, None)
self.assertEqual(mock_client.call_args[0][0].chroma_server_http_port, None)
class TestChromaDbHostsLoglevel(unittest.TestCase):
@patch("embedchain.vectordb.chroma_db.chromadb.Client")
def test_init_with_host_and_port(self, mock_client):
"""
Test if the `App` instance is initialized without a config that does not contain default hosts and ports.
"""
config = InitConfig(log_level="DEBUG")
_app = App(config)
self.assertEqual(mock_client.call_args[0][0].chroma_server_host, None)
self.assertEqual(mock_client.call_args[0][0].chroma_server_http_port, None)