Spaces:
Running on Zero
Running on Zero
File size: 1,209 Bytes
6b2d40b cbff2cf 6b2d40b 5347513 cbff2cf 6b2d40b cbff2cf 6b2d40b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | """Test easter egg - Gradio 6 html_template/js_on_load API."""
from __future__ import annotations
def test_easter_egg_implementation():
from hearthnet.ui.app import _EGG_JS, _EGG_HTML
# CSS is now injected via js_on_load (document.head.appendChild)
assert ".hn-ticker" in _EGG_JS
assert ".hn-ticker.hn-on" in _EGG_JS
assert "@keyframes hn-scroll" in _EGG_JS
assert ".hn-modal" in _EGG_JS
assert "hn-egg-styles" in _EGG_JS # idempotent guard
assert "hn-ticker" in _EGG_HTML
assert "hn-modal" in _EGG_HTML
assert "hn-iframe" in _EGG_HTML
assert "<script>" not in _EGG_HTML
assert "document.body.appendChild" in _EGG_JS
assert "document.head.appendChild" in _EGG_JS
assert "'e'" in _EGG_JS
assert "'a'" in _EGG_JS
assert "Escape" in _EGG_JS
assert "INPUT" in _EGG_JS
from hearthnet.ui.app import UiApp
import inspect
build_code = inspect.getsource(UiApp.build)
assert "html_template=_EGG_HTML" in build_code
assert "js_on_load=_EGG_JS" in build_code
def test_easter_egg_no_inline_scripts():
from hearthnet.ui.app import _EGG_HTML
assert "<script>" not in _EGG_HTML
assert "<style>" not in _EGG_HTML
|