way better plugin hooks system wip

This commit is contained in:
Nick Sweeting
2025-12-28 03:39:59 -08:00
parent a38624a4dd
commit 50e527ec65
156 changed files with 10275 additions and 7149 deletions

View File

@@ -2,12 +2,16 @@ import sqlite3
from .fixtures import *
def test_update_status_invalid(tmp_path, process, disable_extractors_dict):
def test_update_imports_orphaned_snapshots(tmp_path, process, disable_extractors_dict):
"""Test that archivebox update imports orphaned snapshot directories."""
# Add a snapshot
subprocess.run(['archivebox', 'add', 'https://example.com'], capture_output=True, env=disable_extractors_dict)
assert list((tmp_path / "archive").iterdir()) != []
a_process = subprocess.run(['archivebox', 'remove', 'https://example.com', '--yes'], capture_output=True)
# Remove from DB but leave directory intact
subprocess.run(['archivebox', 'remove', 'https://example.com', '--yes'], capture_output=True)
# Verify snapshot removed from DB
conn = sqlite3.connect(str(tmp_path / "index.sqlite3"))
c = conn.cursor()
link = c.execute("SELECT * FROM core_snapshot").fetchone()
@@ -16,8 +20,10 @@ def test_update_status_invalid(tmp_path, process, disable_extractors_dict):
assert link is None
update_process = subprocess.run(['archivebox', 'update', '--status=invalid'], capture_output=True, env=disable_extractors_dict)
# Run update without filters - should scan filesystem and import orphaned directory
update_process = subprocess.run(['archivebox', 'update'], capture_output=True, env=disable_extractors_dict)
# Verify snapshot was re-imported from orphaned directory
conn = sqlite3.connect(str(tmp_path / "index.sqlite3"))
c = conn.cursor()
url = c.execute("SELECT url FROM core_snapshot").fetchone()[0]