diff options
author | Jasper Van der Jeugt <m@jaspervdj.be> | 2011-09-06 22:26:07 +0200 |
---|---|---|
committer | Jasper Van der Jeugt <m@jaspervdj.be> | 2011-09-06 22:27:53 +0200 |
commit | 75f157ca8c319d770f02c38d65226bb3de495a0e (patch) | |
tree | 51c92ac2658e3f265dc3971651dd89817f4e6cc9 /tests/Hakyll | |
parent | bf4115eb0fad1a3b7a0ce5dc71b55045df30995b (diff) | |
download | hakyll-75f157ca8c319d770f02c38d65226bb3de495a0e.tar.gz |
Add some URL utilities
Diffstat (limited to 'tests/Hakyll')
-rw-r--r-- | tests/Hakyll/Web/Urls/Relativize/Tests.hs (renamed from tests/Hakyll/Web/RelativizeUrls/Tests.hs) | 4 | ||||
-rw-r--r-- | tests/Hakyll/Web/Urls/Tests.hs | 38 | ||||
-rw-r--r-- | tests/Hakyll/Web/Util/Url/Tests.hs | 25 |
3 files changed, 40 insertions, 27 deletions
diff --git a/tests/Hakyll/Web/RelativizeUrls/Tests.hs b/tests/Hakyll/Web/Urls/Relativize/Tests.hs index 05971ad..00f5a0f 100644 --- a/tests/Hakyll/Web/RelativizeUrls/Tests.hs +++ b/tests/Hakyll/Web/Urls/Relativize/Tests.hs @@ -1,12 +1,12 @@ {-# LANGUAGE OverloadedStrings #-} -module Hakyll.Web.RelativizeUrls.Tests +module Hakyll.Web.Urls.Relativize.Tests ( tests ) where import Test.Framework import Test.HUnit hiding (Test) -import Hakyll.Web.RelativizeUrls +import Hakyll.Web.Urls.Relativize import TestSuite.Util tests :: [Test] diff --git a/tests/Hakyll/Web/Urls/Tests.hs b/tests/Hakyll/Web/Urls/Tests.hs new file mode 100644 index 0000000..db7a10b --- /dev/null +++ b/tests/Hakyll/Web/Urls/Tests.hs @@ -0,0 +1,38 @@ +module Hakyll.Web.Urls.Tests + ( tests + ) where + +import Data.Char (toUpper) + +import Test.Framework +import Test.HUnit hiding (Test) + +import Hakyll.Web.Urls +import TestSuite.Util + +tests :: [Test] +tests = concat + [ 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\">" + ] + , 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")) + ] + ] diff --git a/tests/Hakyll/Web/Util/Url/Tests.hs b/tests/Hakyll/Web/Util/Url/Tests.hs deleted file mode 100644 index aab4172..0000000 --- a/tests/Hakyll/Web/Util/Url/Tests.hs +++ /dev/null @@ -1,25 +0,0 @@ -module Hakyll.Web.Util.Url.Tests - ( tests - ) where - -import Test.Framework -import Test.HUnit hiding (Test) - -import Hakyll.Web.Util.Url -import TestSuite.Util - -tests :: [Test] -tests = concat - [ 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" - ] - ] |