This commit is contained in:
2025-12-01 17:21:38 +08:00
parent 32fee2b8ab
commit fab8c13cb3
7511 changed files with 996300 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
import time
import psycopg2
from core.rag.datasource.vdb.opengauss.opengauss import OpenGauss, OpenGaussConfig
from tests.integration_tests.vdb.test_vector_store import (
AbstractVectorTest,
setup_mock_redis,
)
class OpenGaussTest(AbstractVectorTest):
def __init__(self):
super().__init__()
max_retries = 5
retry_delay = 20
retry_count = 0
while retry_count < max_retries:
try:
config = OpenGaussConfig(
host="localhost",
port=6600,
user="postgres",
password="Dify@123",
database="dify",
min_connection=1,
max_connection=5,
)
break
except psycopg2.OperationalError as e:
retry_count += 1
if retry_count < max_retries:
time.sleep(retry_delay)
self.vector = OpenGauss(
collection_name=self.collection_name,
config=config,
)
def test_opengauss(setup_mock_redis):
OpenGaussTest().run_all_tests()