2016-03-17 14:30:33 -04:00
|
|
|
// Copyright 2016 The Hugo Authors. All rights reserved.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package create_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2016-11-29 14:18:09 -05:00
|
|
|
"strings"
|
2016-03-17 14:30:33 -04:00
|
|
|
"testing"
|
|
|
|
|
2017-06-13 12:42:45 -04:00
|
|
|
"github.com/gohugoio/hugo/deps"
|
2017-02-04 22:20:06 -05:00
|
|
|
|
2017-06-13 12:42:45 -04:00
|
|
|
"github.com/gohugoio/hugo/hugolib"
|
2017-01-10 04:55:03 -05:00
|
|
|
|
2016-11-29 14:18:09 -05:00
|
|
|
"fmt"
|
|
|
|
|
2017-06-13 12:42:45 -04:00
|
|
|
"github.com/gohugoio/hugo/hugofs"
|
2017-01-10 04:55:03 -05:00
|
|
|
|
2017-06-13 12:42:45 -04:00
|
|
|
"github.com/gohugoio/hugo/create"
|
|
|
|
"github.com/gohugoio/hugo/helpers"
|
2017-06-13 13:07:35 -04:00
|
|
|
"github.com/spf13/afero"
|
2016-03-17 14:30:33 -04:00
|
|
|
"github.com/spf13/viper"
|
2017-01-10 04:55:03 -05:00
|
|
|
"github.com/stretchr/testify/require"
|
2016-03-17 14:30:33 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestNewContent(t *testing.T) {
|
2017-02-04 22:20:06 -05:00
|
|
|
v := viper.New()
|
|
|
|
initViper(v)
|
2016-03-17 14:30:33 -04:00
|
|
|
|
|
|
|
cases := []struct {
|
2016-11-29 14:18:09 -05:00
|
|
|
kind string
|
|
|
|
path string
|
|
|
|
expected []string
|
2016-03-17 14:30:33 -04:00
|
|
|
}{
|
2016-11-29 14:18:09 -05:00
|
|
|
{"post", "post/sample-1.md", []string{`title = "Post Arch title"`, `test = "test1"`, "date = \"2015-01-12T19:20:04-07:00\""}},
|
2016-12-15 03:27:30 -05:00
|
|
|
{"emptydate", "post/sample-ed.md", []string{`title = "Empty Date Arch title"`, `test = "test1"`}},
|
2017-06-18 13:06:28 -04:00
|
|
|
{"stump", "stump/sample-2.md", []string{`title = "Sample 2"`}}, // no archetype file
|
|
|
|
{"", "sample-3.md", []string{`title = "Sample 3"`}}, // no archetype
|
|
|
|
{"product", "product/sample-4.md", []string{`title = "SAMPLE-4"`}}, // empty archetype front matter
|
2016-03-17 14:30:33 -04:00
|
|
|
}
|
|
|
|
|
2017-01-10 04:55:03 -05:00
|
|
|
for _, c := range cases {
|
2017-02-04 22:20:06 -05:00
|
|
|
cfg, fs := newTestCfg()
|
2017-06-18 13:39:42 -04:00
|
|
|
ps, err := helpers.NewPathSpec(fs, cfg)
|
|
|
|
require.NoError(t, err)
|
2017-02-04 22:20:06 -05:00
|
|
|
h, err := hugolib.NewHugoSites(deps.DepsCfg{Cfg: cfg, Fs: fs})
|
2017-01-10 04:55:03 -05:00
|
|
|
require.NoError(t, err)
|
2017-02-04 22:20:06 -05:00
|
|
|
require.NoError(t, initFs(fs))
|
|
|
|
|
2017-06-18 13:39:42 -04:00
|
|
|
siteFactory := func(filename string, siteUsed bool) (*hugolib.Site, error) {
|
|
|
|
return h.Sites[0], nil
|
|
|
|
}
|
2016-03-17 14:30:33 -04:00
|
|
|
|
2017-06-18 13:39:42 -04:00
|
|
|
require.NoError(t, create.NewContent(ps, siteFactory, c.kind, c.path))
|
2016-03-17 14:30:33 -04:00
|
|
|
|
2017-01-10 04:55:03 -05:00
|
|
|
fname := filepath.Join("content", filepath.FromSlash(c.path))
|
2017-02-04 22:20:06 -05:00
|
|
|
content := readFileFromFs(t, fs.Source, fname)
|
2016-11-29 14:18:09 -05:00
|
|
|
for i, v := range c.expected {
|
|
|
|
found := strings.Contains(content, v)
|
2016-03-17 14:30:33 -04:00
|
|
|
if !found {
|
2016-11-29 14:18:09 -05:00
|
|
|
t.Errorf("[%d] %q missing from output:\n%q", i, v, content)
|
2016-03-17 14:30:33 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-04 22:20:06 -05:00
|
|
|
func initViper(v *viper.Viper) {
|
|
|
|
v.Set("metaDataFormat", "toml")
|
|
|
|
v.Set("archetypeDir", "archetypes")
|
|
|
|
v.Set("contentDir", "content")
|
|
|
|
v.Set("themesDir", "themes")
|
|
|
|
v.Set("layoutDir", "layouts")
|
|
|
|
v.Set("i18nDir", "i18n")
|
|
|
|
v.Set("theme", "sample")
|
2016-03-17 14:30:33 -04:00
|
|
|
}
|
|
|
|
|
2017-01-10 04:55:03 -05:00
|
|
|
func initFs(fs *hugofs.Fs) error {
|
2016-03-17 14:30:33 -04:00
|
|
|
perm := os.FileMode(0755)
|
|
|
|
var err error
|
|
|
|
|
|
|
|
// create directories
|
|
|
|
dirs := []string{
|
|
|
|
"archetypes",
|
|
|
|
"content",
|
|
|
|
filepath.Join("themes", "sample", "archetypes"),
|
|
|
|
}
|
|
|
|
for _, dir := range dirs {
|
2017-01-10 04:55:03 -05:00
|
|
|
err = fs.Source.Mkdir(dir, perm)
|
2016-03-17 14:30:33 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// create files
|
|
|
|
for _, v := range []struct {
|
|
|
|
path string
|
|
|
|
content string
|
|
|
|
}{
|
|
|
|
{
|
2016-11-29 14:18:09 -05:00
|
|
|
path: filepath.Join("archetypes", "post.md"),
|
|
|
|
content: "+++\ndate = \"2015-01-12T19:20:04-07:00\"\ntitle = \"Post Arch title\"\ntest = \"test1\"\n+++\n",
|
2016-03-17 14:30:33 -04:00
|
|
|
},
|
|
|
|
{
|
2017-06-18 13:06:28 -04:00
|
|
|
path: filepath.Join("archetypes", "product.md"),
|
|
|
|
content: `+++
|
|
|
|
title = "{{ .BaseFileName | upper }}"
|
|
|
|
+++`,
|
2016-03-17 14:30:33 -04:00
|
|
|
},
|
2016-12-15 03:27:30 -05:00
|
|
|
{
|
|
|
|
path: filepath.Join("archetypes", "emptydate.md"),
|
|
|
|
content: "+++\ndate =\"\"\ntitle = \"Empty Date Arch title\"\ntest = \"test1\"\n+++\n",
|
|
|
|
},
|
2016-03-17 14:30:33 -04:00
|
|
|
} {
|
2017-01-10 04:55:03 -05:00
|
|
|
f, err := fs.Source.Create(v.path)
|
2016-03-17 14:30:33 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
|
|
|
|
_, err = f.Write([]byte(v.content))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2016-11-29 14:18:09 -05:00
|
|
|
|
|
|
|
// TODO(bep) extract common testing package with this and some others
|
|
|
|
func readFileFromFs(t *testing.T, fs afero.Fs, filename string) string {
|
|
|
|
filename = filepath.FromSlash(filename)
|
|
|
|
b, err := afero.ReadFile(fs, filename)
|
|
|
|
if err != nil {
|
|
|
|
// Print some debug info
|
|
|
|
root := strings.Split(filename, helpers.FilePathSeparator)[0]
|
|
|
|
afero.Walk(fs, root, func(path string, info os.FileInfo, err error) error {
|
|
|
|
if info != nil && !info.IsDir() {
|
|
|
|
fmt.Println(" ", path)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
t.Fatalf("Failed to read file: %s", err)
|
|
|
|
}
|
|
|
|
return string(b)
|
|
|
|
}
|
2017-02-04 22:20:06 -05:00
|
|
|
|
|
|
|
func newTestCfg() (*viper.Viper, *hugofs.Fs) {
|
|
|
|
|
|
|
|
v := viper.New()
|
|
|
|
fs := hugofs.NewMem(v)
|
|
|
|
|
|
|
|
v.SetFs(fs.Source)
|
|
|
|
|
|
|
|
initViper(v)
|
|
|
|
|
|
|
|
return v, fs
|
|
|
|
|
|
|
|
}
|