Spaces:
Build error
Build error
File size: 30,978 Bytes
c1ef3d8 | 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 | """Comprehensive integration tests for SQLiteGraphStore.
Tests verify:
- Entity CRUD operations with persistence
- Relationship CRUD operations with CASCADE delete
- Case-insensitive name lookups
- BFS subgraph traversal
- Shortest path finding
- User data isolation
- Memory bounding via page cache
- Database file persistence across instances
"""
from __future__ import annotations
import os
import tempfile
import pytest
from headroom.memory.adapters.graph_models import (
Entity,
Relationship,
RelationshipDirection,
)
from headroom.memory.adapters.sqlite_graph import SQLiteGraphStore
class TestSQLiteGraphStoreEntityOperations:
"""Tests for entity CRUD operations."""
@pytest.fixture
def store(self):
"""Create a temporary SQLite graph store."""
with tempfile.NamedTemporaryFile(suffix=".db", delete=False) as f:
db_path = f.name
store = SQLiteGraphStore(db_path=db_path)
yield store
# Cleanup
if os.path.exists(db_path):
os.unlink(db_path)
@pytest.mark.asyncio
async def test_add_and_get_entity(self, store):
"""Test adding and retrieving an entity."""
entity = Entity(
user_id="user1",
name="Project Alpha",
entity_type="project",
description="A test project",
properties={"priority": "high"},
)
await store.add_entity(entity)
retrieved = await store.get_entity(entity.id)
assert retrieved is not None
assert retrieved.id == entity.id
assert retrieved.user_id == "user1"
assert retrieved.name == "Project Alpha"
assert retrieved.entity_type == "project"
assert retrieved.description == "A test project"
assert retrieved.properties == {"priority": "high"}
@pytest.mark.asyncio
async def test_get_entity_not_found(self, store):
"""Test retrieving a non-existent entity."""
result = await store.get_entity("nonexistent-id")
assert result is None
@pytest.mark.asyncio
async def test_get_entity_by_name_case_insensitive(self, store):
"""Test case-insensitive entity lookup by name."""
entity = Entity(
user_id="user1",
name="MyEntity",
entity_type="test",
)
await store.add_entity(entity)
# All these should find the same entity
assert (await store.get_entity_by_name("user1", "MyEntity")) is not None
assert (await store.get_entity_by_name("user1", "myentity")) is not None
assert (await store.get_entity_by_name("user1", "MYENTITY")) is not None
assert (await store.get_entity_by_name("user1", "mYeNtItY")) is not None
@pytest.mark.asyncio
async def test_get_entity_by_name_user_isolation(self, store):
"""Test that entity lookup is scoped to user."""
entity1 = Entity(user_id="user1", name="SharedName", entity_type="test")
entity2 = Entity(user_id="user2", name="SharedName", entity_type="test")
await store.add_entity(entity1)
await store.add_entity(entity2)
result1 = await store.get_entity_by_name("user1", "SharedName")
result2 = await store.get_entity_by_name("user2", "SharedName")
assert result1 is not None
assert result2 is not None
assert result1.id != result2.id
assert result1.user_id == "user1"
assert result2.user_id == "user2"
@pytest.mark.asyncio
async def test_update_entity(self, store):
"""Test updating an existing entity."""
entity = Entity(
user_id="user1",
name="Original Name",
entity_type="test",
)
await store.add_entity(entity)
# Update the entity
entity.name = "Updated Name"
entity.entity_type = "updated_type"
entity.properties = {"new_key": "new_value"}
await store.add_entity(entity)
retrieved = await store.get_entity(entity.id)
assert retrieved is not None
assert retrieved.name == "Updated Name"
assert retrieved.entity_type == "updated_type"
assert retrieved.properties == {"new_key": "new_value"}
@pytest.mark.asyncio
async def test_delete_entity(self, store):
"""Test deleting an entity."""
entity = Entity(user_id="user1", name="ToDelete", entity_type="test")
await store.add_entity(entity)
assert await store.get_entity(entity.id) is not None
result = await store.delete_entity(entity.id)
assert result is True
assert await store.get_entity(entity.id) is None
@pytest.mark.asyncio
async def test_delete_entity_not_found(self, store):
"""Test deleting a non-existent entity."""
result = await store.delete_entity("nonexistent-id")
assert result is False
class TestSQLiteGraphStoreRelationshipOperations:
"""Tests for relationship CRUD operations."""
@pytest.fixture
async def store_with_entities(self):
"""Create a store with some entities."""
with tempfile.NamedTemporaryFile(suffix=".db", delete=False) as f:
db_path = f.name
store = SQLiteGraphStore(db_path=db_path)
# Create entities
alice = Entity(user_id="user1", name="Alice", entity_type="person")
bob = Entity(user_id="user1", name="Bob", entity_type="person")
charlie = Entity(user_id="user1", name="Charlie", entity_type="person")
await store.add_entity(alice)
await store.add_entity(bob)
await store.add_entity(charlie)
yield store, alice, bob, charlie
# Cleanup
if os.path.exists(db_path):
os.unlink(db_path)
@pytest.mark.asyncio
async def test_add_and_get_relationship(self, store_with_entities):
"""Test adding and retrieving a relationship."""
store, alice, bob, _ = store_with_entities
rel = Relationship(
user_id="user1",
source_id=alice.id,
target_id=bob.id,
relation_type="knows",
weight=0.9,
properties={"since": "2020"},
)
await store.add_relationship(rel)
# Get outgoing relationships from Alice
rels = await store.get_relationships(alice.id, RelationshipDirection.OUTGOING)
assert len(rels) == 1
assert rels[0].id == rel.id
assert rels[0].source_id == alice.id
assert rels[0].target_id == bob.id
assert rels[0].relation_type == "knows"
assert rels[0].weight == 0.9
assert rels[0].properties == {"since": "2020"}
@pytest.mark.asyncio
async def test_get_relationships_by_direction(self, store_with_entities):
"""Test getting relationships by direction."""
store, alice, bob, charlie = store_with_entities
# Alice -> Bob
rel1 = Relationship(
user_id="user1",
source_id=alice.id,
target_id=bob.id,
relation_type="knows",
)
# Charlie -> Alice
rel2 = Relationship(
user_id="user1",
source_id=charlie.id,
target_id=alice.id,
relation_type="follows",
)
await store.add_relationship(rel1)
await store.add_relationship(rel2)
# Outgoing from Alice
outgoing = await store.get_relationships(alice.id, RelationshipDirection.OUTGOING)
assert len(outgoing) == 1
assert outgoing[0].target_id == bob.id
# Incoming to Alice
incoming = await store.get_relationships(alice.id, RelationshipDirection.INCOMING)
assert len(incoming) == 1
assert incoming[0].source_id == charlie.id
# Both directions
both = await store.get_relationships(alice.id, RelationshipDirection.BOTH)
assert len(both) == 2
@pytest.mark.asyncio
async def test_get_relationships_filter_by_type(self, store_with_entities):
"""Test filtering relationships by type."""
store, alice, bob, charlie = store_with_entities
rel1 = Relationship(
user_id="user1",
source_id=alice.id,
target_id=bob.id,
relation_type="knows",
)
rel2 = Relationship(
user_id="user1",
source_id=alice.id,
target_id=charlie.id,
relation_type="manages",
)
await store.add_relationship(rel1)
await store.add_relationship(rel2)
# Filter by type
knows_rels = await store.get_relationships(
alice.id, RelationshipDirection.OUTGOING, relation_type="knows"
)
assert len(knows_rels) == 1
assert knows_rels[0].target_id == bob.id
manages_rels = await store.get_relationships(
alice.id, RelationshipDirection.OUTGOING, relation_type="manages"
)
assert len(manages_rels) == 1
assert manages_rels[0].target_id == charlie.id
@pytest.mark.asyncio
async def test_delete_relationship(self, store_with_entities):
"""Test deleting a relationship."""
store, alice, bob, _ = store_with_entities
rel = Relationship(
user_id="user1",
source_id=alice.id,
target_id=bob.id,
relation_type="knows",
)
await store.add_relationship(rel)
rels = await store.get_relationships(alice.id, RelationshipDirection.OUTGOING)
assert len(rels) == 1
result = await store.delete_relationship(rel.id)
assert result is True
rels = await store.get_relationships(alice.id, RelationshipDirection.OUTGOING)
assert len(rels) == 0
@pytest.mark.asyncio
async def test_cascade_delete_relationships(self, store_with_entities):
"""Test that deleting an entity cascades to its relationships."""
store, alice, bob, charlie = store_with_entities
# Create relationships
rel1 = Relationship(
user_id="user1",
source_id=alice.id,
target_id=bob.id,
relation_type="knows",
)
rel2 = Relationship(
user_id="user1",
source_id=charlie.id,
target_id=alice.id,
relation_type="follows",
)
await store.add_relationship(rel1)
await store.add_relationship(rel2)
# Delete Alice - should cascade delete both relationships
await store.delete_entity(alice.id)
# Both relationships should be gone
bob_rels = await store.get_relationships(bob.id, RelationshipDirection.BOTH)
assert len(bob_rels) == 0
charlie_rels = await store.get_relationships(charlie.id, RelationshipDirection.BOTH)
assert len(charlie_rels) == 0
class TestSQLiteGraphStoreTraversal:
"""Tests for graph traversal operations."""
@pytest.fixture
async def store_with_graph(self):
"""Create a store with a connected graph.
Graph structure:
A -> B -> D
| |
v v
C -> E
"""
with tempfile.NamedTemporaryFile(suffix=".db", delete=False) as f:
db_path = f.name
store = SQLiteGraphStore(db_path=db_path)
# Create entities
a = Entity(user_id="user1", name="A", entity_type="node")
b = Entity(user_id="user1", name="B", entity_type="node")
c = Entity(user_id="user1", name="C", entity_type="node")
d = Entity(user_id="user1", name="D", entity_type="node")
e = Entity(user_id="user1", name="E", entity_type="node")
for entity in [a, b, c, d, e]:
await store.add_entity(entity)
# Create relationships: A->B, A->C, B->D, B->E, C->E
rels = [
Relationship(user_id="user1", source_id=a.id, target_id=b.id, relation_type="edge"),
Relationship(user_id="user1", source_id=a.id, target_id=c.id, relation_type="edge"),
Relationship(user_id="user1", source_id=b.id, target_id=d.id, relation_type="edge"),
Relationship(user_id="user1", source_id=b.id, target_id=e.id, relation_type="edge"),
Relationship(user_id="user1", source_id=c.id, target_id=e.id, relation_type="edge"),
]
for rel in rels:
await store.add_relationship(rel)
yield store, {"A": a, "B": b, "C": c, "D": d, "E": e}
# Cleanup
if os.path.exists(db_path):
os.unlink(db_path)
@pytest.mark.asyncio
async def test_query_subgraph_single_hop(self, store_with_graph):
"""Test querying subgraph with single hop."""
store, nodes = store_with_graph
subgraph = await store.query_subgraph(
[nodes["A"].id], max_hops=1, direction=RelationshipDirection.OUTGOING
)
entity_names = {e.name for e in subgraph.entities}
assert entity_names == {"A", "B", "C"}
assert len(subgraph.relationships) == 2
@pytest.mark.asyncio
async def test_query_subgraph_two_hops(self, store_with_graph):
"""Test querying subgraph with two hops."""
store, nodes = store_with_graph
subgraph = await store.query_subgraph(
[nodes["A"].id], max_hops=2, direction=RelationshipDirection.OUTGOING
)
entity_names = {e.name for e in subgraph.entities}
assert entity_names == {"A", "B", "C", "D", "E"}
assert len(subgraph.relationships) == 5
@pytest.mark.asyncio
async def test_query_subgraph_incoming(self, store_with_graph):
"""Test querying subgraph with incoming direction."""
store, nodes = store_with_graph
subgraph = await store.query_subgraph(
[nodes["E"].id], max_hops=2, direction=RelationshipDirection.INCOMING
)
entity_names = {e.name for e in subgraph.entities}
# E <- B <- A, E <- C <- A
assert "E" in entity_names
assert "B" in entity_names
assert "C" in entity_names
assert "A" in entity_names
@pytest.mark.asyncio
async def test_find_path_direct(self, store_with_graph):
"""Test finding a direct path."""
store, nodes = store_with_graph
path = await store.find_path(nodes["A"].id, nodes["B"].id)
assert path is not None
assert len(path) == 2
assert path[0] == nodes["A"].id
assert path[1] == nodes["B"].id
@pytest.mark.asyncio
async def test_find_path_multi_hop(self, store_with_graph):
"""Test finding a multi-hop path."""
store, nodes = store_with_graph
path = await store.find_path(nodes["A"].id, nodes["D"].id)
assert path is not None
assert len(path) == 3 # A -> B -> D
assert path[0] == nodes["A"].id
assert path[-1] == nodes["D"].id
@pytest.mark.asyncio
async def test_find_path_not_found(self, store_with_graph):
"""Test that None is returned when no path exists."""
store, nodes = store_with_graph
# D has no outgoing edges, so no path from D to A
path = await store.find_path(
nodes["D"].id, nodes["A"].id, direction=RelationshipDirection.OUTGOING
)
assert path is None
@pytest.mark.asyncio
async def test_find_path_self(self, store_with_graph):
"""Test finding a path to self."""
store, nodes = store_with_graph
path = await store.find_path(nodes["A"].id, nodes["A"].id)
assert path is not None
assert path == [nodes["A"].id]
class TestSQLiteGraphStoreUserManagement:
"""Tests for user data management."""
@pytest.fixture
def store(self):
"""Create a temporary SQLite graph store."""
with tempfile.NamedTemporaryFile(suffix=".db", delete=False) as f:
db_path = f.name
store = SQLiteGraphStore(db_path=db_path)
yield store
if os.path.exists(db_path):
os.unlink(db_path)
@pytest.mark.asyncio
async def test_get_entities_for_user(self, store):
"""Test getting all entities for a specific user."""
# Create entities for two users
for i in range(3):
await store.add_entity(
Entity(user_id="user1", name=f"User1Entity{i}", entity_type="test")
)
for i in range(2):
await store.add_entity(
Entity(user_id="user2", name=f"User2Entity{i}", entity_type="test")
)
user1_entities = await store.get_entities_for_user("user1")
user2_entities = await store.get_entities_for_user("user2")
assert len(user1_entities) == 3
assert len(user2_entities) == 2
assert all(e.user_id == "user1" for e in user1_entities)
assert all(e.user_id == "user2" for e in user2_entities)
@pytest.mark.asyncio
async def test_clear_user(self, store):
"""Test clearing all data for a user."""
# Create entities and relationships for two users
alice = Entity(user_id="user1", name="Alice", entity_type="person")
bob = Entity(user_id="user1", name="Bob", entity_type="person")
carol = Entity(user_id="user2", name="Carol", entity_type="person")
await store.add_entity(alice)
await store.add_entity(bob)
await store.add_entity(carol)
rel = Relationship(
user_id="user1",
source_id=alice.id,
target_id=bob.id,
relation_type="knows",
)
await store.add_relationship(rel)
# Clear user1
entities_deleted, rels_deleted = await store.clear_user("user1")
assert entities_deleted == 2
assert rels_deleted == 1
# User2 data should still exist
assert await store.get_entity(carol.id) is not None
assert store.entity_count == 1
@pytest.mark.asyncio
async def test_clear_all(self, store):
"""Test clearing all data."""
# Add some data
for i in range(5):
await store.add_entity(
Entity(user_id=f"user{i}", name=f"Entity{i}", entity_type="test")
)
assert store.entity_count == 5
await store.clear()
assert store.entity_count == 0
assert store.relationship_count == 0
class TestSQLiteGraphStorePersistence:
"""Tests for data persistence across store instances."""
@pytest.mark.asyncio
async def test_data_persists_across_instances(self):
"""Test that data survives store restart."""
with tempfile.NamedTemporaryFile(suffix=".db", delete=False) as f:
db_path = f.name
try:
# Create store and add data
store1 = SQLiteGraphStore(db_path=db_path)
entity = Entity(user_id="user1", name="Persistent", entity_type="test")
await store1.add_entity(entity)
entity_id = entity.id
# Create new store instance pointing to same database
store2 = SQLiteGraphStore(db_path=db_path)
# Data should be there
retrieved = await store2.get_entity(entity_id)
assert retrieved is not None
assert retrieved.name == "Persistent"
finally:
if os.path.exists(db_path):
os.unlink(db_path)
@pytest.mark.asyncio
async def test_relationships_persist(self):
"""Test that relationships persist across instances."""
with tempfile.NamedTemporaryFile(suffix=".db", delete=False) as f:
db_path = f.name
try:
store1 = SQLiteGraphStore(db_path=db_path)
alice = Entity(user_id="user1", name="Alice", entity_type="person")
bob = Entity(user_id="user1", name="Bob", entity_type="person")
await store1.add_entity(alice)
await store1.add_entity(bob)
rel = Relationship(
user_id="user1",
source_id=alice.id,
target_id=bob.id,
relation_type="knows",
)
await store1.add_relationship(rel)
# New instance
store2 = SQLiteGraphStore(db_path=db_path)
rels = await store2.get_relationships(alice.id, RelationshipDirection.OUTGOING)
assert len(rels) == 1
assert rels[0].target_id == bob.id
finally:
if os.path.exists(db_path):
os.unlink(db_path)
class TestSQLiteGraphStoreMemoryStats:
"""Tests for memory statistics and bounding."""
@pytest.fixture
def store(self):
"""Create a temporary SQLite graph store."""
with tempfile.NamedTemporaryFile(suffix=".db", delete=False) as f:
db_path = f.name
store = SQLiteGraphStore(db_path=db_path, page_cache_size_kb=4096)
yield store
if os.path.exists(db_path):
os.unlink(db_path)
@pytest.mark.asyncio
async def test_stats(self, store):
"""Test getting store statistics."""
# Add some data
for i in range(10):
await store.add_entity(Entity(user_id="user1", name=f"Entity{i}", entity_type="test"))
stats = store.stats()
assert stats["entity_count"] == 10
assert stats["relationship_count"] == 0
assert stats["users_count"] == 1
assert stats["page_cache_size_kb"] == 4096
assert "db_path" in stats
assert stats["db_size_bytes"] > 0
@pytest.mark.asyncio
async def test_memory_stats(self, store):
"""Test memory statistics for MemoryTracker."""
# Add some data
for i in range(5):
await store.add_entity(Entity(user_id="user1", name=f"Entity{i}", entity_type="test"))
stats = store.get_memory_stats()
assert stats.name == "sqlite_graph_store"
assert stats.entry_count == 5
assert stats.size_bytes > 0
# Budget should be the page cache size
assert stats.budget_bytes == 4096 * 1024
@pytest.mark.asyncio
async def test_vacuum(self, store):
"""Test vacuuming the database."""
# Add and delete data
entities = []
for i in range(100):
e = Entity(user_id="user1", name=f"Entity{i}", entity_type="test")
await store.add_entity(e)
entities.append(e)
# Delete all
for e in entities:
await store.delete_entity(e.id)
# Get size before vacuum
stats_before = store.stats()
# Vacuum
store.vacuum()
# Size should be smaller or same after vacuum
stats_after = store.stats()
assert stats_after["db_size_bytes"] <= stats_before["db_size_bytes"]
class TestSQLiteGraphStoreEdgeCases:
"""Tests for edge cases and error handling."""
@pytest.fixture
def store(self):
"""Create a temporary SQLite graph store."""
with tempfile.NamedTemporaryFile(suffix=".db", delete=False) as f:
db_path = f.name
store = SQLiteGraphStore(db_path=db_path)
yield store
if os.path.exists(db_path):
os.unlink(db_path)
@pytest.mark.asyncio
async def test_empty_subgraph_query(self, store):
"""Test querying subgraph with no entities."""
subgraph = await store.query_subgraph(["nonexistent-id"])
assert len(subgraph.entities) == 0
assert len(subgraph.relationships) == 0
@pytest.mark.asyncio
async def test_entity_with_special_characters(self, store):
"""Test entity names with special characters."""
entity = Entity(
user_id="user1",
name='Test\'s "Entity" (Special & <More>)',
entity_type="test",
description="Description with 'quotes' and \"more\"",
properties={"key": "value with 'quotes'"},
)
await store.add_entity(entity)
retrieved = await store.get_entity(entity.id)
assert retrieved is not None
assert retrieved.name == entity.name
assert retrieved.description == entity.description
assert retrieved.properties == entity.properties
@pytest.mark.asyncio
async def test_entity_with_unicode(self, store):
"""Test entity names with unicode characters."""
entity = Entity(
user_id="user1",
name="Test 你好 🚀 Ñoño",
entity_type="test",
)
await store.add_entity(entity)
retrieved = await store.get_entity(entity.id)
assert retrieved is not None
assert retrieved.name == "Test 你好 🚀 Ñoño"
@pytest.mark.asyncio
async def test_large_properties(self, store):
"""Test entities with large properties."""
large_props = {f"key_{i}": f"value_{i}" * 100 for i in range(100)}
entity = Entity(
user_id="user1",
name="LargeEntity",
entity_type="test",
properties=large_props,
)
await store.add_entity(entity)
retrieved = await store.get_entity(entity.id)
assert retrieved is not None
assert retrieved.properties == large_props
@pytest.mark.asyncio
async def test_concurrent_access(self, store):
"""Test basic concurrent access (thread-safe pattern)."""
import asyncio
async def add_entity(i: int):
e = Entity(user_id="user1", name=f"Concurrent{i}", entity_type="test")
await store.add_entity(e)
return e.id
# Add entities concurrently
ids = await asyncio.gather(*[add_entity(i) for i in range(20)])
# All should exist
assert len(ids) == 20
assert store.entity_count == 20
class TestSQLiteGraphStoreMemoryTrackerIntegration:
"""Tests for MemoryTracker integration."""
@pytest.fixture
def store(self):
"""Create a temporary SQLite graph store."""
with tempfile.NamedTemporaryFile(suffix=".db", delete=False) as f:
db_path = f.name
store = SQLiteGraphStore(db_path=db_path, page_cache_size_kb=4096)
yield store
if os.path.exists(db_path):
os.unlink(db_path)
@pytest.mark.asyncio
async def test_memory_tracker_registration(self, store):
"""Test registering SQLiteGraphStore with MemoryTracker."""
from headroom.memory.tracker import MemoryTracker
tracker = MemoryTracker.get()
# Unregister if already registered from previous test
tracker.unregister("sqlite_graph_test")
# Register the store
tracker.register("sqlite_graph_test", store.get_memory_stats)
try:
# Add some data
for i in range(10):
await store.add_entity(
Entity(user_id="user1", name=f"Entity{i}", entity_type="test")
)
# Get report
report = tracker.get_report()
# Find our component in the report's components dict
assert "sqlite_graph_test" in report.components
graph_stats = report.components["sqlite_graph_test"]
assert graph_stats is not None
assert graph_stats.entry_count == 10
assert graph_stats.budget_bytes == 4096 * 1024 # 4MB cache
finally:
tracker.unregister("sqlite_graph_test")
@pytest.mark.asyncio
async def test_memory_stats_tracks_growth(self, store):
"""Test that memory stats track entity/relationship growth."""
stats_before = store.get_memory_stats()
assert stats_before.entry_count == 0
# Add entities
entities = []
for i in range(5):
e = Entity(user_id="user1", name=f"Entity{i}", entity_type="test")
await store.add_entity(e)
entities.append(e)
stats_after_entities = store.get_memory_stats()
assert stats_after_entities.entry_count == 5
# Add relationships
for i in range(4):
rel = Relationship(
user_id="user1",
source_id=entities[i].id,
target_id=entities[i + 1].id,
relation_type="connected",
)
await store.add_relationship(rel)
stats_after_rels = store.get_memory_stats()
assert stats_after_rels.entry_count == 9 # 5 entities + 4 relationships
@pytest.mark.asyncio
async def test_memory_stats_bounded_by_cache(self, store):
"""Test that reported size is bounded by cache size."""
# Add many entities
for i in range(100):
await store.add_entity(Entity(user_id="user1", name=f"Entity{i}", entity_type="test"))
stats = store.get_memory_stats()
# Size should be bounded by cache + overhead
# Cache is 4MB, overhead should be small
assert stats.size_bytes < 5 * 1024 * 1024 # Less than 5MB
assert stats.budget_bytes == 4096 * 1024 # Exactly 4MB
@pytest.mark.asyncio
async def test_memory_report_includes_sqlite_graph(self, store):
"""Test that MemoryTracker report includes SQLiteGraphStore stats."""
from headroom.memory.tracker import MemoryTracker
tracker = MemoryTracker.get()
# Unregister if already registered from previous test
tracker.unregister("graph_report_test")
tracker.register("graph_report_test", store.get_memory_stats)
try:
# Add data
await store.add_entity(Entity(user_id="user1", name="Test", entity_type="test"))
# Get full report dict
report = tracker.get_report()
report_dict = report.to_dict()
# Verify structure
assert "components" in report_dict
assert len(report_dict["components"]) > 0
# Find our component (components is a dict in to_dict output)
assert "graph_report_test" in report_dict["components"]
comp = report_dict["components"]["graph_report_test"]
assert comp["name"] == "sqlite_graph_store"
assert comp["entry_count"] == 1
assert "size_bytes" in comp
assert "budget_bytes" in comp
finally:
tracker.unregister("graph_report_test")
@pytest.mark.asyncio
async def test_memory_stats_after_delete(self, store):
"""Test that memory stats decrease after deletion."""
# Add entities
entities = []
for i in range(10):
e = Entity(user_id="user1", name=f"Entity{i}", entity_type="test")
await store.add_entity(e)
entities.append(e)
stats_before_delete = store.get_memory_stats()
assert stats_before_delete.entry_count == 10
# Delete half
for e in entities[:5]:
await store.delete_entity(e.id)
stats_after_delete = store.get_memory_stats()
assert stats_after_delete.entry_count == 5
|