hugo/hugolib/page_permalink_test.go

87 lines
3 KiB
Go
Raw Normal View History

package hugolib
import (
2013-10-07 05:53:18 +00:00
"html/template"
"path/filepath"
"testing"
"github.com/spf13/hugo/source"
"github.com/spf13/viper"
)
func TestPermalink(t *testing.T) {
2013-10-07 05:53:18 +00:00
tests := []struct {
file string
dir string
base template.URL
slug string
url string
uglyUrls bool
canonifyUrls bool
expectedAbs string
expectedRel string
2013-10-07 05:53:18 +00:00
}{
{"x/y/z/boofar.md", "x/y/z", "", "", "", false, false, "/x/y/z/boofar/", "/x/y/z/boofar/"},
{"x/y/z/boofar.md", "x/y/z/", "", "", "", false, false, "/x/y/z/boofar/", "/x/y/z/boofar/"},
{"x/y/z/boofar.md", "x/y/z/", "", "boofar", "", false, false, "/x/y/z/boofar/", "/x/y/z/boofar/"},
{"x/y/z/boofar.md", "x/y/z", "http://barnew/", "", "", false, false, "http://barnew/x/y/z/boofar/", "/x/y/z/boofar/"},
{"x/y/z/boofar.md", "x/y/z/", "http://barnew/", "boofar", "", false, false, "http://barnew/x/y/z/boofar/", "/x/y/z/boofar/"},
{"x/y/z/boofar.md", "x/y/z", "", "", "", true, false, "/x/y/z/boofar.html", "/x/y/z/boofar.html"},
{"x/y/z/boofar.md", "x/y/z/", "", "", "", true, false, "/x/y/z/boofar.html", "/x/y/z/boofar.html"},
{"x/y/z/boofar.md", "x/y/z/", "", "boofar", "", true, false, "/x/y/z/boofar.html", "/x/y/z/boofar.html"},
{"x/y/z/boofar.md", "x/y/z", "http://barnew/", "", "", true, false, "http://barnew/x/y/z/boofar.html", "/x/y/z/boofar.html"},
{"x/y/z/boofar.md", "x/y/z/", "http://barnew/", "boofar", "", true, false, "http://barnew/x/y/z/boofar.html", "/x/y/z/boofar.html"},
{"x/y/z/boofar.md", "x/y/z/", "http://barnew/boo/", "boofar", "", true, false, "http://barnew/boo/x/y/z/boofar.html", "/boo/x/y/z/boofar.html"},
{"x/y/z/boofar.md", "x/y/z/", "http://barnew/boo/", "boofar", "", true, true, "http://barnew/boo/x/y/z/boofar.html", "/x/y/z/boofar.html"},
{"x/y/z/boofar.md", "x/y/z/", "http://barnew/boo", "boofar", "", true, true, "http://barnew/boo/x/y/z/boofar.html", "/x/y/z/boofar.html"},
// test url overrides
{"x/y/z/boofar.md", "x/y/z", "", "", "/z/y/q/", false, false, "/z/y/q/", "/z/y/q/"},
2013-10-07 05:53:18 +00:00
}
viper.Set("DefaultExtension", "html")
for i, test := range tests {
viper.Set("uglyurls", test.uglyUrls)
viper.Set("canonifyurls", test.canonifyUrls)
2013-10-07 05:53:18 +00:00
p := &Page{
Node: Node{
UrlPath: UrlPath{
Section: "z",
Url: test.url,
},
2014-05-28 23:11:54 +00:00
Site: &SiteInfo{
BaseUrl: test.base,
},
2013-10-07 05:53:18 +00:00
},
Source: Source{File: *source.NewFile(filepath.FromSlash(test.file))},
}
if test.slug != "" {
p.update(map[string]interface{}{
"slug": test.slug,
})
2013-10-07 05:53:18 +00:00
}
u, err := p.Permalink()
if err != nil {
t.Errorf("Test %d: Unable to process permalink: %s", i, err)
2013-10-07 05:53:18 +00:00
}
expected := test.expectedAbs
if u != expected {
t.Errorf("Test %d: Expected abs url: %s, got: %s", i, expected, u)
2013-10-07 05:53:18 +00:00
}
u, err = p.RelPermalink()
if err != nil {
t.Errorf("Test %d: Unable to process permalink: %s", i, err)
2013-10-07 05:53:18 +00:00
}
expected = test.expectedRel
if u != expected {
t.Errorf("Test %d: Expected rel url: %s, got: %s", i, expected, u)
2013-10-07 05:53:18 +00:00
}
}
}