}
func sectionsFromDir(dirname string) []string {
- sections := strings.Split(dirname, helpers.FilePathSeparator)
- if len(sections) == 1 {
- if sections[0] == "" {
- return nil
- }
- return sections
- }
- if len(sections) > 1 && sections[0] == "" {
- return sections[1:]
+ dirname = strings.Trim(dirname, helpers.FilePathSeparator)
+ if dirname == "" {
+ return nil
}
-
- return sections
+ return strings.Split(dirname, helpers.FilePathSeparator)
}
const (
th.assertFileContent(filepath.FromSlash("/work/public/cpath/2017/pageslug/cindex.html"), "TheContent")
assert.Equal("/a/b/", leafBundle2.RelPermalink())
-
}
})
"regexp"
"strconv"
"strings"
+
+ "github.com/gohugoio/hugo/helpers"
)
// pathPattern represents a string which builds up a URL from attributes
name := p.File.TranslationBaseName()
if name == "index" {
// Page bundles; the directory name will hopefully have a better name.
- _, name = filepath.Split(p.File.Dir())
+ dir := strings.TrimSuffix(p.File.Dir(), helpers.FilePathSeparator)
+ _, name = filepath.Split(dir)
}
return p.s.PathSpec.URLize(name), nil
}
func (sp *SourceSpec) NewFileInfo(baseDir, filename string, fi os.FileInfo) *FileInfo {
+
dir, name := filepath.Split(filename)
+ if !strings.HasSuffix(dir, helpers.FilePathSeparator) {
+ dir = dir + helpers.FilePathSeparator
+ }
- dir = strings.TrimSuffix(dir, helpers.FilePathSeparator)
baseDir = strings.TrimSuffix(baseDir, helpers.FilePathSeparator)
relDir := ""
package source
import (
+ "path/filepath"
"testing"
+
+ "github.com/stretchr/testify/require"
)
func TestFileInfo(t *testing.T) {
+ assert := require.New(t)
+
+ s := newTestSourceSpec()
+
+ for _, this := range []struct {
+ base string
+ filename string
+ assert func(f *FileInfo)
+ }{
+ {"/a/", filepath.FromSlash("/a/b/page.md"), func(f *FileInfo) {
+ assert.Equal(filepath.FromSlash("/a/b/page.md"), f.Filename())
+ assert.Equal(filepath.FromSlash("b/"), f.Dir())
+ assert.Equal(filepath.FromSlash("b/page.md"), f.Path())
+
+ }},
+ } {
+ f := s.NewFileInfo(this.base, this.filename, nil)
+ this.assert(f)
+ }
}