Files
wehub-resource-sync 1443d3fdf9
Ruff Format Check / Ruff Format & Lint (push) Failing after 7m39s
Deploy VitePress site to Pages / build (push) Failing after 9m11s
Deploy VitePress site to Pages / Deploy (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:32:26 +08:00

124 lines
4.3 KiB
Python

from __future__ import annotations
import uuid
import pytest
pytestmark = [pytest.mark.asyncio, pytest.mark.integration]
async def _create_dify_database(test_client, admin_headers) -> str:
response = await test_client.post(
"/api/knowledge/databases",
json={
"database_name": f"pytest_graph_dify_{uuid.uuid4().hex[:8]}",
"description": "Graph router Dify negative test",
"kb_type": "dify",
"additional_params": {
"dify_api_url": "https://api.dify.ai/v1",
"dify_token": "test-token",
"dify_dataset_id": f"dataset-{uuid.uuid4().hex[:8]}",
},
},
headers=admin_headers,
)
assert response.status_code == 200, response.text
return response.json()["kb_id"]
async def _delete_database(test_client, admin_headers, kb_id: str) -> None:
await test_client.delete(f"/api/knowledge/databases/{kb_id}", headers=admin_headers)
async def test_graph_routes_require_auth(test_client):
response = await test_client.get("/api/graph/list")
assert response.status_code == 401
async def test_standard_user_cannot_access_graph_endpoints(test_client, standard_user):
response = await test_client.get("/api/graph/list", headers=standard_user["headers"])
assert response.status_code == 403
async def test_get_graphs_list_only_returns_milvus(test_client, admin_headers, knowledge_database):
response = await test_client.get("/api/graph/list", headers=admin_headers)
assert response.status_code == 200
payload = response.json()
assert payload["success"] is True
assert isinstance(payload["data"], list)
assert payload["data"]
assert all(graph["type"] == "milvus" for graph in payload["data"])
assert any(graph["id"] == knowledge_database["kb_id"] for graph in payload["data"])
@pytest.mark.parametrize("path", ["/api/graph/subgraph", "/api/graph/stats", "/api/graph/labels"])
async def test_graph_endpoints_reject_non_milvus_types(test_client, admin_headers, path):
kb_id = await _create_dify_database(test_client, admin_headers)
try:
response = await test_client.get(path, params={"kb_id": kb_id}, headers=admin_headers)
finally:
await _delete_database(test_client, admin_headers, kb_id)
assert response.status_code == 404
assert "only supports Milvus" in response.text
async def test_milvus_subgraph_endpoint(test_client, admin_headers, knowledge_database):
response = await test_client.get(
"/api/graph/subgraph",
params={"kb_id": knowledge_database["kb_id"], "node_label": "*", "max_nodes": 10},
headers=admin_headers,
)
assert response.status_code == 200, response.text
payload = response.json()
assert payload["success"] is True
assert "nodes" in payload["data"]
assert "edges" in payload["data"]
async def test_milvus_stats_endpoint(test_client, admin_headers, knowledge_database):
response = await test_client.get(
"/api/graph/stats",
params={"kb_id": knowledge_database["kb_id"]},
headers=admin_headers,
)
assert response.status_code == 200, response.text
payload = response.json()
assert payload["success"] is True
assert "total_nodes" in payload["data"]
assert "total_edges" in payload["data"]
assert "entity_types" in payload["data"]
async def test_milvus_labels_endpoint(test_client, admin_headers, knowledge_database):
response = await test_client.get(
"/api/graph/labels",
params={"kb_id": knowledge_database["kb_id"]},
headers=admin_headers,
)
assert response.status_code == 200, response.text
payload = response.json()
assert payload["success"] is True
assert "labels" in payload["data"]
assert isinstance(payload["data"]["labels"], list)
@pytest.mark.parametrize(
"path",
[
"/api/graph/neo4j/nodes",
"/api/graph/neo4j/node",
"/api/graph/neo4j/info",
"/api/graph/neo4j/index-entities",
"/api/graph/neo4j/add-entities",
],
)
async def test_neo4j_upload_routes_are_removed(test_client, admin_headers, path):
method = test_client.post if path.endswith(("index-entities", "add-entities")) else test_client.get
response = await method(path, headers=admin_headers)
assert response.status_code == 404