2013-10-07 00:57:45 -04:00
|
|
|
package hugolib
|
|
|
|
|
|
|
|
import (
|
2013-10-07 01:53:18 -04:00
|
|
|
"html/template"
|
2014-12-07 13:48:00 -05:00
|
|
|
"path/filepath"
|
2013-10-07 00:57:45 -04:00
|
|
|
"testing"
|
2014-04-07 11:44:13 -04:00
|
|
|
|
2014-10-16 20:20:09 -04:00
|
|
|
"github.com/spf13/hugo/source"
|
2014-04-07 11:44:13 -04:00
|
|
|
"github.com/spf13/viper"
|
2013-10-07 00:57:45 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestPermalink(t *testing.T) {
|
2013-10-07 01:53:18 -04:00
|
|
|
tests := []struct {
|
2013-11-19 08:10:03 -05:00
|
|
|
file string
|
|
|
|
dir string
|
2013-10-08 12:33:57 -04:00
|
|
|
base template.URL
|
2013-11-19 08:10:03 -05:00
|
|
|
slug string
|
2014-02-28 02:30:12 -05:00
|
|
|
url string
|
2014-02-01 19:58:14 -05:00
|
|
|
uglyurls bool
|
2013-10-07 01:53:18 -04:00
|
|
|
expectedAbs string
|
|
|
|
expectedRel string
|
|
|
|
}{
|
2014-08-25 12:11:19 -04:00
|
|
|
{"x/y/z/boofar.md", "x/y/z", "", "", "", false, "/x/y/z/boofar/", "/x/y/z/boofar/"},
|
|
|
|
{"x/y/z/boofar.md", "x/y/z/", "", "", "", false, "/x/y/z/boofar/", "/x/y/z/boofar/"},
|
|
|
|
{"x/y/z/boofar.md", "x/y/z/", "", "boofar", "", false, "/x/y/z/boofar/", "/x/y/z/boofar/"},
|
|
|
|
{"x/y/z/boofar.md", "x/y/z", "http://barnew/", "", "", false, "http://barnew/x/y/z/boofar/", "/x/y/z/boofar/"},
|
|
|
|
{"x/y/z/boofar.md", "x/y/z/", "http://barnew/", "boofar", "", false, "http://barnew/x/y/z/boofar/", "/x/y/z/boofar/"},
|
2014-02-28 02:30:12 -05:00
|
|
|
{"x/y/z/boofar.md", "x/y/z", "", "", "", true, "/x/y/z/boofar.html", "/x/y/z/boofar.html"},
|
|
|
|
{"x/y/z/boofar.md", "x/y/z/", "", "", "", true, "/x/y/z/boofar.html", "/x/y/z/boofar.html"},
|
|
|
|
{"x/y/z/boofar.md", "x/y/z/", "", "boofar", "", true, "/x/y/z/boofar.html", "/x/y/z/boofar.html"},
|
|
|
|
{"x/y/z/boofar.md", "x/y/z", "http://barnew/", "", "", true, "http://barnew/x/y/z/boofar.html", "/x/y/z/boofar.html"},
|
|
|
|
{"x/y/z/boofar.md", "x/y/z/", "http://barnew/", "boofar", "", true, "http://barnew/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, "/z/y/q/", "/z/y/q/"},
|
2013-10-07 01:53:18 -04:00
|
|
|
}
|
2013-10-07 00:57:45 -04:00
|
|
|
|
2014-10-16 20:20:09 -04:00
|
|
|
viper.Set("DefaultExtension", "html")
|
|
|
|
|
2014-08-22 07:59:59 -04:00
|
|
|
for i, test := range tests {
|
2014-04-07 11:44:13 -04:00
|
|
|
viper.Set("uglyurls", test.uglyurls)
|
2013-10-07 01:53:18 -04:00
|
|
|
p := &Page{
|
|
|
|
Node: Node{
|
2014-02-28 02:30:12 -05:00
|
|
|
UrlPath: UrlPath{
|
|
|
|
Section: "z",
|
|
|
|
Url: test.url,
|
|
|
|
},
|
2014-05-28 19:11:54 -04:00
|
|
|
Site: &SiteInfo{
|
2014-02-01 19:58:14 -05:00
|
|
|
BaseUrl: test.base,
|
|
|
|
},
|
2013-10-07 01:53:18 -04:00
|
|
|
},
|
2014-12-07 13:48:00 -05:00
|
|
|
Source: Source{File: *source.NewFile(filepath.FromSlash(test.file))},
|
2013-11-19 08:10:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if test.slug != "" {
|
|
|
|
p.update(map[string]interface{}{
|
|
|
|
"slug": test.slug,
|
|
|
|
})
|
2013-10-07 01:53:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
u, err := p.Permalink()
|
|
|
|
if err != nil {
|
2014-08-22 07:59:59 -04:00
|
|
|
t.Errorf("Test %d: Unable to process permalink: %s", i, err)
|
2013-10-07 01:53:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
expected := test.expectedAbs
|
|
|
|
if u != expected {
|
2014-08-22 07:59:59 -04:00
|
|
|
t.Errorf("Test %d: Expected abs url: %s, got: %s", i, expected, u)
|
2013-10-07 01:53:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
u, err = p.RelPermalink()
|
|
|
|
if err != nil {
|
2014-08-22 07:59:59 -04:00
|
|
|
t.Errorf("Test %d: Unable to process permalink: %s", i, err)
|
2013-10-07 01:53:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
expected = test.expectedRel
|
|
|
|
if u != expected {
|
2014-08-22 07:59:59 -04:00
|
|
|
t.Errorf("Test %d: Expected abs url: %s, got: %s", i, expected, u)
|
2013-10-07 01:53:18 -04:00
|
|
|
}
|
|
|
|
}
|
2013-10-07 00:57:45 -04:00
|
|
|
}
|