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
108 lines
3.2 KiB
Python
Executable File
108 lines
3.2 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
"""
|
|
Pre-commit hook to detect silent exception swallowing.
|
|
|
|
Flags ``except Exception: pass`` and ``except: pass`` patterns where no
|
|
logging, re-raise, or meaningful handling occurs. At minimum a
|
|
``logger.debug()`` should be present so failures are traceable.
|
|
|
|
Legitimate suppression (e.g. optional cleanup, best-effort parsing)
|
|
should use an inline ``# noqa: silent-exception`` comment to opt out.
|
|
"""
|
|
|
|
import ast
|
|
import sys
|
|
|
|
|
|
NOQA_MARKER = "noqa: silent-exception"
|
|
|
|
|
|
class SilentExceptionChecker(ast.NodeVisitor):
|
|
"""AST visitor that flags except handlers whose body is only ``pass``."""
|
|
|
|
def __init__(self, filename: str, lines: list[str]):
|
|
self.filename = filename
|
|
self.lines = lines
|
|
self.issues: list[tuple[int, str]] = []
|
|
|
|
def visit_ExceptHandler(self, node: ast.ExceptHandler):
|
|
# Only flag broad catches: bare ``except:`` or ``except Exception:``
|
|
if node.type is not None and not (
|
|
isinstance(node.type, ast.Name) and node.type.id == "Exception"
|
|
):
|
|
self.generic_visit(node)
|
|
return
|
|
|
|
if self._is_silent(node) and not self._has_noqa(node):
|
|
kind = "except:" if node.type is None else "except Exception:"
|
|
self.issues.append(
|
|
(
|
|
node.lineno,
|
|
f"Silent `{kind} pass` — add at least "
|
|
f"`logger.debug(...)` or `# {NOQA_MARKER}` to suppress",
|
|
)
|
|
)
|
|
|
|
self.generic_visit(node)
|
|
|
|
# ------------------------------------------------------------------
|
|
|
|
@staticmethod
|
|
def _is_silent(handler: ast.ExceptHandler) -> bool:
|
|
"""True when the handler body contains only ``pass`` statements."""
|
|
for stmt in handler.body:
|
|
if isinstance(stmt, ast.Pass):
|
|
continue
|
|
# Any raise, call, assignment, etc. counts as handling
|
|
return False
|
|
return True
|
|
|
|
def _has_noqa(self, handler: ast.ExceptHandler) -> bool:
|
|
"""True when the ``except`` or handler body lines have a noqa comment."""
|
|
# Check the except line itself and all body lines
|
|
for node in [handler] + handler.body:
|
|
idx = node.lineno - 1
|
|
if 0 <= idx < len(self.lines):
|
|
if NOQA_MARKER in self.lines[idx]:
|
|
return True
|
|
return False
|
|
|
|
|
|
def check_file(filepath: str) -> list[tuple[int, str]]:
|
|
try:
|
|
with open(filepath, encoding="utf-8") as f:
|
|
source = f.read()
|
|
except Exception as exc:
|
|
return [(0, f"Cannot read file: {exc}")]
|
|
|
|
try:
|
|
tree = ast.parse(source, filename=filepath)
|
|
except SyntaxError:
|
|
return []
|
|
|
|
lines = source.splitlines()
|
|
checker = SilentExceptionChecker(filepath, lines)
|
|
checker.visit(tree)
|
|
return checker.issues
|
|
|
|
|
|
def main() -> int:
|
|
exit_code = 0
|
|
for filepath in sys.argv[1:]:
|
|
for lineno, msg in check_file(filepath):
|
|
print(f"{filepath}:{lineno}: {msg}")
|
|
exit_code = 1
|
|
|
|
if exit_code:
|
|
print()
|
|
print(
|
|
"Hint: add logging (logger.debug/warning) or "
|
|
f"suppress with `# {NOQA_MARKER}`"
|
|
)
|
|
|
|
return exit_code
|
|
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(main())
|