Test case for permalink functionality
authorNoah Campbell <noahcampbell@gmail.com>
Mon, 7 Oct 2013 05:53:18 +0000 (08:53 +0300)
committerNoah Campbell <noahcampbell@gmail.com>
Tue, 8 Oct 2013 16:44:15 +0000 (18:44 +0200)
hugolib/page_permalink_test.go

index d318505b8853e4245e8dca8a3b6b04feef1699a3..e40a7836235a26c905205bfbcf109ef745721a15 100644 (file)
@@ -1,9 +1,47 @@
 package hugolib
 
 import (
+       "html/template"
        "testing"
 )
 
 func TestPermalink(t *testing.T) {
+       tests := []struct {
+               base     template.URL
+               expectedAbs string
+               expectedRel string
+       }{
+               {"", "/x/y/z/boofar", "/x/y/z/boofar"},
+               {"http://barnew/", "http://barnew/x/y/z/boofar", "/x/y/z/boofar"},
+       }
 
+       for _, test := range tests {
+               p := &Page{
+                       Node: Node{
+                               UrlPath: UrlPath{Section: "x/y/z"},
+                               Site:    SiteInfo{BaseUrl: test.base},
+                       },
+                       File: File{FileName: "x/y/z/boofar.md"},
+               }
+
+               u, err := p.Permalink()
+               if err != nil {
+                       t.Errorf("Unable to process permalink: %s", err)
+               }
+
+               expected := test.expectedAbs
+               if u != expected {
+                       t.Errorf("Expected abs url: %s, got: %s", expected, u)
+               }
+
+               u, err = p.RelPermalink()
+               if err != nil {
+                       t.Errorf("Unable to process permalink: %s", err)
+               }
+
+               expected = test.expectedRel
+               if u != expected {
+                       t.Errorf("Expected abs url: %s, got: %s", expected, u)
+               }
+       }
 }