factor/library/test/httpd/html.factor

73 lines
1.4 KiB
Factor

IN: temporary
USING: html io kernel namespaces styles test ;
[
"<html>&'sgml'"
] [ "<html>&'sgml'" chars>entities ] unit-test
[ "/foo/bar" ]
[
[
"/home/slava/doc/" "doc-root" set
"/home/slava/doc/foo/bar" file-link-href
] with-scope
] unit-test
[ "<img src='/responder/resource/library/icons/File.png'>" ]
[
[
""
[ [[ icon "library/icons/File.png" ]] ]
[ drop ] icon-tag
] string-out
] unit-test
[ "" ]
[
[
[ ] [ drop ] span-tag
] string-out
] unit-test
[ "<span style='color: #ff00ff; font-family: Monospaced; '>car</span>" ]
[
[
[ [ foreground 255 0 255 ] [[ font "Monospaced" ]] ]
[ drop "car" write ]
span-tag
] string-out
] unit-test
: html-format ( string style -- string )
[ format ] with-html-stream ;
[ "hello world" ]
[
[ "hello world" [ ] html-format ] string-out
] unit-test
[ "<span style='color: #ff00ff; font-family: Monospaced; '>car</span>" ]
[
[
"car"
[ [ foreground 255 0 255 ] [[ font "Monospaced" ]] ]
html-format
] string-out
] unit-test
[
"<html><head><title>Foo</title></head><body><h1>Foo</h1></body></html>"
] [
[
"Foo" [ ] html-document
] string-out
] unit-test
[
"<html><head><title>Foo</title></head><body><h1>Foo</h1><pre>Hi</pre></body></html>"
] [
[
"Foo" [ "Hi" write ] simple-html-document
] string-out
] unit-test