File size: 65,302 Bytes
979853c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 | #!/usr/bin/env python
"""
General-purpose graph storage test program.
This program selects the graph storage type to use based on the LIGHTRAG_GRAPH_STORAGE configuration in .env,
and tests its basic and advanced operations.
Supported graph storage types include:
- NetworkXStorage
- Neo4JStorage
- MongoDBStorage
- PGGraphStorage
- MemgraphStorage
"""
import asyncio
import os
import sys
import importlib
import numpy as np
import pytest
from dotenv import load_dotenv
from ascii_colors import ASCIIColors
# Add the project root directory to the Python path
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
from lightrag.types import KnowledgeGraph
from lightrag.kg import (
STORAGE_IMPLEMENTATIONS,
STORAGE_ENV_REQUIREMENTS,
STORAGES,
verify_storage_implementation,
)
from lightrag.kg.shared_storage import initialize_share_data
from lightrag.constants import GRAPH_FIELD_SEP
# Mock embedding function that returns random vectors
async def mock_embedding_func(texts):
return np.random.rand(len(texts), 10) # Return 10-dimensional random vectors
def check_env_file():
"""
Check if the .env file exists and issue a warning if it does not.
Returns True to continue execution, False to exit.
"""
if not os.path.exists(".env"):
warning_msg = "Warning: .env file not found in the current directory. This may affect storage configuration loading."
ASCIIColors.yellow(warning_msg)
# Check if running in an interactive terminal
if sys.stdin.isatty():
response = input("Do you want to continue? (yes/NO): ")
if response.lower() != "yes":
ASCIIColors.red("Test program cancelled.")
return False
return True
async def initialize_graph_storage():
"""
Initialize the corresponding graph storage instance based on environment variables.
Returns the initialized storage instance.
"""
# Get the graph storage type from environment variables
graph_storage_type = os.getenv("LIGHTRAG_GRAPH_STORAGE", "NetworkXStorage")
# Validate the storage type
try:
verify_storage_implementation("GRAPH_STORAGE", graph_storage_type)
except ValueError as e:
ASCIIColors.red(f"Error: {str(e)}")
ASCIIColors.yellow(
f"Supported graph storage types: {', '.join(STORAGE_IMPLEMENTATIONS['GRAPH_STORAGE']['implementations'])}"
)
return None
# Check for required environment variables
required_env_vars = STORAGE_ENV_REQUIREMENTS.get(graph_storage_type, [])
missing_env_vars = [var for var in required_env_vars if not os.getenv(var)]
if missing_env_vars:
ASCIIColors.red(
f"Error: {graph_storage_type} requires the following environment variables, but they are not set: {', '.join(missing_env_vars)}"
)
return None
# Dynamically import the corresponding module
module_path = STORAGES.get(graph_storage_type)
if not module_path:
ASCIIColors.red(f"Error: Module path for {graph_storage_type} not found.")
return None
try:
module = importlib.import_module(module_path, package="lightrag")
storage_class = getattr(module, graph_storage_type)
except (ImportError, AttributeError) as e:
ASCIIColors.red(f"Error: Failed to import {graph_storage_type}: {str(e)}")
return None
# Initialize the storage instance
global_config = {
"embedding_batch_num": 10, # Batch size
"vector_db_storage_cls_kwargs": {
"cosine_better_than_threshold": 0.5 # Cosine similarity threshold
},
"working_dir": os.environ.get(
"WORKING_DIR", "./rag_storage"
), # Working directory
}
# Initialize shared_storage for all storage types (required for locks)
initialize_share_data() # Use single-process mode (workers=1)
try:
storage = storage_class(
namespace="test_graph",
workspace="test_workspace",
global_config=global_config,
embedding_func=mock_embedding_func,
)
# Initialize the connection
await storage.initialize()
return storage
except Exception as e:
ASCIIColors.red(f"Error: Failed to initialize {graph_storage_type}: {str(e)}")
return None
@pytest.fixture
async def storage():
"""
Pytest fixture for graph storage integration tests.
Each test gets an initialized storage instance with a clean graph state.
"""
load_dotenv(dotenv_path=".env", override=False)
if not check_env_file():
pytest.skip(".env file not available for graph storage integration tests")
storage_instance = await initialize_graph_storage()
if storage_instance is None:
pytest.skip("Graph storage backend is not configured for integration tests")
try:
await storage_instance.drop()
yield storage_instance
finally:
try:
await storage_instance.drop()
except Exception as exc:
ASCIIColors.yellow(f"Warning: failed to drop test graph data: {exc}")
finally:
await storage_instance.finalize()
@pytest.mark.integration
@pytest.mark.requires_db
async def test_graph_basic(storage):
"""
Test basic graph database operations:
1. Use upsert_node to insert two nodes.
2. Use upsert_edge to insert an edge connecting the two nodes.
3. Use get_node to read a node.
4. Use get_edge to read an edge.
"""
try:
# 1. Insert the first node
node1_id = "Artificial Intelligence"
node1_data = {
"entity_id": node1_id,
"description": "Artificial intelligence is a branch of computer science that aims to understand the essence of intelligence and produce a new kind of intelligent machine that can react in a manner similar to human intelligence.",
"keywords": "AI,Machine Learning,Deep Learning",
"entity_type": "Technology Field",
}
print(f"Inserting node 1: {node1_id}")
await storage.upsert_node(node1_id, node1_data)
# 2. Insert the second node
node2_id = "Machine Learning"
node2_data = {
"entity_id": node2_id,
"description": "Machine learning is a branch of artificial intelligence that uses statistical methods to enable computer systems to learn without being explicitly programmed.",
"keywords": "Supervised Learning,Unsupervised Learning,Reinforcement Learning",
"entity_type": "Technology Field",
}
print(f"Inserting node 2: {node2_id}")
await storage.upsert_node(node2_id, node2_data)
# 3. Insert the connecting edge
edge_data = {
"relationship": "includes",
"weight": 1.0,
"description": "The field of artificial intelligence includes the subfield of machine learning.",
}
print(f"Inserting edge: {node1_id} -> {node2_id}")
await storage.upsert_edge(node1_id, node2_id, edge_data)
# 4. Read node properties
print(f"Reading node properties: {node1_id}")
node1_props = await storage.get_node(node1_id)
if node1_props:
print(f"Successfully read node properties: {node1_id}")
print(
f"Node description: {node1_props.get('description', 'No description')}"
)
print(f"Node type: {node1_props.get('entity_type', 'No type')}")
print(f"Node keywords: {node1_props.get('keywords', 'No keywords')}")
# Verify that the returned properties are correct
assert (
node1_props.get("entity_id") == node1_id
), f"Node ID mismatch: expected {node1_id}, got {node1_props.get('entity_id')}"
assert (
node1_props.get("description") == node1_data["description"]
), "Node description mismatch"
assert (
node1_props.get("entity_type") == node1_data["entity_type"]
), "Node type mismatch"
else:
print(f"Failed to read node properties: {node1_id}")
assert False, f"Failed to read node properties: {node1_id}"
# 5. Read edge properties
print(f"Reading edge properties: {node1_id} -> {node2_id}")
edge_props = await storage.get_edge(node1_id, node2_id)
if edge_props:
print(f"Successfully read edge properties: {node1_id} -> {node2_id}")
print(
f"Edge relationship: {edge_props.get('relationship', 'No relationship')}"
)
print(
f"Edge description: {edge_props.get('description', 'No description')}"
)
print(f"Edge weight: {edge_props.get('weight', 'No weight')}")
# Verify that the returned properties are correct
assert (
edge_props.get("relationship") == edge_data["relationship"]
), "Edge relationship mismatch"
assert (
edge_props.get("description") == edge_data["description"]
), "Edge description mismatch"
assert (
edge_props.get("weight") == edge_data["weight"]
), "Edge weight mismatch"
else:
print(f"Failed to read edge properties: {node1_id} -> {node2_id}")
assert False, f"Failed to read edge properties: {node1_id} -> {node2_id}"
# 5.1 Verify undirected graph property - read reverse edge properties
print(f"Reading reverse edge properties: {node2_id} -> {node1_id}")
reverse_edge_props = await storage.get_edge(node2_id, node1_id)
if reverse_edge_props:
print(
f"Successfully read reverse edge properties: {node2_id} -> {node1_id}"
)
print(
f"Reverse edge relationship: {reverse_edge_props.get('relationship', 'No relationship')}"
)
print(
f"Reverse edge description: {reverse_edge_props.get('description', 'No description')}"
)
print(
f"Reverse edge weight: {reverse_edge_props.get('weight', 'No weight')}"
)
# Verify that forward and reverse edge properties are the same
assert (
edge_props == reverse_edge_props
), "Forward and reverse edge properties are not consistent, undirected graph property verification failed"
print(
"Undirected graph property verification successful: forward and reverse edge properties are consistent"
)
else:
print(f"Failed to read reverse edge properties: {node2_id} -> {node1_id}")
assert False, f"Failed to read reverse edge properties: {node2_id} -> {node1_id}, undirected graph property verification failed"
print("Basic tests completed, data is preserved in the database.")
return True
except Exception as e:
ASCIIColors.red(f"An error occurred during the test: {str(e)}")
return False
@pytest.mark.integration
@pytest.mark.requires_db
async def test_graph_advanced(storage):
"""
Test advanced graph database operations:
1. Use node_degree to get the degree of a node.
2. Use edge_degree to get the degree of an edge.
3. Use get_node_edges to get all edges of a node.
4. Use get_all_labels to get all labels.
5. Use get_knowledge_graph to get a knowledge graph.
6. Use delete_node to delete a node.
7. Use remove_nodes to delete multiple nodes.
8. Use remove_edges to delete edges.
9. Use drop to clean up data.
"""
try:
# 1. Insert test data
# Insert node 1: Artificial Intelligence
node1_id = "Artificial Intelligence"
node1_data = {
"entity_id": node1_id,
"description": "Artificial intelligence is a branch of computer science that aims to understand the essence of intelligence and produce a new kind of intelligent machine that can react in a manner similar to human intelligence.",
"keywords": "AI,Machine Learning,Deep Learning",
"entity_type": "Technology Field",
}
print(f"Inserting node 1: {node1_id}")
await storage.upsert_node(node1_id, node1_data)
# Insert node 2: Machine Learning
node2_id = "Machine Learning"
node2_data = {
"entity_id": node2_id,
"description": "Machine learning is a branch of artificial intelligence that uses statistical methods to enable computer systems to learn without being explicitly programmed.",
"keywords": "Supervised Learning,Unsupervised Learning,Reinforcement Learning",
"entity_type": "Technology Field",
}
print(f"Inserting node 2: {node2_id}")
await storage.upsert_node(node2_id, node2_data)
# Insert node 3: Deep Learning
node3_id = "Deep Learning"
node3_data = {
"entity_id": node3_id,
"description": "Deep learning is a branch of machine learning that uses multi-layered neural networks to simulate the learning process of the human brain.",
"keywords": "Neural Networks,CNN,RNN",
"entity_type": "Technology Field",
}
print(f"Inserting node 3: {node3_id}")
await storage.upsert_node(node3_id, node3_data)
# Insert edge 1: Artificial Intelligence -> Machine Learning
edge1_data = {
"relationship": "includes",
"weight": 1.0,
"description": "The field of artificial intelligence includes the subfield of machine learning.",
}
print(f"Inserting edge 1: {node1_id} -> {node2_id}")
await storage.upsert_edge(node1_id, node2_id, edge1_data)
# Insert edge 2: Machine Learning -> Deep Learning
edge2_data = {
"relationship": "includes",
"weight": 1.0,
"description": "The field of machine learning includes the subfield of deep learning.",
}
print(f"Inserting edge 2: {node2_id} -> {node3_id}")
await storage.upsert_edge(node2_id, node3_id, edge2_data)
# 2. Test node_degree - get the degree of a node
print(f"== Testing node_degree: {node1_id}")
node1_degree = await storage.node_degree(node1_id)
print(f"Degree of node {node1_id}: {node1_degree}")
assert (
node1_degree == 1
), f"Degree of node {node1_id} should be 1, but got {node1_degree}"
# 2.1 Test degrees of all nodes
print("== Testing degrees of all nodes")
node2_degree = await storage.node_degree(node2_id)
node3_degree = await storage.node_degree(node3_id)
print(f"Degree of node {node2_id}: {node2_degree}")
print(f"Degree of node {node3_id}: {node3_degree}")
assert (
node2_degree == 2
), f"Degree of node {node2_id} should be 2, but got {node2_degree}"
assert (
node3_degree == 1
), f"Degree of node {node3_id} should be 1, but got {node3_degree}"
# 3. Test edge_degree - get the degree of an edge
print(f"== Testing edge_degree: {node1_id} -> {node2_id}")
edge_degree = await storage.edge_degree(node1_id, node2_id)
print(f"Degree of edge {node1_id} -> {node2_id}: {edge_degree}")
assert (
edge_degree == 3
), f"Degree of edge {node1_id} -> {node2_id} should be 3, but got {edge_degree}"
# 3.1 Test reverse edge degree - verify undirected graph property
print(f"== Testing reverse edge degree: {node2_id} -> {node1_id}")
reverse_edge_degree = await storage.edge_degree(node2_id, node1_id)
print(f"Degree of reverse edge {node2_id} -> {node1_id}: {reverse_edge_degree}")
assert (
edge_degree == reverse_edge_degree
), "Degrees of forward and reverse edges are not consistent, undirected graph property verification failed"
print(
"Undirected graph property verification successful: degrees of forward and reverse edges are consistent"
)
# 4. Test get_node_edges - get all edges of a node
print(f"== Testing get_node_edges: {node2_id}")
node2_edges = await storage.get_node_edges(node2_id)
print(f"All edges of node {node2_id}: {node2_edges}")
assert (
len(node2_edges) == 2
), f"Node {node2_id} should have 2 edges, but got {len(node2_edges)}"
# 4.1 Verify undirected graph property of node edges
print("== Verifying undirected graph property of node edges")
# Check if it includes connections with node1 and node3 (regardless of direction)
has_connection_with_node1 = False
has_connection_with_node3 = False
for edge in node2_edges:
# Check for connection with node1 (regardless of direction)
if (edge[0] == node1_id and edge[1] == node2_id) or (
edge[0] == node2_id and edge[1] == node1_id
):
has_connection_with_node1 = True
# Check for connection with node3 (regardless of direction)
if (edge[0] == node2_id and edge[1] == node3_id) or (
edge[0] == node3_id and edge[1] == node2_id
):
has_connection_with_node3 = True
assert (
has_connection_with_node1
), f"Edge list of node {node2_id} should include a connection with {node1_id}"
assert (
has_connection_with_node3
), f"Edge list of node {node2_id} should include a connection with {node3_id}"
print(
f"Undirected graph property verification successful: edge list of node {node2_id} contains all relevant edges"
)
# 5. Test get_all_labels - get all labels
print("== Testing get_all_labels")
all_labels = await storage.get_all_labels()
print(f"All labels: {all_labels}")
assert len(all_labels) == 3, f"Should have 3 labels, but got {len(all_labels)}"
assert node1_id in all_labels, f"{node1_id} should be in the label list"
assert node2_id in all_labels, f"{node2_id} should be in the label list"
assert node3_id in all_labels, f"{node3_id} should be in the label list"
# 6. Test get_knowledge_graph - get a knowledge graph
print("== Testing get_knowledge_graph")
kg = await storage.get_knowledge_graph("*", max_depth=2, max_nodes=10)
print(f"Number of nodes in knowledge graph: {len(kg.nodes)}")
print(f"Number of edges in knowledge graph: {len(kg.edges)}")
assert isinstance(
kg, KnowledgeGraph
), "The returned result should be of type KnowledgeGraph"
assert (
len(kg.nodes) == 3
), f"The knowledge graph should have 3 nodes, but got {len(kg.nodes)}"
assert (
len(kg.edges) == 2
), f"The knowledge graph should have 2 edges, but got {len(kg.edges)}"
# 7. Test delete_node - delete a node
print(f"== Testing delete_node: {node3_id}")
await storage.delete_node(node3_id)
node3_props = await storage.get_node(node3_id)
print(f"Querying node properties after deletion {node3_id}: {node3_props}")
assert node3_props is None, f"Node {node3_id} should have been deleted"
# Re-insert node 3 for subsequent tests
await storage.upsert_node(node3_id, node3_data)
await storage.upsert_edge(node2_id, node3_id, edge2_data)
# 8. Test remove_edges - delete edges
print(f"== Testing remove_edges: {node2_id} -> {node3_id}")
await storage.remove_edges([(node2_id, node3_id)])
edge_props = await storage.get_edge(node2_id, node3_id)
print(
f"Querying edge properties after deletion {node2_id} -> {node3_id}: {edge_props}"
)
assert (
edge_props is None
), f"Edge {node2_id} -> {node3_id} should have been deleted"
# 8.1 Verify undirected graph property of edge deletion
print(
f"== Verifying undirected graph property of edge deletion: {node3_id} -> {node2_id}"
)
reverse_edge_props = await storage.get_edge(node3_id, node2_id)
print(
f"Querying reverse edge properties after deletion {node3_id} -> {node2_id}: {reverse_edge_props}"
)
assert (
reverse_edge_props is None
), f"Reverse edge {node3_id} -> {node2_id} should also be deleted, undirected graph property verification failed"
print(
"Undirected graph property verification successful: deleting an edge in one direction also deletes the reverse edge"
)
# 9. Test remove_nodes - delete multiple nodes
print(f"== Testing remove_nodes: [{node2_id}, {node3_id}]")
await storage.remove_nodes([node2_id, node3_id])
node2_props = await storage.get_node(node2_id)
node3_props = await storage.get_node(node3_id)
print(f"Querying node properties after deletion {node2_id}: {node2_props}")
print(f"Querying node properties after deletion {node3_id}: {node3_props}")
assert node2_props is None, f"Node {node2_id} should have been deleted"
assert node3_props is None, f"Node {node3_id} should have been deleted"
print("\nAdvanced tests completed.")
return True
except Exception as e:
ASCIIColors.red(f"An error occurred during the test: {str(e)}")
return False
@pytest.mark.integration
@pytest.mark.requires_db
async def test_graph_batch_operations(storage):
"""
Test batch operations of the graph database:
1. Use get_nodes_batch to get properties of multiple nodes in batch.
2. Use node_degrees_batch to get degrees of multiple nodes in batch.
3. Use edge_degrees_batch to get degrees of multiple edges in batch.
4. Use get_edges_batch to get properties of multiple edges in batch.
5. Use get_nodes_edges_batch to get all edges of multiple nodes in batch.
"""
try:
chunk1_id = "1"
chunk2_id = "2"
chunk3_id = "3"
# 1. Insert test data
# Insert node 1: Artificial Intelligence
node1_id = "Artificial Intelligence"
node1_data = {
"entity_id": node1_id,
"description": "Artificial intelligence is a branch of computer science that aims to understand the essence of intelligence and produce a new kind of intelligent machine that can react in a manner similar to human intelligence.",
"keywords": "AI,Machine Learning,Deep Learning",
"entity_type": "Technology Field",
"source_id": GRAPH_FIELD_SEP.join([chunk1_id, chunk2_id]),
}
print(f"Inserting node 1: {node1_id}")
await storage.upsert_node(node1_id, node1_data)
# Insert node 2: Machine Learning
node2_id = "Machine Learning"
node2_data = {
"entity_id": node2_id,
"description": "Machine learning is a branch of artificial intelligence that uses statistical methods to enable computer systems to learn without being explicitly programmed.",
"keywords": "Supervised Learning,Unsupervised Learning,Reinforcement Learning",
"entity_type": "Technology Field",
"source_id": GRAPH_FIELD_SEP.join([chunk2_id, chunk3_id]),
}
print(f"Inserting node 2: {node2_id}")
await storage.upsert_node(node2_id, node2_data)
# Insert node 3: Deep Learning
node3_id = "Deep Learning"
node3_data = {
"entity_id": node3_id,
"description": "Deep learning is a branch of machine learning that uses multi-layered neural networks to simulate the learning process of the human brain.",
"keywords": "Neural Networks,CNN,RNN",
"entity_type": "Technology Field",
"source_id": GRAPH_FIELD_SEP.join([chunk3_id]),
}
print(f"Inserting node 3: {node3_id}")
await storage.upsert_node(node3_id, node3_data)
# Insert node 4: Natural Language Processing
node4_id = "Natural Language Processing"
node4_data = {
"entity_id": node4_id,
"description": "Natural language processing is a branch of artificial intelligence that focuses on enabling computers to understand and process human language.",
"keywords": "NLP,Text Analysis,Language Models",
"entity_type": "Technology Field",
}
print(f"Inserting node 4: {node4_id}")
await storage.upsert_node(node4_id, node4_data)
# Insert node 5: Computer Vision
node5_id = "Computer Vision"
node5_data = {
"entity_id": node5_id,
"description": "Computer vision is a branch of artificial intelligence that focuses on enabling computers to gain information from images or videos.",
"keywords": "CV,Image Recognition,Object Detection",
"entity_type": "Technology Field",
}
print(f"Inserting node 5: {node5_id}")
await storage.upsert_node(node5_id, node5_data)
# Insert edge 1: Artificial Intelligence -> Machine Learning
edge1_data = {
"relationship": "includes",
"weight": 1.0,
"description": "The field of artificial intelligence includes the subfield of machine learning.",
"source_id": GRAPH_FIELD_SEP.join([chunk1_id, chunk2_id]),
}
print(f"Inserting edge 1: {node1_id} -> {node2_id}")
await storage.upsert_edge(node1_id, node2_id, edge1_data)
# Insert edge 2: Machine Learning -> Deep Learning
edge2_data = {
"relationship": "includes",
"weight": 1.0,
"description": "The field of machine learning includes the subfield of deep learning.",
"source_id": GRAPH_FIELD_SEP.join([chunk2_id, chunk3_id]),
}
print(f"Inserting edge 2: {node2_id} -> {node3_id}")
await storage.upsert_edge(node2_id, node3_id, edge2_data)
# Insert edge 3: Artificial Intelligence -> Natural Language Processing
edge3_data = {
"relationship": "includes",
"weight": 1.0,
"description": "The field of artificial intelligence includes the subfield of natural language processing.",
"source_id": GRAPH_FIELD_SEP.join([chunk3_id]),
}
print(f"Inserting edge 3: {node1_id} -> {node4_id}")
await storage.upsert_edge(node1_id, node4_id, edge3_data)
# Insert edge 4: Artificial Intelligence -> Computer Vision
edge4_data = {
"relationship": "includes",
"weight": 1.0,
"description": "The field of artificial intelligence includes the subfield of computer vision.",
}
print(f"Inserting edge 4: {node1_id} -> {node5_id}")
await storage.upsert_edge(node1_id, node5_id, edge4_data)
# Insert edge 5: Deep Learning -> Natural Language Processing
edge5_data = {
"relationship": "applied to",
"weight": 0.8,
"description": "Deep learning techniques are applied in the field of natural language processing.",
}
print(f"Inserting edge 5: {node3_id} -> {node4_id}")
await storage.upsert_edge(node3_id, node4_id, edge5_data)
# Insert edge 6: Deep Learning -> Computer Vision
edge6_data = {
"relationship": "applied to",
"weight": 0.8,
"description": "Deep learning techniques are applied in the field of computer vision.",
}
print(f"Inserting edge 6: {node3_id} -> {node5_id}")
await storage.upsert_edge(node3_id, node5_id, edge6_data)
# 2. Test get_nodes_batch - batch get properties of multiple nodes
print("== Testing get_nodes_batch")
node_ids = [node1_id, node2_id, node3_id]
nodes_dict = await storage.get_nodes_batch(node_ids)
print(f"Batch get node properties result: {nodes_dict.keys()}")
assert len(nodes_dict) == 3, f"Should return 3 nodes, but got {len(nodes_dict)}"
assert node1_id in nodes_dict, f"{node1_id} should be in the result"
assert node2_id in nodes_dict, f"{node2_id} should be in the result"
assert node3_id in nodes_dict, f"{node3_id} should be in the result"
assert (
nodes_dict[node1_id]["description"] == node1_data["description"]
), f"{node1_id} description mismatch"
assert (
nodes_dict[node2_id]["description"] == node2_data["description"]
), f"{node2_id} description mismatch"
assert (
nodes_dict[node3_id]["description"] == node3_data["description"]
), f"{node3_id} description mismatch"
# 3. Test node_degrees_batch - batch get degrees of multiple nodes
print("== Testing node_degrees_batch")
node_degrees = await storage.node_degrees_batch(node_ids)
print(f"Batch get node degrees result: {node_degrees}")
assert (
len(node_degrees) == 3
), f"Should return degrees of 3 nodes, but got {len(node_degrees)}"
assert node1_id in node_degrees, f"{node1_id} should be in the result"
assert node2_id in node_degrees, f"{node2_id} should be in the result"
assert node3_id in node_degrees, f"{node3_id} should be in the result"
assert (
node_degrees[node1_id] == 3
), f"Degree of {node1_id} should be 3, but got {node_degrees[node1_id]}"
assert (
node_degrees[node2_id] == 2
), f"Degree of {node2_id} should be 2, but got {node_degrees[node2_id]}"
assert (
node_degrees[node3_id] == 3
), f"Degree of {node3_id} should be 3, but got {node_degrees[node3_id]}"
# 4. Test edge_degrees_batch - batch get degrees of multiple edges
print("== Testing edge_degrees_batch")
edges = [(node1_id, node2_id), (node2_id, node3_id), (node3_id, node4_id)]
edge_degrees = await storage.edge_degrees_batch(edges)
print(f"Batch get edge degrees result: {edge_degrees}")
assert (
len(edge_degrees) == 3
), f"Should return degrees of 3 edges, but got {len(edge_degrees)}"
assert (
node1_id,
node2_id,
) in edge_degrees, f"Edge {node1_id} -> {node2_id} should be in the result"
assert (
node2_id,
node3_id,
) in edge_degrees, f"Edge {node2_id} -> {node3_id} should be in the result"
assert (
node3_id,
node4_id,
) in edge_degrees, f"Edge {node3_id} -> {node4_id} should be in the result"
# Verify edge degrees (sum of source and target node degrees)
assert (
edge_degrees[(node1_id, node2_id)] == 5
), f"Degree of edge {node1_id} -> {node2_id} should be 5, but got {edge_degrees[(node1_id, node2_id)]}"
assert (
edge_degrees[(node2_id, node3_id)] == 5
), f"Degree of edge {node2_id} -> {node3_id} should be 5, but got {edge_degrees[(node2_id, node3_id)]}"
assert (
edge_degrees[(node3_id, node4_id)] == 5
), f"Degree of edge {node3_id} -> {node4_id} should be 5, but got {edge_degrees[(node3_id, node4_id)]}"
# 5. Test get_edges_batch - batch get properties of multiple edges
print("== Testing get_edges_batch")
# Convert list of tuples to list of dicts for Neo4j style
edge_dicts = [{"src": src, "tgt": tgt} for src, tgt in edges]
edges_dict = await storage.get_edges_batch(edge_dicts)
print(f"Batch get edge properties result: {edges_dict.keys()}")
assert (
len(edges_dict) == 3
), f"Should return properties of 3 edges, but got {len(edges_dict)}"
assert (
node1_id,
node2_id,
) in edges_dict, f"Edge {node1_id} -> {node2_id} should be in the result"
assert (
node2_id,
node3_id,
) in edges_dict, f"Edge {node2_id} -> {node3_id} should be in the result"
assert (
node3_id,
node4_id,
) in edges_dict, f"Edge {node3_id} -> {node4_id} should be in the result"
assert (
edges_dict[(node1_id, node2_id)]["relationship"]
== edge1_data["relationship"]
), f"Edge {node1_id} -> {node2_id} relationship mismatch"
assert (
edges_dict[(node2_id, node3_id)]["relationship"]
== edge2_data["relationship"]
), f"Edge {node2_id} -> {node3_id} relationship mismatch"
assert (
edges_dict[(node3_id, node4_id)]["relationship"]
== edge5_data["relationship"]
), f"Edge {node3_id} -> {node4_id} relationship mismatch"
# 5.1 Test batch get of reverse edges - verify undirected property
print("== Testing batch get of reverse edges")
# Create list of dicts for reverse edges
reverse_edge_dicts = [{"src": tgt, "tgt": src} for src, tgt in edges]
reverse_edges_dict = await storage.get_edges_batch(reverse_edge_dicts)
print(f"Batch get reverse edge properties result: {reverse_edges_dict.keys()}")
assert (
len(reverse_edges_dict) == 3
), f"Should return properties of 3 reverse edges, but got {len(reverse_edges_dict)}"
# Verify that properties of forward and reverse edges are consistent
for (src, tgt), props in edges_dict.items():
assert (
(
tgt,
src,
)
in reverse_edges_dict
), f"Reverse edge {tgt} -> {src} should be in the result"
assert (
props == reverse_edges_dict[(tgt, src)]
), f"Properties of edge {src} -> {tgt} and reverse edge {tgt} -> {src} are inconsistent"
print(
"Undirected graph property verification successful: properties of batch-retrieved forward and reverse edges are consistent"
)
# 6. Test get_nodes_edges_batch - batch get all edges of multiple nodes
print("== Testing get_nodes_edges_batch")
nodes_edges = await storage.get_nodes_edges_batch([node1_id, node3_id])
print(f"Batch get node edges result: {nodes_edges.keys()}")
assert (
len(nodes_edges) == 2
), f"Should return edges for 2 nodes, but got {len(nodes_edges)}"
assert node1_id in nodes_edges, f"{node1_id} should be in the result"
assert node3_id in nodes_edges, f"{node3_id} should be in the result"
assert (
len(nodes_edges[node1_id]) == 3
), f"{node1_id} should have 3 edges, but has {len(nodes_edges[node1_id])}"
assert (
len(nodes_edges[node3_id]) == 3
), f"{node3_id} should have 3 edges, but has {len(nodes_edges[node3_id])}"
# 6.1 Verify undirected property of batch-retrieved node edges
print("== Verifying undirected property of batch-retrieved node edges")
# Check if node 1's edges include all relevant edges (regardless of direction)
node1_outgoing_edges = [
(src, tgt) for src, tgt in nodes_edges[node1_id] if src == node1_id
]
node1_incoming_edges = [
(src, tgt) for src, tgt in nodes_edges[node1_id] if tgt == node1_id
]
print(f"Outgoing edges of node {node1_id}: {node1_outgoing_edges}")
print(f"Incoming edges of node {node1_id}: {node1_incoming_edges}")
# Check for edges to Machine Learning, Natural Language Processing, and Computer Vision
has_edge_to_node2 = any(tgt == node2_id for _, tgt in node1_outgoing_edges)
has_edge_to_node4 = any(tgt == node4_id for _, tgt in node1_outgoing_edges)
has_edge_to_node5 = any(tgt == node5_id for _, tgt in node1_outgoing_edges)
assert (
has_edge_to_node2
), f"Edge list of node {node1_id} should include an edge to {node2_id}"
assert (
has_edge_to_node4
), f"Edge list of node {node1_id} should include an edge to {node4_id}"
assert (
has_edge_to_node5
), f"Edge list of node {node1_id} should include an edge to {node5_id}"
# Check if node 3's edges include all relevant edges (regardless of direction)
node3_outgoing_edges = [
(src, tgt) for src, tgt in nodes_edges[node3_id] if src == node3_id
]
node3_incoming_edges = [
(src, tgt) for src, tgt in nodes_edges[node3_id] if tgt == node3_id
]
print(f"Outgoing edges of node {node3_id}: {node3_outgoing_edges}")
print(f"Incoming edges of node {node3_id}: {node3_incoming_edges}")
# Check for connections with Machine Learning, Natural Language Processing, and Computer Vision (ignoring direction)
has_connection_with_node2 = any(
(src == node2_id and tgt == node3_id)
or (src == node3_id and tgt == node2_id)
for src, tgt in nodes_edges[node3_id]
)
has_connection_with_node4 = any(
(src == node3_id and tgt == node4_id)
or (src == node4_id and tgt == node3_id)
for src, tgt in nodes_edges[node3_id]
)
has_connection_with_node5 = any(
(src == node3_id and tgt == node5_id)
or (src == node5_id and tgt == node3_id)
for src, tgt in nodes_edges[node3_id]
)
assert (
has_connection_with_node2
), f"Edge list of node {node3_id} should include a connection with {node2_id}"
assert (
has_connection_with_node4
), f"Edge list of node {node3_id} should include a connection with {node4_id}"
assert (
has_connection_with_node5
), f"Edge list of node {node3_id} should include a connection with {node5_id}"
print(
"Undirected graph property verification successful: batch-retrieved node edges include all relevant edges (regardless of direction)"
)
print("\nBatch operations tests completed.")
return True
except Exception as e:
ASCIIColors.red(f"An error occurred during the test: {str(e)}")
return False
@pytest.mark.integration
@pytest.mark.requires_db
async def test_graph_special_characters(storage):
"""
Test the graph database's handling of special characters:
1. Test node names and descriptions containing single quotes, double quotes, and backslashes.
2. Test edge descriptions containing single quotes, double quotes, and backslashes.
3. Verify that special characters are saved and retrieved correctly.
"""
try:
# 1. Test special characters in node name
node1_id = "Node with 'single quotes'"
node1_data = {
"entity_id": node1_id,
"description": "This description contains 'single quotes', \"double quotes\", and \\backslashes",
"keywords": "special characters,quotes,escaping",
"entity_type": "Test Node",
}
print(f"Inserting node with special characters 1: {node1_id}")
await storage.upsert_node(node1_id, node1_data)
# 2. Test double quotes in node name
node2_id = 'Node with "double quotes"'
node2_data = {
"entity_id": node2_id,
"description": "This description contains both 'single quotes' and \"double quotes\" and \\a\\path",
"keywords": "special characters,quotes,JSON",
"entity_type": "Test Node",
}
print(f"Inserting node with special characters 2: {node2_id}")
await storage.upsert_node(node2_id, node2_data)
# 3. Test backslashes in node name
node3_id = "Node with \\backslashes\\"
node3_data = {
"entity_id": node3_id,
"description": "This description contains a Windows path C:\\Program Files\\ and escape characters \\n\\t",
"keywords": "backslashes,paths,escaping",
"entity_type": "Test Node",
}
print(f"Inserting node with special characters 3: {node3_id}")
await storage.upsert_node(node3_id, node3_data)
# 4. Test special characters in edge description
edge1_data = {
"relationship": "special 'relationship'",
"weight": 1.0,
"description": "This edge description contains 'single quotes', \"double quotes\", and \\backslashes",
}
print(f"Inserting edge with special characters: {node1_id} -> {node2_id}")
await storage.upsert_edge(node1_id, node2_id, edge1_data)
# 5. Test more complex combination of special characters in edge description
edge2_data = {
"relationship": 'complex "relationship"\\type',
"weight": 0.8,
"description": "Contains SQL injection attempt: SELECT * FROM users WHERE name='admin'--",
}
print(
f"Inserting edge with complex special characters: {node2_id} -> {node3_id}"
)
await storage.upsert_edge(node2_id, node3_id, edge2_data)
# 6. Verify that node special characters are saved correctly
print("\n== Verifying node special characters")
for node_id, original_data in [
(node1_id, node1_data),
(node2_id, node2_data),
(node3_id, node3_data),
]:
node_props = await storage.get_node(node_id)
if node_props:
print(f"Successfully read node: {node_id}")
print(
f"Node description: {node_props.get('description', 'No description')}"
)
# Verify node ID is saved correctly
assert (
node_props.get("entity_id") == node_id
), f"Node ID mismatch: expected {node_id}, got {node_props.get('entity_id')}"
# Verify description is saved correctly
assert (
node_props.get("description") == original_data["description"]
), f"Node description mismatch: expected {original_data['description']}, got {node_props.get('description')}"
print(f"Node {node_id} special character verification successful")
else:
print(f"Failed to read node properties: {node_id}")
assert False, f"Failed to read node properties: {node_id}"
# 7. Verify that edge special characters are saved correctly
print("\n== Verifying edge special characters")
edge1_props = await storage.get_edge(node1_id, node2_id)
if edge1_props:
print(f"Successfully read edge: {node1_id} -> {node2_id}")
print(
f"Edge relationship: {edge1_props.get('relationship', 'No relationship')}"
)
print(
f"Edge description: {edge1_props.get('description', 'No description')}"
)
# Verify edge relationship is saved correctly
assert (
edge1_props.get("relationship") == edge1_data["relationship"]
), f"Edge relationship mismatch: expected {edge1_data['relationship']}, got {edge1_props.get('relationship')}"
# Verify edge description is saved correctly
assert (
edge1_props.get("description") == edge1_data["description"]
), f"Edge description mismatch: expected {edge1_data['description']}, got {edge1_props.get('description')}"
print(
f"Edge {node1_id} -> {node2_id} special character verification successful"
)
else:
print(f"Failed to read edge properties: {node1_id} -> {node2_id}")
assert False, f"Failed to read edge properties: {node1_id} -> {node2_id}"
edge2_props = await storage.get_edge(node2_id, node3_id)
if edge2_props:
print(f"Successfully read edge: {node2_id} -> {node3_id}")
print(
f"Edge relationship: {edge2_props.get('relationship', 'No relationship')}"
)
print(
f"Edge description: {edge2_props.get('description', 'No description')}"
)
# Verify edge relationship is saved correctly
assert (
edge2_props.get("relationship") == edge2_data["relationship"]
), f"Edge relationship mismatch: expected {edge2_data['relationship']}, got {edge2_props.get('relationship')}"
# Verify edge description is saved correctly
assert (
edge2_props.get("description") == edge2_data["description"]
), f"Edge description mismatch: expected {edge2_data['description']}, got {edge2_props.get('description')}"
print(
f"Edge {node2_id} -> {node3_id} special character verification successful"
)
else:
print(f"Failed to read edge properties: {node2_id} -> {node3_id}")
assert False, f"Failed to read edge properties: {node2_id} -> {node3_id}"
print("\nSpecial character tests completed, data is preserved in the database.")
return True
except Exception as e:
ASCIIColors.red(f"An error occurred during the test: {str(e)}")
return False
@pytest.mark.integration
@pytest.mark.requires_db
async def test_graph_string_escaping_regressions(storage):
"""
Regression coverage for entity IDs and properties that require Cypher escaping.
Covers quoted and backslash-heavy node IDs across single-node reads, batch reads,
edge retrieval, and delete/remove write paths.
"""
center_id = 'Danh mục "bài toán lớn"'
backslash_id = r"C:\Program Files\LightRAG"
mixed_id = 'Path "C:\\RAG\\docs"'
single_quote_id = "Node with 'single quotes'"
node_payloads = {
center_id: {
"entity_id": center_id,
"description": 'Quoted entity with JSON-ish payload {"path": "C:\\\\temp"}',
"keywords": 'quotes,"double quotes",unicode',
"entity_type": "Regression Node",
},
backslash_id: {
"entity_id": backslash_id,
"description": r"Windows path C:\Program Files\LightRAG\bin",
"keywords": r"paths,C:\temp,backslashes",
"entity_type": "Regression Node",
},
mixed_id: {
"entity_id": mixed_id,
"description": 'Mixed quotes "and" slashes \\ in one entity id',
"keywords": r'mixed,"quoted",C:\RAG\docs',
"entity_type": "Regression Node",
},
single_quote_id: {
"entity_id": single_quote_id,
"description": "Single quotes stay literal in entity identifiers",
"keywords": "single quotes,escaping",
"entity_type": "Regression Node",
},
}
for node_id, payload in node_payloads.items():
await storage.upsert_node(node_id, payload)
edge_payloads = {
(center_id, backslash_id): {
"relationship": r'contains "path"\edge',
"weight": 1.0,
"description": r'Links "quoted" title to C:\Program Files\LightRAG',
},
(center_id, mixed_id): {
"relationship": 'references "docs"',
"weight": 0.8,
"description": r'Contains both "quotes" and \\backslashes\\',
},
(center_id, single_quote_id): {
"relationship": "mentions 'alias'",
"weight": 0.6,
"description": 'Single quote entity linked to "quoted" center node',
},
}
for (src_id, tgt_id), payload in edge_payloads.items():
await storage.upsert_edge(src_id, tgt_id, payload)
for node_id, payload in node_payloads.items():
node = await storage.get_node(node_id)
assert node is not None, f"Expected node {node_id!r} to round-trip"
assert node["entity_id"] == node_id
assert node["description"] == payload["description"]
nodes_batch = await storage.get_nodes_batch(list(node_payloads))
assert set(nodes_batch) == set(node_payloads)
for node_id, payload in node_payloads.items():
assert nodes_batch[node_id]["entity_id"] == node_id
assert nodes_batch[node_id]["description"] == payload["description"]
degrees = await storage.node_degrees_batch(list(node_payloads))
assert degrees[center_id] == 3
assert degrees[backslash_id] == 1
assert degrees[mixed_id] == 1
assert degrees[single_quote_id] == 1
center_edges = await storage.get_node_edges(center_id)
assert center_edges is not None
assert set(center_edges) == {
(center_id, backslash_id),
(center_id, mixed_id),
(center_id, single_quote_id),
}
batch_edges = await storage.get_nodes_edges_batch(
[center_id, mixed_id, backslash_id, single_quote_id]
)
assert set(batch_edges) == {center_id, mixed_id, backslash_id, single_quote_id}
assert set(batch_edges[center_id]) == {
(center_id, backslash_id),
(center_id, mixed_id),
(center_id, single_quote_id),
}
assert set(batch_edges[mixed_id]) == {(center_id, mixed_id)}
assert set(batch_edges[backslash_id]) == {(center_id, backslash_id)}
assert set(batch_edges[single_quote_id]) == {(center_id, single_quote_id)}
forward_edges = await storage.get_edges_batch(
[{"src": src_id, "tgt": tgt_id} for src_id, tgt_id in edge_payloads]
)
reverse_edges = await storage.get_edges_batch(
[{"src": tgt_id, "tgt": src_id} for src_id, tgt_id in edge_payloads]
)
assert set(forward_edges) == set(edge_payloads)
for pair, payload in edge_payloads.items():
assert forward_edges[pair]["relationship"] == payload["relationship"]
assert forward_edges[pair]["description"] == payload["description"]
reverse_pair = (pair[1], pair[0])
assert reverse_pair in reverse_edges
assert reverse_edges[reverse_pair]["relationship"] == payload["relationship"]
assert reverse_edges[reverse_pair]["description"] == payload["description"]
await storage.remove_edges([(center_id, mixed_id)])
assert await storage.get_edge(center_id, mixed_id) is None
remaining_center_edges = await storage.get_node_edges(center_id)
assert remaining_center_edges is not None
assert (center_id, mixed_id) not in remaining_center_edges
await storage.delete_node(single_quote_id)
assert await storage.get_node(single_quote_id) is None
await storage.remove_nodes([center_id, backslash_id])
assert await storage.get_node(center_id) is None
assert await storage.get_node(backslash_id) is None
assert await storage.get_node(mixed_id) is not None
@pytest.mark.integration
@pytest.mark.requires_db
async def test_graph_undirected_property(storage):
"""
Specifically test the undirected graph property of the storage:
1. Verify that after inserting an edge in one direction, a reverse query can retrieve the same result.
2. Verify that edge properties are consistent in forward and reverse queries.
3. Verify that after deleting an edge in one direction, the edge in the other direction is also deleted.
4. Verify the undirected property in batch operations.
"""
try:
# 1. Insert test data
# Insert node 1: Computer Science
node1_id = "Computer Science"
node1_data = {
"entity_id": node1_id,
"description": "Computer science is the study of computers and their applications.",
"keywords": "computer,science,technology",
"entity_type": "Discipline",
}
print(f"Inserting node 1: {node1_id}")
await storage.upsert_node(node1_id, node1_data)
# Insert node 2: Data Structures
node2_id = "Data Structures"
node2_data = {
"entity_id": node2_id,
"description": "A data structure is a fundamental concept in computer science used to organize and store data.",
"keywords": "data,structure,organization",
"entity_type": "Concept",
}
print(f"Inserting node 2: {node2_id}")
await storage.upsert_node(node2_id, node2_data)
# Insert node 3: Algorithms
node3_id = "Algorithms"
node3_data = {
"entity_id": node3_id,
"description": "An algorithm is a set of steps and methods for solving problems.",
"keywords": "algorithm,steps,methods",
"entity_type": "Concept",
}
print(f"Inserting node 3: {node3_id}")
await storage.upsert_node(node3_id, node3_data)
# 2. Test undirected property after edge insertion
print("\n== Testing undirected property after edge insertion")
# Insert edge 1: Computer Science -> Data Structures
edge1_data = {
"relationship": "includes",
"weight": 1.0,
"description": "Computer science includes the concept of data structures.",
}
print(f"Inserting edge 1: {node1_id} -> {node2_id}")
await storage.upsert_edge(node1_id, node2_id, edge1_data)
# Verify forward query
forward_edge = await storage.get_edge(node1_id, node2_id)
print(f"Forward edge properties: {forward_edge}")
assert (
forward_edge is not None
), f"Failed to read forward edge properties: {node1_id} -> {node2_id}"
# Verify reverse query
reverse_edge = await storage.get_edge(node2_id, node1_id)
print(f"Reverse edge properties: {reverse_edge}")
assert (
reverse_edge is not None
), f"Failed to read reverse edge properties: {node2_id} -> {node1_id}"
# Verify that forward and reverse edge properties are consistent
assert (
forward_edge == reverse_edge
), "Forward and reverse edge properties are inconsistent, undirected property verification failed"
print(
"Undirected property verification successful: forward and reverse edge properties are consistent"
)
# 3. Test undirected property of edge degree
print("\n== Testing undirected property of edge degree")
# Insert edge 2: Computer Science -> Algorithms
edge2_data = {
"relationship": "includes",
"weight": 1.0,
"description": "Computer science includes the concept of algorithms.",
}
print(f"Inserting edge 2: {node1_id} -> {node3_id}")
await storage.upsert_edge(node1_id, node3_id, edge2_data)
# Verify degrees of forward and reverse edges
forward_degree = await storage.edge_degree(node1_id, node2_id)
reverse_degree = await storage.edge_degree(node2_id, node1_id)
print(f"Degree of forward edge {node1_id} -> {node2_id}: {forward_degree}")
print(f"Degree of reverse edge {node2_id} -> {node1_id}: {reverse_degree}")
assert (
forward_degree == reverse_degree
), "Degrees of forward and reverse edges are inconsistent, undirected property verification failed"
print(
"Undirected property verification successful: degrees of forward and reverse edges are consistent"
)
# 4. Test undirected property of edge deletion
print("\n== Testing undirected property of edge deletion")
# Delete forward edge
print(f"Deleting edge: {node1_id} -> {node2_id}")
await storage.remove_edges([(node1_id, node2_id)])
# Verify forward edge is deleted
forward_edge = await storage.get_edge(node1_id, node2_id)
print(
f"Querying forward edge properties after deletion {node1_id} -> {node2_id}: {forward_edge}"
)
assert (
forward_edge is None
), f"Edge {node1_id} -> {node2_id} should have been deleted"
# Verify reverse edge is also deleted
reverse_edge = await storage.get_edge(node2_id, node1_id)
print(
f"Querying reverse edge properties after deletion {node2_id} -> {node1_id}: {reverse_edge}"
)
assert (
reverse_edge is None
), f"Reverse edge {node2_id} -> {node1_id} should also be deleted, undirected property verification failed"
print(
"Undirected property verification successful: deleting an edge in one direction also deletes the reverse edge"
)
# 5. Test undirected property in batch operations
print("\n== Testing undirected property in batch operations")
# Re-insert edge
await storage.upsert_edge(node1_id, node2_id, edge1_data)
# Batch get edge properties
edge_dicts = [
{"src": node1_id, "tgt": node2_id},
{"src": node1_id, "tgt": node3_id},
]
reverse_edge_dicts = [
{"src": node2_id, "tgt": node1_id},
{"src": node3_id, "tgt": node1_id},
]
edges_dict = await storage.get_edges_batch(edge_dicts)
reverse_edges_dict = await storage.get_edges_batch(reverse_edge_dicts)
print(f"Batch get forward edge properties result: {edges_dict.keys()}")
print(f"Batch get reverse edge properties result: {reverse_edges_dict.keys()}")
# Verify that properties of forward and reverse edges are consistent
for (src, tgt), props in edges_dict.items():
assert (
(
tgt,
src,
)
in reverse_edges_dict
), f"Reverse edge {tgt} -> {src} should be in the result"
assert (
props == reverse_edges_dict[(tgt, src)]
), f"Properties of edge {src} -> {tgt} and reverse edge {tgt} -> {src} are inconsistent"
print(
"Undirected property verification successful: properties of batch-retrieved forward and reverse edges are consistent"
)
# 6. Test undirected property of batch-retrieved node edges
print("\n== Testing undirected property of batch-retrieved node edges")
nodes_edges = await storage.get_nodes_edges_batch([node1_id, node2_id])
print(f"Batch get node edges result: {nodes_edges.keys()}")
# Check if node 1's edges include all relevant edges (regardless of direction)
node1_edges = nodes_edges[node1_id]
node2_edges = nodes_edges[node2_id]
# Check if node 1 has edges to node 2 and node 3
has_edge_to_node2 = any(
(src == node1_id and tgt == node2_id) for src, tgt in node1_edges
)
has_edge_to_node3 = any(
(src == node1_id and tgt == node3_id) for src, tgt in node1_edges
)
assert (
has_edge_to_node2
), f"Edge list of node {node1_id} should include an edge to {node2_id}"
assert (
has_edge_to_node3
), f"Edge list of node {node1_id} should include an edge to {node3_id}"
# Check if node 2 has a connection with node 1
has_edge_to_node1 = any(
(src == node2_id and tgt == node1_id)
or (src == node1_id and tgt == node2_id)
for src, tgt in node2_edges
)
assert (
has_edge_to_node1
), f"Edge list of node {node2_id} should include a connection with {node1_id}"
print(
"Undirected property verification successful: batch-retrieved node edges include all relevant edges (regardless of direction)"
)
print("\nUndirected property tests completed.")
return True
except Exception as e:
ASCIIColors.red(f"An error occurred during the test: {str(e)}")
return False
async def main():
"""Main function"""
# Display program title
ASCIIColors.cyan("""
╔══════════════════════════════════════════════════════════════╗
║ General Graph Storage Test Program ║
╚══════════════════════════════════════════════════════════════╝
""")
# Check for .env file
if not check_env_file():
return
# Load environment variables
load_dotenv(dotenv_path=".env", override=False)
# Get graph storage type
graph_storage_type = os.getenv("LIGHTRAG_GRAPH_STORAGE", "NetworkXStorage")
ASCIIColors.magenta(
f"\nCurrently configured graph storage type: {graph_storage_type}"
)
ASCIIColors.white(
f"Supported graph storage types: {', '.join(STORAGE_IMPLEMENTATIONS['GRAPH_STORAGE']['implementations'])}"
)
# Initialize storage instance
storage = await initialize_graph_storage()
if not storage:
ASCIIColors.red("Failed to initialize storage instance, exiting test program.")
return
try:
async def reset_storage(test_name: str) -> None:
ASCIIColors.yellow(f"\nCleaning data before {test_name}...")
await storage.drop()
ASCIIColors.green("Data cleanup complete\n")
# Display test options
ASCIIColors.yellow("\nPlease select a test type:")
ASCIIColors.white("1. Basic Test (Node and edge insertion, reading)")
ASCIIColors.white(
"2. Advanced Test (Degree, labels, knowledge graph, deletion, etc.)"
)
ASCIIColors.white(
"3. Batch Operations Test (Batch get node/edge properties, degrees, etc.)"
)
ASCIIColors.white(
"4. Undirected Property Test (Verify undirected properties of the storage)"
)
ASCIIColors.white(
"5. Special Characters Test (Verify handling of single/double quotes, backslashes, etc.)"
)
ASCIIColors.white(
"6. String Escaping Regression Test (Quoted and escaped entity IDs across graph operations)"
)
ASCIIColors.white("7. All Tests")
choice = input("\nEnter your choice (1/2/3/4/5/6/7): ")
# Clean data before running tests
if choice in ["1", "2", "3", "4", "5", "6", "7"]:
await reset_storage("running tests")
if choice == "1":
await test_graph_basic(storage)
elif choice == "2":
await test_graph_advanced(storage)
elif choice == "3":
await test_graph_batch_operations(storage)
elif choice == "4":
await test_graph_undirected_property(storage)
elif choice == "5":
await test_graph_special_characters(storage)
elif choice == "6":
await test_graph_string_escaping_regressions(storage)
elif choice == "7":
ASCIIColors.cyan("\n=== Starting Basic Test ===")
await reset_storage("Basic Test")
basic_result = await test_graph_basic(storage)
if basic_result:
ASCIIColors.cyan("\n=== Starting Advanced Test ===")
await reset_storage("Advanced Test")
advanced_result = await test_graph_advanced(storage)
if advanced_result:
ASCIIColors.cyan("\n=== Starting Batch Operations Test ===")
await reset_storage("Batch Operations Test")
batch_result = await test_graph_batch_operations(storage)
if batch_result:
ASCIIColors.cyan("\n=== Starting Undirected Property Test ===")
await reset_storage("Undirected Property Test")
undirected_result = await test_graph_undirected_property(
storage
)
if undirected_result:
ASCIIColors.cyan(
"\n=== Starting Special Characters Test ==="
)
await reset_storage("Special Characters Test")
special_result = await test_graph_special_characters(
storage
)
if special_result:
ASCIIColors.cyan(
"\n=== Starting String Escaping Regression Test ==="
)
await reset_storage("String Escaping Regression Test")
await test_graph_string_escaping_regressions(storage)
else:
ASCIIColors.red("Invalid choice")
finally:
# Close connection
if storage:
await storage.finalize()
ASCIIColors.green("\nStorage connection closed.")
if __name__ == "__main__":
asyncio.run(main())
|