2015-05-12 12:12:58 -04:00
|
|
|
package commands
|
|
|
|
|
|
|
|
import (
|
2015-09-25 17:39:46 -04:00
|
|
|
"github.com/spf13/afero"
|
|
|
|
"github.com/spf13/hugo/hugofs"
|
2015-05-12 12:12:58 -04:00
|
|
|
"github.com/stretchr/testify/assert"
|
2015-12-02 13:56:36 -05:00
|
|
|
"os"
|
2015-05-12 12:12:58 -04:00
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Issue #1133
|
|
|
|
func TestNewContentPathSectionWithForwardSlashes(t *testing.T) {
|
|
|
|
p, s := newContentPathSection("/post/new.md")
|
|
|
|
assert.Equal(t, filepath.FromSlash("/post/new.md"), p)
|
|
|
|
assert.Equal(t, "post", s)
|
|
|
|
}
|
2015-09-25 17:39:46 -04:00
|
|
|
|
|
|
|
func checkNewSiteInited(basepath string, t *testing.T) {
|
|
|
|
paths := []string{
|
|
|
|
filepath.Join(basepath, "layouts"),
|
|
|
|
filepath.Join(basepath, "content"),
|
|
|
|
filepath.Join(basepath, "archetypes"),
|
|
|
|
filepath.Join(basepath, "static"),
|
|
|
|
filepath.Join(basepath, "data"),
|
|
|
|
filepath.Join(basepath, "config.toml"),
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, path := range paths {
|
|
|
|
_, err := hugofs.SourceFs.Stat(path)
|
|
|
|
assert.Nil(t, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestDoNewSite(t *testing.T) {
|
|
|
|
basepath := filepath.Join(os.TempDir(), "blog")
|
|
|
|
hugofs.SourceFs = new(afero.MemMapFs)
|
|
|
|
err := doNewSite(basepath, false)
|
|
|
|
assert.Nil(t, err)
|
|
|
|
|
|
|
|
checkNewSiteInited(basepath, t)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestDoNewSite_error_base_exists(t *testing.T) {
|
|
|
|
basepath := filepath.Join(os.TempDir(), "blog")
|
|
|
|
hugofs.SourceFs = new(afero.MemMapFs)
|
|
|
|
hugofs.SourceFs.MkdirAll(basepath, 777)
|
|
|
|
err := doNewSite(basepath, false)
|
|
|
|
assert.NotNil(t, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestDoNewSite_force_empty_dir(t *testing.T) {
|
|
|
|
basepath := filepath.Join(os.TempDir(), "blog")
|
|
|
|
hugofs.SourceFs = new(afero.MemMapFs)
|
|
|
|
hugofs.SourceFs.MkdirAll(basepath, 777)
|
|
|
|
err := doNewSite(basepath, true)
|
|
|
|
assert.Nil(t, err)
|
|
|
|
|
|
|
|
checkNewSiteInited(basepath, t)
|
|
|
|
}
|
|
|
|
|
2015-12-08 13:25:34 -05:00
|
|
|
// TODO(spf13): Fix and re-enable this.
|
|
|
|
func _TestDoNewSite_error_force_dir_inside_exists(t *testing.T) {
|
2015-09-25 17:39:46 -04:00
|
|
|
basepath := filepath.Join(os.TempDir(), "blog")
|
|
|
|
contentPath := filepath.Join(basepath, "content")
|
|
|
|
hugofs.SourceFs = new(afero.MemMapFs)
|
|
|
|
hugofs.SourceFs.MkdirAll(contentPath, 777)
|
|
|
|
err := doNewSite(basepath, true)
|
|
|
|
assert.NotNil(t, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestDoNewSite_error_force_config_inside_exists(t *testing.T) {
|
|
|
|
basepath := filepath.Join(os.TempDir(), "blog")
|
|
|
|
configPath := filepath.Join(basepath, "config.toml")
|
|
|
|
hugofs.SourceFs = new(afero.MemMapFs)
|
|
|
|
hugofs.SourceFs.MkdirAll(basepath, 777)
|
|
|
|
hugofs.SourceFs.Create(configPath)
|
|
|
|
err := doNewSite(basepath, true)
|
|
|
|
assert.NotNil(t, err)
|
|
|
|
}
|