File size: 28,803 Bytes
59bd45e | 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 | """Unit tests for storage service.
This module tests the StorageService class to ensure proper JSON file
persistence, error handling, and data integrity.
Requirements: 7.1, 7.2, 7.3, 7.4, 7.5, 7.6, 7.7
"""
import json
import pytest
import tempfile
import shutil
from pathlib import Path
from datetime import datetime
from app.storage import StorageService, StorageError
from app.models import (
RecordData,
ParsedData,
MoodData,
InspirationData,
TodoData
)
@pytest.fixture
def temp_data_dir():
"""Create a temporary directory for test data."""
temp_dir = tempfile.mkdtemp()
yield temp_dir
shutil.rmtree(temp_dir)
@pytest.fixture
def storage_service(temp_data_dir):
"""Create a StorageService instance with temporary directory."""
return StorageService(temp_data_dir)
class TestStorageServiceInitialization:
"""Tests for StorageService initialization."""
def test_init_creates_data_directory(self, temp_data_dir):
"""Test that initialization creates the data directory if it doesn't exist."""
# Remove the directory
shutil.rmtree(temp_data_dir)
assert not Path(temp_data_dir).exists()
# Initialize service
service = StorageService(temp_data_dir)
# Verify directory was created
assert Path(temp_data_dir).exists()
assert Path(temp_data_dir).is_dir()
def test_init_sets_file_paths(self, storage_service, temp_data_dir):
"""Test that initialization sets correct file paths."""
assert storage_service.records_file == Path(temp_data_dir) / "records.json"
assert storage_service.moods_file == Path(temp_data_dir) / "moods.json"
assert storage_service.inspirations_file == Path(temp_data_dir) / "inspirations.json"
assert storage_service.todos_file == Path(temp_data_dir) / "todos.json"
class TestFileInitialization:
"""Tests for file initialization logic.
Requirements: 7.5
"""
def test_ensure_file_exists_creates_new_file(self, storage_service):
"""Test that _ensure_file_exists creates a new file with empty array."""
test_file = storage_service.data_dir / "test.json"
assert not test_file.exists()
storage_service._ensure_file_exists(test_file)
assert test_file.exists()
with open(test_file, 'r', encoding='utf-8') as f:
data = json.load(f)
assert data == []
def test_ensure_file_exists_preserves_existing_file(self, storage_service):
"""Test that _ensure_file_exists doesn't overwrite existing files."""
test_file = storage_service.data_dir / "test.json"
existing_data = [{"key": "value"}]
with open(test_file, 'w', encoding='utf-8') as f:
json.dump(existing_data, f)
storage_service._ensure_file_exists(test_file)
with open(test_file, 'r', encoding='utf-8') as f:
data = json.load(f)
assert data == existing_data
class TestSaveRecord:
"""Tests for save_record method.
Requirements: 7.1, 7.7
"""
def test_save_record_creates_file_if_not_exists(self, storage_service):
"""Test that save_record creates records.json if it doesn't exist."""
assert not storage_service.records_file.exists()
record = RecordData(
record_id="test-id",
timestamp="2024-01-01T12:00:00Z",
input_type="text",
original_text="测试文本",
parsed_data=ParsedData()
)
storage_service.save_record(record)
assert storage_service.records_file.exists()
def test_save_record_generates_uuid_if_not_set(self, storage_service):
"""Test that save_record generates a UUID if record_id is not set."""
record = RecordData(
record_id="",
timestamp="2024-01-01T12:00:00Z",
input_type="text",
original_text="测试文本",
parsed_data=ParsedData()
)
record_id = storage_service.save_record(record)
assert record_id
assert len(record_id) == 36 # UUID format
assert record.record_id == record_id
def test_save_record_preserves_existing_id(self, storage_service):
"""Test that save_record preserves existing record_id."""
existing_id = "my-custom-id"
record = RecordData(
record_id=existing_id,
timestamp="2024-01-01T12:00:00Z",
input_type="text",
original_text="测试文本",
parsed_data=ParsedData()
)
record_id = storage_service.save_record(record)
assert record_id == existing_id
def test_save_record_appends_to_existing_records(self, storage_service):
"""Test that save_record appends to existing records."""
# Save first record
record1 = RecordData(
record_id="id-1",
timestamp="2024-01-01T12:00:00Z",
input_type="text",
original_text="文本1",
parsed_data=ParsedData()
)
storage_service.save_record(record1)
# Save second record
record2 = RecordData(
record_id="id-2",
timestamp="2024-01-01T13:00:00Z",
input_type="text",
original_text="文本2",
parsed_data=ParsedData()
)
storage_service.save_record(record2)
# Verify both records exist
with open(storage_service.records_file, 'r', encoding='utf-8') as f:
records = json.load(f)
assert len(records) == 2
assert records[0]["record_id"] == "id-1"
assert records[1]["record_id"] == "id-2"
def test_save_record_with_complete_data(self, storage_service):
"""Test saving a record with complete parsed data."""
record = RecordData(
record_id="complete-id",
timestamp="2024-01-01T12:00:00Z",
input_type="text",
original_text="今天很开心",
parsed_data=ParsedData(
mood=MoodData(type="开心", intensity=8, keywords=["愉快"]),
inspirations=[InspirationData(core_idea="新想法", category="工作")],
todos=[TodoData(task="完成任务")]
)
)
storage_service.save_record(record)
with open(storage_service.records_file, 'r', encoding='utf-8') as f:
records = json.load(f)
assert len(records) == 1
saved_record = records[0]
assert saved_record["record_id"] == "complete-id"
assert saved_record["parsed_data"]["mood"]["type"] == "开心"
assert len(saved_record["parsed_data"]["inspirations"]) == 1
assert len(saved_record["parsed_data"]["todos"]) == 1
class TestAppendMood:
"""Tests for append_mood method.
Requirements: 7.2
"""
def test_append_mood_creates_file_if_not_exists(self, storage_service):
"""Test that append_mood creates moods.json if it doesn't exist."""
assert not storage_service.moods_file.exists()
mood = MoodData(type="开心", intensity=8, keywords=["愉快"])
storage_service.append_mood(mood, "record-1", "2024-01-01T12:00:00Z")
assert storage_service.moods_file.exists()
def test_append_mood_adds_metadata(self, storage_service):
"""Test that append_mood adds record_id and timestamp."""
mood = MoodData(type="开心", intensity=8, keywords=["愉快"])
storage_service.append_mood(mood, "record-1", "2024-01-01T12:00:00Z")
with open(storage_service.moods_file, 'r', encoding='utf-8') as f:
moods = json.load(f)
assert len(moods) == 1
assert moods[0]["record_id"] == "record-1"
assert moods[0]["timestamp"] == "2024-01-01T12:00:00Z"
assert moods[0]["type"] == "开心"
assert moods[0]["intensity"] == 8
def test_append_mood_multiple_moods(self, storage_service):
"""Test appending multiple moods."""
mood1 = MoodData(type="开心", intensity=8)
mood2 = MoodData(type="焦虑", intensity=6)
storage_service.append_mood(mood1, "record-1", "2024-01-01T12:00:00Z")
storage_service.append_mood(mood2, "record-2", "2024-01-01T13:00:00Z")
with open(storage_service.moods_file, 'r', encoding='utf-8') as f:
moods = json.load(f)
assert len(moods) == 2
assert moods[0]["type"] == "开心"
assert moods[1]["type"] == "焦虑"
class TestAppendInspirations:
"""Tests for append_inspirations method.
Requirements: 7.3
"""
def test_append_inspirations_creates_file_if_not_exists(self, storage_service):
"""Test that append_inspirations creates inspirations.json if it doesn't exist."""
assert not storage_service.inspirations_file.exists()
inspirations = [InspirationData(core_idea="想法", category="工作")]
storage_service.append_inspirations(inspirations, "record-1", "2024-01-01T12:00:00Z")
assert storage_service.inspirations_file.exists()
def test_append_inspirations_empty_list(self, storage_service):
"""Test that append_inspirations handles empty list gracefully."""
storage_service.append_inspirations([], "record-1", "2024-01-01T12:00:00Z")
# File should not be created for empty list
assert not storage_service.inspirations_file.exists()
def test_append_inspirations_adds_metadata(self, storage_service):
"""Test that append_inspirations adds record_id and timestamp."""
inspirations = [
InspirationData(core_idea="想法1", tags=["标签1"], category="工作")
]
storage_service.append_inspirations(inspirations, "record-1", "2024-01-01T12:00:00Z")
with open(storage_service.inspirations_file, 'r', encoding='utf-8') as f:
all_inspirations = json.load(f)
assert len(all_inspirations) == 1
assert all_inspirations[0]["record_id"] == "record-1"
assert all_inspirations[0]["timestamp"] == "2024-01-01T12:00:00Z"
assert all_inspirations[0]["core_idea"] == "想法1"
def test_append_inspirations_multiple_items(self, storage_service):
"""Test appending multiple inspirations at once."""
inspirations = [
InspirationData(core_idea="想法1", category="工作"),
InspirationData(core_idea="想法2", category="生活"),
InspirationData(core_idea="想法3", category="学习")
]
storage_service.append_inspirations(inspirations, "record-1", "2024-01-01T12:00:00Z")
with open(storage_service.inspirations_file, 'r', encoding='utf-8') as f:
all_inspirations = json.load(f)
assert len(all_inspirations) == 3
assert all_inspirations[0]["core_idea"] == "想法1"
assert all_inspirations[1]["core_idea"] == "想法2"
assert all_inspirations[2]["core_idea"] == "想法3"
class TestAppendTodos:
"""Tests for append_todos method.
Requirements: 7.4
"""
def test_append_todos_creates_file_if_not_exists(self, storage_service):
"""Test that append_todos creates todos.json if it doesn't exist."""
assert not storage_service.todos_file.exists()
todos = [TodoData(task="任务1")]
storage_service.append_todos(todos, "record-1", "2024-01-01T12:00:00Z")
assert storage_service.todos_file.exists()
def test_append_todos_empty_list(self, storage_service):
"""Test that append_todos handles empty list gracefully."""
storage_service.append_todos([], "record-1", "2024-01-01T12:00:00Z")
# File should not be created for empty list
assert not storage_service.todos_file.exists()
def test_append_todos_adds_metadata(self, storage_service):
"""Test that append_todos adds record_id and timestamp."""
todos = [
TodoData(task="任务1", time="明天", location="办公室")
]
storage_service.append_todos(todos, "record-1", "2024-01-01T12:00:00Z")
with open(storage_service.todos_file, 'r', encoding='utf-8') as f:
all_todos = json.load(f)
assert len(all_todos) == 1
assert all_todos[0]["record_id"] == "record-1"
assert all_todos[0]["timestamp"] == "2024-01-01T12:00:00Z"
assert all_todos[0]["task"] == "任务1"
assert all_todos[0]["status"] == "pending"
def test_append_todos_multiple_items(self, storage_service):
"""Test appending multiple todos at once."""
todos = [
TodoData(task="任务1", time="今天"),
TodoData(task="任务2", location="家里"),
TodoData(task="任务3")
]
storage_service.append_todos(todos, "record-1", "2024-01-01T12:00:00Z")
with open(storage_service.todos_file, 'r', encoding='utf-8') as f:
all_todos = json.load(f)
assert len(all_todos) == 3
assert all_todos[0]["task"] == "任务1"
assert all_todos[1]["task"] == "任务2"
assert all_todos[2]["task"] == "任务3"
class TestErrorHandling:
"""Tests for error handling.
Requirements: 7.6
"""
def test_storage_error_on_write_failure(self, storage_service, monkeypatch):
"""Test that StorageError is raised when file writing fails."""
# Mock the open function to raise an exception
def mock_open_error(*args, **kwargs):
if 'w' in args or kwargs.get('mode') == 'w':
raise IOError("Permission denied")
return open(*args, **kwargs)
monkeypatch.setattr("builtins.open", mock_open_error)
with pytest.raises(StorageError) as exc_info:
storage_service._write_json_file(storage_service.records_file, [])
assert "Failed to write file" in str(exc_info.value)
def test_storage_error_on_read_failure(self, storage_service):
"""Test that StorageError is raised when file reading fails."""
# Create an invalid JSON file
with open(storage_service.records_file, 'w') as f:
f.write("invalid json content")
with pytest.raises(StorageError) as exc_info:
storage_service._read_json_file(storage_service.records_file)
assert "Failed to read file" in str(exc_info.value)
def test_save_record_write_failure(self, storage_service, monkeypatch):
"""Test that save_record raises StorageError when file writing fails."""
record = RecordData(
record_id="test-id",
timestamp="2024-01-01T12:00:00Z",
input_type="text",
original_text="测试文本",
parsed_data=ParsedData()
)
# Mock json.dump to raise an exception
import json
original_dump = json.dump
def mock_dump_error(*args, **kwargs):
raise IOError("Disk full")
monkeypatch.setattr("json.dump", mock_dump_error)
with pytest.raises(StorageError) as exc_info:
storage_service.save_record(record)
# Error can occur during initialization or write
assert "Failed to" in str(exc_info.value)
def test_append_mood_write_failure(self, storage_service, monkeypatch):
"""Test that append_mood raises StorageError when file writing fails."""
mood = MoodData(type="开心", intensity=8, keywords=["愉快"])
# Mock json.dump to raise an exception
import json
def mock_dump_error(*args, **kwargs):
raise IOError("Disk full")
monkeypatch.setattr("json.dump", mock_dump_error)
with pytest.raises(StorageError) as exc_info:
storage_service.append_mood(mood, "record-1", "2024-01-01T12:00:00Z")
# Error can occur during initialization or write
assert "Failed to" in str(exc_info.value)
def test_append_inspirations_write_failure(self, storage_service, monkeypatch):
"""Test that append_inspirations raises StorageError when file writing fails."""
inspirations = [InspirationData(core_idea="想法", category="工作")]
# Mock json.dump to raise an exception
import json
def mock_dump_error(*args, **kwargs):
raise IOError("Disk full")
monkeypatch.setattr("json.dump", mock_dump_error)
with pytest.raises(StorageError) as exc_info:
storage_service.append_inspirations(inspirations, "record-1", "2024-01-01T12:00:00Z")
# Error can occur during initialization or write
assert "Failed to" in str(exc_info.value)
def test_append_todos_write_failure(self, storage_service, monkeypatch):
"""Test that append_todos raises StorageError when file writing fails."""
todos = [TodoData(task="任务1")]
# Mock json.dump to raise an exception
import json
def mock_dump_error(*args, **kwargs):
raise IOError("Disk full")
monkeypatch.setattr("json.dump", mock_dump_error)
with pytest.raises(StorageError) as exc_info:
storage_service.append_todos(todos, "record-1", "2024-01-01T12:00:00Z")
# Error can occur during initialization or write
assert "Failed to" in str(exc_info.value)
def test_ensure_file_exists_creation_failure(self, storage_service, monkeypatch):
"""Test that _ensure_file_exists raises StorageError when file creation fails."""
test_file = storage_service.data_dir / "test.json"
# Mock open to raise an exception
def mock_open_error(*args, **kwargs):
if 'w' in kwargs.get('mode', ''):
raise IOError("Permission denied")
return open(*args, **kwargs)
monkeypatch.setattr("builtins.open", mock_open_error)
with pytest.raises(StorageError) as exc_info:
storage_service._ensure_file_exists(test_file)
assert "Failed to initialize file" in str(exc_info.value)
def test_read_json_file_with_corrupted_data(self, storage_service):
"""Test that _read_json_file raises StorageError with corrupted JSON."""
# Create a file with corrupted JSON
with open(storage_service.records_file, 'w') as f:
f.write('{"incomplete": "json"')
with pytest.raises(StorageError) as exc_info:
storage_service._read_json_file(storage_service.records_file)
assert "Failed to read file" in str(exc_info.value)
def test_read_json_file_with_non_list_data(self, storage_service):
"""Test that _read_json_file can read non-list JSON (returns as-is)."""
# Create a file with valid JSON but not a list
with open(storage_service.records_file, 'w') as f:
json.dump({"key": "value"}, f)
# This should not raise an error - it returns the data as-is
result = storage_service._read_json_file(storage_service.records_file)
assert result == {"key": "value"}
class TestConcurrentWriteSafety:
"""Tests for concurrent write safety.
These tests document the current behavior of the storage service under
concurrent access. The current implementation does NOT provide thread-safe
file operations, so these tests verify that race conditions can occur.
In a production system, you would need to add file locking or use a
proper database to ensure thread safety.
Requirements: 7.6
"""
def test_concurrent_save_record_race_condition(self, storage_service):
"""Test that demonstrates race conditions can occur with concurrent save_record calls.
This test documents that the current implementation is NOT thread-safe.
Multiple threads writing simultaneously can cause data corruption or loss.
"""
import threading
num_threads = 5
records_per_thread = 3
threads = []
errors = []
successful_saves = []
lock = threading.Lock()
def save_records(thread_id):
try:
for i in range(records_per_thread):
record = RecordData(
record_id="", # Force UUID generation
timestamp=f"2024-01-01T{thread_id:02d}:{i:02d}:00Z",
input_type="text",
original_text=f"Thread {thread_id} Record {i}",
parsed_data=ParsedData()
)
record_id = storage_service.save_record(record)
with lock:
successful_saves.append(record_id)
except Exception as e:
with lock:
errors.append(e)
# Start all threads
for thread_id in range(num_threads):
thread = threading.Thread(target=save_records, args=(thread_id,))
threads.append(thread)
thread.start()
# Wait for all threads to complete
for thread in threads:
thread.join()
# Document the behavior: either errors occur or some data may be lost
# This is expected with the current non-thread-safe implementation
if errors:
# Race conditions caused errors - this is expected
assert all(isinstance(e, StorageError) for e in errors), \
"All errors should be StorageError instances"
else:
# No errors, but verify data integrity
try:
with open(storage_service.records_file, 'r', encoding='utf-8') as f:
records = json.load(f)
# Due to race conditions, we may have lost some records
# Just verify the file is still valid JSON and contains some records
assert isinstance(records, list), "Records file should contain a list"
assert len(records) > 0, "At least some records should be saved"
except json.JSONDecodeError:
# File may be corrupted due to concurrent writes
pytest.skip("File corrupted due to concurrent writes (expected behavior)")
def test_sequential_writes_are_safe(self, storage_service):
"""Test that sequential (non-concurrent) writes work correctly.
This test verifies that when operations are performed sequentially,
all data is saved correctly without corruption.
"""
num_records = 20
saved_ids = []
# Save records sequentially
for i in range(num_records):
record = RecordData(
record_id="",
timestamp=f"2024-01-01T00:{i:02d}:00Z",
input_type="text",
original_text=f"Record {i}",
parsed_data=ParsedData()
)
record_id = storage_service.save_record(record)
saved_ids.append(record_id)
# Verify all records were saved
with open(storage_service.records_file, 'r', encoding='utf-8') as f:
records = json.load(f)
assert len(records) == num_records, \
f"Expected {num_records} records, found {len(records)}"
# Verify all IDs are unique
assert len(set(saved_ids)) == num_records, \
"All record IDs should be unique"
# Verify all saved IDs are in the file
file_ids = [r["record_id"] for r in records]
for saved_id in saved_ids:
assert saved_id in file_ids, \
f"Record {saved_id} should be in the file"
def test_concurrent_writes_with_different_files(self, storage_service):
"""Test that concurrent writes to DIFFERENT files work better.
When threads write to different files (records vs moods vs inspirations vs todos),
there's less chance of corruption since they don't share the same file.
"""
import threading
errors = []
lock = threading.Lock()
def save_record():
try:
record = RecordData(
record_id="",
timestamp="2024-01-01T00:00:00Z",
input_type="text",
original_text="Test record",
parsed_data=ParsedData()
)
storage_service.save_record(record)
except Exception as e:
with lock:
errors.append(("record", e))
def save_mood():
try:
mood = MoodData(type="开心", intensity=8)
storage_service.append_mood(mood, "test-id", "2024-01-01T00:00:00Z")
except Exception as e:
with lock:
errors.append(("mood", e))
def save_inspiration():
try:
inspirations = [InspirationData(core_idea="想法", category="工作")]
storage_service.append_inspirations(inspirations, "test-id", "2024-01-01T00:00:00Z")
except Exception as e:
with lock:
errors.append(("inspiration", e))
def save_todo():
try:
todos = [TodoData(task="任务")]
storage_service.append_todos(todos, "test-id", "2024-01-01T00:00:00Z")
except Exception as e:
with lock:
errors.append(("todo", e))
# Start threads writing to different files
threads = [
threading.Thread(target=save_record),
threading.Thread(target=save_mood),
threading.Thread(target=save_inspiration),
threading.Thread(target=save_todo)
]
for thread in threads:
thread.start()
for thread in threads:
thread.join()
# When writing to different files, operations should succeed
# (though there's still a small chance of issues during file initialization)
if errors:
# Document which operations failed
error_types = [e[0] for e in errors]
pytest.skip(f"Some operations failed due to race conditions: {error_types}")
# Verify all files were created
assert storage_service.records_file.exists()
assert storage_service.moods_file.exists()
assert storage_service.inspirations_file.exists()
assert storage_service.todos_file.exists()
def test_error_handling_preserves_file_integrity(self, storage_service):
"""Test that when errors occur, existing file data is not corrupted.
This verifies that even if a write operation fails, the existing
data in the file remains intact and readable.
"""
# Save some initial data
record1 = RecordData(
record_id="initial-id",
timestamp="2024-01-01T00:00:00Z",
input_type="text",
original_text="Initial record",
parsed_data=ParsedData()
)
storage_service.save_record(record1)
# Verify initial data is saved
with open(storage_service.records_file, 'r', encoding='utf-8') as f:
initial_records = json.load(f)
assert len(initial_records) == 1
# Now try to save another record (this should succeed)
record2 = RecordData(
record_id="second-id",
timestamp="2024-01-01T01:00:00Z",
input_type="text",
original_text="Second record",
parsed_data=ParsedData()
)
storage_service.save_record(record2)
# Verify both records are saved
with open(storage_service.records_file, 'r', encoding='utf-8') as f:
final_records = json.load(f)
assert len(final_records) == 2
assert final_records[0]["record_id"] == "initial-id"
assert final_records[1]["record_id"] == "second-id"
|