2013-08-30 20:18:05 -04:00
|
|
|
package hugolib
|
|
|
|
|
|
|
|
import (
|
2013-09-13 17:46:34 -04:00
|
|
|
"html/template"
|
2014-12-07 13:48:00 -05:00
|
|
|
"path/filepath"
|
2013-08-30 20:18:05 -04:00
|
|
|
"testing"
|
2014-04-07 11:44:13 -04:00
|
|
|
|
2014-11-04 00:41:47 -05:00
|
|
|
"github.com/spf13/afero"
|
|
|
|
"github.com/spf13/hugo/hugofs"
|
2014-04-07 11:44:13 -04:00
|
|
|
"github.com/spf13/hugo/source"
|
|
|
|
"github.com/spf13/hugo/target"
|
|
|
|
"github.com/spf13/viper"
|
2013-08-30 20:18:05 -04:00
|
|
|
)
|
|
|
|
|
2013-09-17 18:52:40 -04:00
|
|
|
const SLUG_DOC_1 = "---\ntitle: slug doc 1\nslug: slug-doc-1\naliases:\n - sd1/foo/\n - sd2\n - sd3/\n - sd4.html\n---\nslug doc 1 content\n"
|
2013-09-12 19:17:53 -04:00
|
|
|
|
2013-09-18 12:15:46 -04:00
|
|
|
const SLUG_DOC_2 = `---
|
|
|
|
title: slug doc 2
|
|
|
|
slug: slug-doc-2
|
|
|
|
---
|
|
|
|
slug doc 2 content
|
|
|
|
`
|
2013-08-30 20:18:05 -04:00
|
|
|
|
|
|
|
const INDEX_TEMPLATE = "{{ range .Data.Pages }}.{{ end }}"
|
|
|
|
|
|
|
|
func must(err error) {
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func mustReturn(ret *Page, err error) *Page {
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return ret
|
|
|
|
}
|
|
|
|
|
2013-09-13 00:18:13 -04:00
|
|
|
type InMemoryAliasTarget struct {
|
|
|
|
target.HTMLRedirectAlias
|
|
|
|
files map[string][]byte
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *InMemoryAliasTarget) Publish(label string, permalink template.HTML) (err error) {
|
|
|
|
f, _ := t.Translate(label)
|
|
|
|
t.files[f] = []byte("--dummy text--")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2013-09-20 20:03:43 -04:00
|
|
|
var urlFakeSource = []source.ByteSource{
|
2014-12-07 13:48:00 -05:00
|
|
|
{filepath.FromSlash("content/blue/doc1.md"), []byte(SLUG_DOC_1)},
|
|
|
|
{filepath.FromSlash("content/blue/doc2.md"), []byte(SLUG_DOC_2)},
|
2013-09-12 19:17:53 -04:00
|
|
|
}
|
|
|
|
|
2013-08-30 20:18:05 -04:00
|
|
|
func TestPageCount(t *testing.T) {
|
2014-11-04 00:41:47 -05:00
|
|
|
hugofs.DestinationFS = new(afero.MemMapFs)
|
2014-04-07 11:44:13 -04:00
|
|
|
|
|
|
|
viper.Set("uglyurls", false)
|
2013-09-12 19:17:53 -04:00
|
|
|
s := &Site{
|
2014-03-01 00:31:21 -05:00
|
|
|
Source: &source.InMemorySource{ByteSource: urlFakeSource},
|
2013-09-12 19:17:53 -04:00
|
|
|
}
|
|
|
|
s.initializeSiteInfo()
|
2013-08-30 20:18:05 -04:00
|
|
|
s.prepTemplates()
|
|
|
|
must(s.addTemplate("indexes/blue.html", INDEX_TEMPLATE))
|
|
|
|
|
2013-09-12 19:17:53 -04:00
|
|
|
if err := s.CreatePages(); err != nil {
|
|
|
|
t.Errorf("Unable to create pages: %s", err)
|
|
|
|
}
|
2013-08-30 20:18:05 -04:00
|
|
|
if err := s.BuildSiteMeta(); err != nil {
|
|
|
|
t.Errorf("Unable to build site metadata: %s", err)
|
|
|
|
}
|
|
|
|
|
2014-04-08 23:15:57 -04:00
|
|
|
if err := s.RenderSectionLists(); err != nil {
|
|
|
|
t.Errorf("Unable to render section lists: %s", err)
|
2013-08-30 20:18:05 -04:00
|
|
|
}
|
|
|
|
|
2013-09-12 19:17:53 -04:00
|
|
|
if err := s.RenderAliases(); err != nil {
|
|
|
|
t.Errorf("Unable to render site lists: %s", err)
|
|
|
|
}
|
|
|
|
|
2014-11-04 00:41:47 -05:00
|
|
|
_, err := hugofs.DestinationFS.Open("blue")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("No indexed rendered.")
|
2013-08-30 20:18:05 -04:00
|
|
|
}
|
|
|
|
|
2014-11-04 00:41:47 -05:00
|
|
|
//expected := ".."
|
|
|
|
//if string(blueIndex) != expected {
|
|
|
|
//t.Errorf("Index template does not match expected: %q, got: %q", expected, string(blueIndex))
|
|
|
|
//}
|
2013-09-12 19:17:53 -04:00
|
|
|
|
|
|
|
for _, s := range []string{
|
|
|
|
"sd1/foo/index.html",
|
2013-09-13 17:46:34 -04:00
|
|
|
"sd2/index.html",
|
2013-09-12 19:17:53 -04:00
|
|
|
"sd3/index.html",
|
2013-09-13 17:46:34 -04:00
|
|
|
"sd4.html",
|
2013-09-12 19:17:53 -04:00
|
|
|
} {
|
2014-12-07 13:48:00 -05:00
|
|
|
if _, err := hugofs.DestinationFS.Open(filepath.FromSlash(s)); err != nil {
|
2013-09-12 19:17:53 -04:00
|
|
|
t.Errorf("No alias rendered: %s", s)
|
|
|
|
}
|
|
|
|
}
|
2013-08-30 20:18:05 -04:00
|
|
|
}
|