2013-08-30 20:18:05 -04:00
|
|
|
package hugolib
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2013-09-13 17:46:34 -04:00
|
|
|
"github.com/spf13/hugo/target"
|
|
|
|
"html/template"
|
2013-08-30 20:18:05 -04:00
|
|
|
"io"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2013-09-13 17:46:34 -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"
|
2013-09-12 19:17:53 -04:00
|
|
|
|
|
|
|
//const SLUG_DOC_1 = "---\ntitle: slug doc 1\nslug: slug-doc-1\n---\nslug doc 1 content"
|
2013-08-30 20:18:05 -04:00
|
|
|
const SLUG_DOC_2 = "---\ntitle: slug doc 2\nslug: slug-doc-2\n---\nslug doc 2 content"
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
type InMemoryTarget struct {
|
|
|
|
files map[string][]byte
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *InMemoryTarget) Publish(label string, reader io.Reader) (err error) {
|
|
|
|
if t.files == nil {
|
|
|
|
t.files = make(map[string][]byte)
|
|
|
|
}
|
|
|
|
bytes := new(bytes.Buffer)
|
|
|
|
bytes.ReadFrom(reader)
|
|
|
|
t.files[label] = bytes.Bytes()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2013-09-03 23:52:50 -04:00
|
|
|
func (t *InMemoryTarget) Translate(label string) (dest string, err error) {
|
|
|
|
return label, nil
|
|
|
|
}
|
|
|
|
|
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-12 19:17:53 -04:00
|
|
|
var urlFakeSource = []byteSource{
|
|
|
|
{"content/blue/doc1.md", []byte(SLUG_DOC_1)},
|
|
|
|
{"content/blue/doc2.md", []byte(SLUG_DOC_2)},
|
|
|
|
}
|
|
|
|
|
2013-08-30 20:18:05 -04:00
|
|
|
func TestPageCount(t *testing.T) {
|
2013-09-13 00:18:13 -04:00
|
|
|
files := make(map[string][]byte)
|
|
|
|
target := &InMemoryTarget{files: files}
|
|
|
|
alias := &InMemoryAliasTarget{files: files}
|
2013-09-12 19:17:53 -04:00
|
|
|
s := &Site{
|
|
|
|
Target: target,
|
2013-09-13 17:46:34 -04:00
|
|
|
Alias: alias,
|
2013-09-12 19:17:53 -04:00
|
|
|
Config: Config{UglyUrls: false},
|
|
|
|
Source: &inMemorySource{urlFakeSource},
|
|
|
|
}
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := s.RenderLists(); err != nil {
|
|
|
|
t.Errorf("Unable to render site lists: %s", err)
|
|
|
|
}
|
|
|
|
|
2013-09-12 19:17:53 -04:00
|
|
|
if err := s.RenderAliases(); err != nil {
|
|
|
|
t.Errorf("Unable to render site lists: %s", err)
|
|
|
|
}
|
|
|
|
|
2013-09-12 13:48:59 -04:00
|
|
|
blueIndex := target.files["blue"]
|
2013-08-30 20:18:05 -04:00
|
|
|
if blueIndex == nil {
|
|
|
|
t.Errorf("No indexed rendered. %v", target.files)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(blueIndex) != 2 {
|
|
|
|
t.Errorf("Number of pages does not equal 2, got %d. %q", len(blueIndex), 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
|
|
|
} {
|
|
|
|
if _, ok := target.files[s]; !ok {
|
|
|
|
t.Errorf("No alias rendered: %s", s)
|
|
|
|
}
|
|
|
|
}
|
2013-08-30 20:18:05 -04:00
|
|
|
}
|