# SPDX-License-Identifier: AGPL-3.0-or-later
"""Tests for the HTML/SVG fingerprint canary generators.
Skipped when the Node toolchain (or vendored javascript-obfuscator) is
not installed, mirroring :mod:`tests.canary.test_obfuscator`.
"""
from __future__ import annotations
import shutil
from pathlib import Path
import pytest
from decnet.canary import CanaryContext, get_generator
def _toolchain_ready() -> bool:
if shutil.which("node") is None:
return False
canary_dir = Path(__file__).resolve().parents[2] / "decnet" / "canary"
return (canary_dir / "node_modules" / "javascript-obfuscator").is_dir()
pytestmark = pytest.mark.skipif(
not _toolchain_ready(),
reason="node + javascript-obfuscator not installed under decnet/canary",
)
def _ctx(callback_token: str = "fp-tok-123") -> CanaryContext:
return CanaryContext(
callback_token=callback_token,
http_base="https://canary.example.test",
dns_zone="canary.example.test",
persona="linux",
)
def test_fingerprint_html_renders_full_page() -> None:
art = get_generator("fingerprint_html").generate(_ctx())
body = art.content.decode("utf-8")
assert body.startswith("")
assert "" in body
assert "Internal Asset Directory" in body
assert "
" in body
# Beacon URL must NOT appear in plaintext — it's inside the
# obfuscated string array. (Sanity: this is the whole point of
# obfuscating the payload.)
assert "/c/fp-tok-123" not in body
# Visible content shouldn't leak the slug either.
assert "fp-tok-123" not in body
assert art.mode == 0o644
assert art.generator == "fingerprint_html"
def test_fingerprint_html_is_deterministic_per_token() -> None:
a = get_generator("fingerprint_html").generate(_ctx("tokA"))
b = get_generator("fingerprint_html").generate(_ctx("tokA"))
assert a.content == b.content
def test_fingerprint_html_differs_across_tokens() -> None:
a = get_generator("fingerprint_html").generate(_ctx("tokA"))
b = get_generator("fingerprint_html").generate(_ctx("tokB"))
assert a.content != b.content
def test_fingerprint_html_notes_carry_mint_uuid_and_beacon() -> None:
art = get_generator("fingerprint_html").generate(_ctx("tok-notes"))
joined = " | ".join(art.notes)
assert "mint_uuid=" in joined
assert "https://canary.example.test/c/tok-notes" in joined
def test_fingerprint_svg_renders_valid_svg_with_script() -> None:
art = get_generator("fingerprint_svg").generate(_ctx())
body = art.content.decode("utf-8")
assert body.startswith("" in body
assert "