Files
wehub-resource-sync 7a0da7932b
OSV-Scanner (Scheduled) / scan-scheduled (push) Failing after 0s
Create Release / test-gate (push) Has been cancelled
Create Release / release-gate (push) Has been cancelled
Create Release / ci-gate (push) Has been cancelled
Create Release / version-check (push) Has been cancelled
Create Release / e2e-test-gate (push) Has been cancelled
Create Release / responsive-test-gate (push) Has been cancelled
Create Release / compat-test-gate (push) Has been cancelled
Create Release / compose-integration-gate (push) Has been cancelled
Create Release / vulture-gate (push) Has been cancelled
Create Release / build (push) Has been cancelled
Create Release / provenance (push) Has been cancelled
Create Release / prerelease-docker (push) Has been cancelled
Create Release / publish-docker (push) Has been cancelled
Create Release / create-release (push) Has been cancelled
Create Release / cleanup-changelog (push) Has been cancelled
Create Release / trigger-pypi (push) Has been cancelled
Create Release / monitor-pypi (push) Has been cancelled
Create Release / Clean up orphan prerelease tags and signatures (push) Has been cancelled
Docker Tests (Consolidated) / UI Tests (Puppeteer) [research-form] (push) Has been cancelled
Docker Tests (Consolidated) / UI Tests (Puppeteer) [research-metrics] (push) Has been cancelled
Docker Tests (Consolidated) / UI Tests (Puppeteer) [research-workflow] (push) Has been cancelled
Docker Tests (Consolidated) / UI Tests (Puppeteer) [settings-core] (push) Has been cancelled
CodeQL Advanced / Analyze (javascript-typescript) (push) Has been cancelled
Docker Tests (Consolidated) / UI Tests (Puppeteer) [history-news] (push) Has been cancelled
Docker Tests (Consolidated) / UI Tests (Puppeteer) [library] (push) Has been cancelled
Docker Tests (Consolidated) / UI Tests (Puppeteer) [link-analytics] (push) Has been cancelled
Docker Tests (Consolidated) / UI Tests (Puppeteer) [chat-core] (push) Has been cancelled
Docker Tests (Consolidated) / UI Tests (Puppeteer) [chat-lifecycle] (push) Has been cancelled
Docker Tests (Consolidated) / UI Tests (Puppeteer) [error-benchmark] (push) Has been cancelled
Docker Tests (Consolidated) / UI Tests (Puppeteer) [settings-pages] (push) Has been cancelled
Docker Tests (Consolidated) / UI Tests (Puppeteer) (push) Has been cancelled
Docker Tests (Consolidated) / Accessibility Tests (push) Has been cancelled
Docker Tests (Consolidated) / LLM Unit Tests (push) Has been cancelled
Docker Tests (Consolidated) / LLM Example Tests (push) Has been cancelled
Docker Tests (Consolidated) / Production Image Smoke Test (push) Has been cancelled
Docker Tests (Consolidated) / Infrastructure Tests (push) Has been cancelled
OSSF Scorecard / OSSF Security Scorecard Analysis (push) Has been cancelled
Docker Tests (Consolidated) / UI Tests (Puppeteer) [mobile] (push) Has been cancelled
Backwards Compatibility / Verify Encryption Constants (push) Has been cancelled
Backwards Compatibility / PyPI Version Compatibility (push) Has been cancelled
Backwards Compatibility / Database Migration Tests (push) Has been cancelled
CodeQL Advanced / Analyze (python) (push) Has been cancelled
Docker Tests (Consolidated) / detect-changes (push) Has been cancelled
Docker Tests (Consolidated) / Build Test Image (push) Has been cancelled
Docker Tests (Consolidated) / All Pytest Tests + Coverage (push) Has been cancelled
Docker Tests (Consolidated) / UI Tests (Puppeteer) [accessibility] (push) Has been cancelled
Docker Tests (Consolidated) / UI Tests (Puppeteer) [api-crud] (push) Has been cancelled
Docker Tests (Consolidated) / UI Tests (Puppeteer) [auth-login] (push) Has been cancelled
Docker Tests (Consolidated) / UI Tests (Puppeteer) [auth-pages] (push) Has been cancelled
Docker Tests (Consolidated) / UI Tests (Puppeteer) [auth-register] (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:08:55 +08:00

75 lines
2.4 KiB
Python

"""
Tests for the check-ldr-db pre-commit hook.
Ensures the hook detects any reference to the deprecated shared database,
forcing all data storage through per-user encrypted databases.
"""
import sys
from importlib import import_module
from pathlib import Path
HOOKS_DIR = Path(__file__).parent.parent.parent / ".pre-commit-hooks"
sys.path.insert(0, str(HOOKS_DIR))
hook_module = import_module("check-ldr-db")
check_file_fn = hook_module.check_file_for_ldr_db
# Build the deprecated DB name dynamically so this test file itself
# is not flagged by the check-ldr-db pre-commit hook.
_DEPRECATED_DB = "ldr" + ".db"
def _write_and_check(tmp_path, code: str, filename: str = "module.py"):
p = tmp_path / filename
p.write_text(code, encoding="utf-8")
return check_file_fn(str(p))
class TestDetectsLdrDbUsage:
"""Ensures references to the deprecated shared DB are caught."""
def test_detects_sqlite_connect(self, tmp_path):
code = f'conn = sqlite3.connect("{_DEPRECATED_DB}")\n'
matches = _write_and_check(tmp_path, code)
assert len(matches) >= 1
def test_detects_in_path(self, tmp_path):
code = f'db_path = "/data/{_DEPRECATED_DB}"\n'
matches = _write_and_check(tmp_path, code)
assert len(matches) >= 1
def test_detects_case_insensitive(self, tmp_path):
code = f'path = "{_DEPRECATED_DB.upper()}"\n'
matches = _write_and_check(tmp_path, code)
assert len(matches) >= 1
def test_detects_in_f_string(self, tmp_path):
code = f'path = f"{{base}}/{_DEPRECATED_DB}"\n'
matches = _write_and_check(tmp_path, code)
assert len(matches) >= 1
class TestAllowsSafePatterns:
"""Ensures comments and safe code are not flagged."""
def test_allows_comment(self, tmp_path):
code = f"# The old {_DEPRECATED_DB} is deprecated\n"
matches = _write_and_check(tmp_path, code)
assert len(matches) == 0
def test_allows_docstring_style(self, tmp_path):
code = f'"""See {_DEPRECATED_DB} migration guide"""\n'
matches = _write_and_check(tmp_path, code)
assert len(matches) == 0
def test_allows_normal_code(self, tmp_path):
code = """
from database.session_context import get_user_db_session
with get_user_db_session(username) as session:
pass
"""
matches = _write_and_check(tmp_path, code)
assert len(matches) == 0