2013-08-03 13:51:21 -04:00
|
|
|
package hugolib
|
|
|
|
|
|
|
|
import (
|
2014-11-06 11:52:01 -05:00
|
|
|
"path/filepath"
|
2013-08-05 10:53:58 -04:00
|
|
|
"strings"
|
2013-08-04 22:02:15 -04:00
|
|
|
"testing"
|
2013-08-03 13:51:21 -04:00
|
|
|
)
|
|
|
|
|
2013-08-05 10:53:58 -04:00
|
|
|
var SIMPLE_PAGE_YAML = `---
|
|
|
|
contenttype: ""
|
|
|
|
---
|
|
|
|
Sample Text
|
|
|
|
`
|
|
|
|
|
2013-08-03 13:51:21 -04:00
|
|
|
func TestDegenerateMissingFolderInPageFilename(t *testing.T) {
|
2014-11-06 11:52:01 -05:00
|
|
|
p, err := NewPageFrom(strings.NewReader(SIMPLE_PAGE_YAML), filepath.Join("foobar"))
|
2013-08-05 10:53:58 -04:00
|
|
|
if err != nil {
|
2014-05-01 14:11:56 -04:00
|
|
|
t.Fatalf("Error in NewPageFrom")
|
2013-08-05 10:53:58 -04:00
|
|
|
}
|
2014-10-16 20:20:09 -04:00
|
|
|
if p.Section() != "" {
|
2013-08-04 22:02:15 -04:00
|
|
|
t.Fatalf("No section should be set for a file path: foobar")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-05 10:53:58 -04:00
|
|
|
func TestNewPageWithFilePath(t *testing.T) {
|
2013-08-14 08:57:14 -04:00
|
|
|
toCheck := []struct {
|
|
|
|
input string
|
2013-08-12 16:57:47 -04:00
|
|
|
section string
|
2013-10-07 00:57:45 -04:00
|
|
|
layout []string
|
2013-08-12 16:57:47 -04:00
|
|
|
}{
|
2014-11-06 11:52:01 -05:00
|
|
|
{filepath.Join("sub", "foobar.html"), "sub", L("sub/single.html", "_default/single.html")},
|
|
|
|
{filepath.Join("content", "foobar.html"), "", L("page/single.html", "_default/single.html")},
|
|
|
|
{filepath.Join("content", "sub", "foobar.html"), "sub", L("sub/single.html", "_default/single.html")},
|
|
|
|
{filepath.Join("content", "dub", "sub", "foobar.html"), "dub", L("dub/single.html", "_default/single.html")},
|
2013-08-04 22:02:15 -04:00
|
|
|
}
|
|
|
|
|
2015-04-05 15:03:16 -04:00
|
|
|
for i, el := range toCheck {
|
2014-05-01 14:11:56 -04:00
|
|
|
p, err := NewPageFrom(strings.NewReader(SIMPLE_PAGE_YAML), el.input)
|
2013-08-05 10:53:58 -04:00
|
|
|
if err != nil {
|
2015-04-05 15:03:16 -04:00
|
|
|
t.Errorf("[%d] Reading from SIMPLE_PAGE_YAML resulted in an error: %s", i, err)
|
2013-08-05 10:53:58 -04:00
|
|
|
}
|
2014-10-16 20:20:09 -04:00
|
|
|
if p.Section() != el.section {
|
2015-04-05 15:03:16 -04:00
|
|
|
t.Errorf("[%d] Section incorrect page %s. got %s but expected %s", i, el.input, p.Section(), el.section)
|
2013-08-12 16:57:47 -04:00
|
|
|
}
|
|
|
|
|
2014-06-03 17:06:32 -04:00
|
|
|
for _, y := range el.layout {
|
|
|
|
el.layout = append(el.layout, "theme/"+y)
|
|
|
|
}
|
|
|
|
|
2013-10-07 00:57:45 -04:00
|
|
|
if !listEqual(p.Layout(), el.layout) {
|
2015-04-05 15:03:16 -04:00
|
|
|
t.Errorf("[%d] Layout incorrect. got '%s' but expected '%s'", i, p.Layout(), el.layout)
|
2013-08-04 22:02:15 -04:00
|
|
|
}
|
2013-08-03 13:51:21 -04:00
|
|
|
}
|
|
|
|
}
|