Vanilla JS (no build tools) counterpart to shared/sexp/ Python modules. Parses s-expression text, evaluates special forms, and renders to DOM nodes or HTML strings. Full component system with defcomp/~name. Includes: - Parser: tokenizer + parse/parseAll matching Python parser exactly - Evaluator: all special forms (if, when, cond, let, and, or, lambda, defcomp, define, ->, set!), higher-order forms (map, filter, reduce) - DOM renderer: createElement for HTML tags, SVG namespace support, component invocation, raw! for pre-rendered HTML, <> fragments - String renderer: matches Python html.render output for SSR parity - ~50 built-in primitives (arithmetic, string, collection, predicates) - 35 parity tests verifying JS output matches Python output via Node.js Also fixes Python raw! handler to properly unwrap _RawHTML objects. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
176 lines
6.1 KiB
Python
176 lines
6.1 KiB
Python
"""Test sexp.js string renderer matches Python renderer output.
|
|
|
|
Runs sexp.js through Node.js and compares output with Python.
|
|
"""
|
|
from __future__ import annotations
|
|
|
|
import json
|
|
import subprocess
|
|
from pathlib import Path
|
|
|
|
import pytest
|
|
|
|
from shared.sexp.parser import parse, parse_all
|
|
from shared.sexp.html import render as py_render
|
|
from shared.sexp.evaluator import evaluate
|
|
|
|
SEXP_JS = Path(__file__).resolve().parents[2] / "static" / "scripts" / "sexp.js"
|
|
|
|
|
|
def _js_render(sexp_text: str, components_text: str = "") -> str:
|
|
"""Run sexp.js in Node and return the renderToString result."""
|
|
# Build a small Node script
|
|
script = f"""
|
|
global.document = undefined; // no DOM needed for string render
|
|
{SEXP_JS.read_text()}
|
|
if ({json.dumps(components_text)}) Sexp.loadComponents({json.dumps(components_text)});
|
|
var result = Sexp.renderToString({json.dumps(sexp_text)});
|
|
process.stdout.write(result);
|
|
"""
|
|
result = subprocess.run(
|
|
["node", "-e", script],
|
|
capture_output=True, text=True, timeout=5,
|
|
)
|
|
if result.returncode != 0:
|
|
pytest.fail(f"Node.js error:\n{result.stderr}")
|
|
return result.stdout
|
|
|
|
|
|
class TestParserParity:
|
|
"""Parser produces equivalent structures."""
|
|
|
|
def test_simple_element(self):
|
|
assert _js_render('(div "hello")') == '<div>hello</div>'
|
|
|
|
def test_nested_elements(self):
|
|
html = _js_render('(div :class "card" (p "text"))')
|
|
assert html == '<div class="card"><p>text</p></div>'
|
|
|
|
def test_void_element(self):
|
|
assert _js_render('(img :src "a.jpg")') == '<img src="a.jpg">'
|
|
assert _js_render('(br)') == '<br>'
|
|
|
|
def test_boolean_attr(self):
|
|
assert _js_render('(input :disabled true :type "text")') == '<input disabled type="text">'
|
|
|
|
def test_nil_attr_omitted(self):
|
|
assert _js_render('(div :class nil "hi")') == '<div>hi</div>'
|
|
|
|
def test_false_attr_omitted(self):
|
|
assert _js_render('(div :class false "hi")') == '<div>hi</div>'
|
|
|
|
def test_numbers(self):
|
|
assert _js_render('(span 42)') == '<span>42</span>'
|
|
|
|
def test_escaping(self):
|
|
html = _js_render('(div "<script>alert(1)</script>")')
|
|
assert "<script>" in html
|
|
|
|
|
|
class TestSpecialForms:
|
|
"""Special forms render correctly."""
|
|
|
|
def test_if_true(self):
|
|
assert _js_render('(if true (span "yes") (span "no"))') == '<span>yes</span>'
|
|
|
|
def test_if_false(self):
|
|
assert _js_render('(if false (span "yes") (span "no"))') == '<span>no</span>'
|
|
|
|
def test_if_nil(self):
|
|
assert _js_render('(if nil (span "yes") (span "no"))') == '<span>no</span>'
|
|
|
|
def test_when_true(self):
|
|
assert _js_render('(when true (span "yes"))') == '<span>yes</span>'
|
|
|
|
def test_when_false(self):
|
|
assert _js_render('(when false (span "yes"))') == ''
|
|
|
|
def test_str(self):
|
|
assert _js_render('(div (str "a" "b" "c"))') == '<div>abc</div>'
|
|
|
|
def test_fragment(self):
|
|
assert _js_render('(<> (span "a") (span "b"))') == '<span>a</span><span>b</span>'
|
|
|
|
def test_let(self):
|
|
assert _js_render('(let ((x "hello")) (div x))') == '<div>hello</div>'
|
|
|
|
def test_let_clojure_style(self):
|
|
assert _js_render('(let (x "hello" y "world") (div (str x " " y)))') == '<div>hello world</div>'
|
|
|
|
def test_and(self):
|
|
assert _js_render('(when (and true true) (span "ok"))') == '<span>ok</span>'
|
|
assert _js_render('(when (and true false) (span "ok"))') == ''
|
|
|
|
def test_or(self):
|
|
assert _js_render('(div (or nil "fallback"))') == '<div>fallback</div>'
|
|
|
|
|
|
class TestComponents:
|
|
"""Component definition and rendering."""
|
|
|
|
CARD = '(defcomp ~card (&key title) (div :class "card" (h2 title)))'
|
|
|
|
def test_simple_component(self):
|
|
html = _js_render('(~card :title "Hello")', self.CARD)
|
|
assert html == '<div class="card"><h2>Hello</h2></div>'
|
|
|
|
def test_component_with_children(self):
|
|
comp = '(defcomp ~box (&key &rest children) (div :class "box" (raw! children)))'
|
|
html = _js_render('(~box (p "inside"))', comp)
|
|
assert html == '<div class="box"><p>inside</p></div>'
|
|
|
|
def test_component_with_conditional(self):
|
|
comp = '(defcomp ~badge (&key show label) (when show (span label)))'
|
|
assert _js_render('(~badge :show true :label "ok")', comp) == '<span>ok</span>'
|
|
assert _js_render('(~badge :show false :label "ok")', comp) == ''
|
|
|
|
def test_nested_components(self):
|
|
comps = """
|
|
(defcomp ~inner (&key text) (span text))
|
|
(defcomp ~outer (&key label) (div (~inner :text label)))
|
|
"""
|
|
html = _js_render('(~outer :label "hi")', comps)
|
|
assert html == '<div><span>hi</span></div>'
|
|
|
|
|
|
class TestPythonParity:
|
|
"""JS string renderer matches Python renderer output."""
|
|
|
|
CASES = [
|
|
'(div :class "main" (p "hello"))',
|
|
'(div (if true "yes" "no"))',
|
|
'(div (when false "hidden"))',
|
|
'(span (str "a" "-" "b"))',
|
|
'(<> (div "one") (div "two"))',
|
|
'(ul (li "a") (li "b") (li "c"))',
|
|
'(input :type "text" :disabled true :value "x")',
|
|
'(div :class nil :id "ok" "text")',
|
|
'(img :src "photo.jpg" :alt "A photo")',
|
|
'(table (tr (td "cell")))',
|
|
]
|
|
|
|
@pytest.mark.parametrize("sexp_text", CASES)
|
|
def test_matches_python(self, sexp_text):
|
|
py_html = py_render(parse(sexp_text))
|
|
js_html = _js_render(sexp_text)
|
|
assert js_html == py_html, f"Mismatch for {sexp_text!r}:\n PY: {py_html!r}\n JS: {js_html!r}"
|
|
|
|
COMP_CASES = [
|
|
(
|
|
'(defcomp ~tag (&key label colour) (span :class (str "tag-" colour) label))',
|
|
'(~tag :label "new" :colour "red")',
|
|
),
|
|
(
|
|
'(defcomp ~wrap (&key &rest children) (div :class "w" (raw! children)))',
|
|
'(~wrap (p "a") (p "b"))',
|
|
),
|
|
]
|
|
|
|
@pytest.mark.parametrize("comp_text,call_text", COMP_CASES)
|
|
def test_component_matches_python(self, comp_text, call_text):
|
|
env = {}
|
|
evaluate(parse(comp_text), env)
|
|
py_html = py_render(parse(call_text), env)
|
|
js_html = _js_render(call_text, comp_text)
|
|
assert js_html == py_html
|