diff options
author | Jasper Van der Jeugt <m@jaspervdj.be> | 2012-12-25 22:49:17 +0100 |
---|---|---|
committer | Jasper Van der Jeugt <m@jaspervdj.be> | 2012-12-25 22:49:29 +0100 |
commit | 69ffbe03563cdbc7be6b826e2def2fc797442792 (patch) | |
tree | 3792ce42ee2e9983876f9177533201dd712b76d1 /tests/Hakyll/Web/Html | |
parent | 2ae11c9d7f3138fe9e8397059c641e1962ede197 (diff) | |
download | hakyll-69ffbe03563cdbc7be6b826e2def2fc797442792.tar.gz |
Add demoteHeaders, refactor a bit
Diffstat (limited to 'tests/Hakyll/Web/Html')
-rw-r--r-- | tests/Hakyll/Web/Html/RelativizeUrls/Tests.hs | 34 | ||||
-rw-r--r-- | tests/Hakyll/Web/Html/Tests.hs | 71 |
2 files changed, 105 insertions, 0 deletions
diff --git a/tests/Hakyll/Web/Html/RelativizeUrls/Tests.hs b/tests/Hakyll/Web/Html/RelativizeUrls/Tests.hs new file mode 100644 index 0000000..7799217 --- /dev/null +++ b/tests/Hakyll/Web/Html/RelativizeUrls/Tests.hs @@ -0,0 +1,34 @@ +-------------------------------------------------------------------------------- +{-# LANGUAGE OverloadedStrings #-} +module Hakyll.Web.Html.RelativizeUrls.Tests + ( tests + ) where + + +-------------------------------------------------------------------------------- +import Test.Framework (Test, testGroup) +import Test.HUnit ((@=?)) + +-------------------------------------------------------------------------------- +import Hakyll.Web.Html.RelativizeUrls +import TestSuite.Util + + +-------------------------------------------------------------------------------- +tests :: Test +tests = testGroup "Hakyll.Web.Html.RelativizeUrls.Tests" $ + fromAssertions "relativizeUrls" + [ "<a href=\"../foo\">bar</a>" @=? + relativizeUrlsWith ".." "<a href=\"/foo\">bar</a>" + , "<img src=\"../../images/lolcat.png\" />" @=? + relativizeUrlsWith "../.." "<img src=\"/images/lolcat.png\" />" + , "<a href=\"http://haskell.org\">Haskell</a>" @=? + relativizeUrlsWith "../.." + "<a href=\"http://haskell.org\">Haskell</a>" + , "<a href=\"http://haskell.org\">Haskell</a>" @=? + relativizeUrlsWith "../.." + "<a href=\"http://haskell.org\">Haskell</a>" + , "<script src=\"//ajax.googleapis.com/jquery.min.js\"></script>" @=? + relativizeUrlsWith "../.." + "<script src=\"//ajax.googleapis.com/jquery.min.js\"></script>" + ] diff --git a/tests/Hakyll/Web/Html/Tests.hs b/tests/Hakyll/Web/Html/Tests.hs new file mode 100644 index 0000000..35ffe27 --- /dev/null +++ b/tests/Hakyll/Web/Html/Tests.hs @@ -0,0 +1,71 @@ +-------------------------------------------------------------------------------- +module Hakyll.Web.Html.Tests + ( tests + ) where + + +-------------------------------------------------------------------------------- +import Data.Char (toUpper) +import Test.Framework (Test, testGroup) +import Test.HUnit (assert, (@=?)) + + +-------------------------------------------------------------------------------- +import Hakyll.Web.Html +import TestSuite.Util + + +-------------------------------------------------------------------------------- +tests :: Test +tests = testGroup "Hakyll.Web.Html.Tests" $ concat + [ fromAssertions "demoteHeaders" + [ "<h2>A h1 title</h2>" @=? + demoteHeaders "<h1>A h1 title</h1>" + ] + + , fromAssertions "withUrls" + [ "<a href=\"FOO\">bar</a>" @=? + withUrls (map toUpper) "<a href=\"foo\">bar</a>" + , "<img src=\"OH BAR\" />" @=? + withUrls (map toUpper) "<img src=\"oh bar\" />" + + -- Test escaping + , "<script>\"sup\"</script>" @=? + withUrls id "<script>\"sup\"</script>" + , "<code><stdio></code>" @=? + withUrls id "<code><stdio></code>" + , "<style>body > p { line-height: 1.3 }</style>" @=? + withUrls id "<style>body > p { line-height: 1.3 }</style>" + ] + + , fromAssertions "toUrl" + [ "/foo/bar.html" @=? toUrl "foo/bar.html" + , "/" @=? toUrl "/" + , "/funny-pics.html" @=? toUrl "/funny-pics.html" + ] + + , fromAssertions "toSiteRoot" + [ ".." @=? toSiteRoot "/foo/bar.html" + , "." @=? toSiteRoot "index.html" + , "." @=? toSiteRoot "/index.html" + , "../.." @=? toSiteRoot "foo/bar/qux" + ] + + , fromAssertions "isExternal" + [ assert (isExternal "http://reddit.com") + , assert (isExternal "https://mail.google.com") + , assert (not (isExternal "../header.png")) + , assert (not (isExternal "/foo/index.html")) + ] + + , fromAssertions "stripTags" + [ "foo" @=? stripTags "<p>foo</p>" + , "foo bar" @=? stripTags "<p>foo</p> bar" + , "foo" @=? stripTags "<p>foo</p" + ] + + , fromAssertions "escapeHtml" + [ "Me & Dean" @=? escapeHtml "Me & Dean" + , "<img>" @=? escapeHtml "<img>" + ] + ] |