source: Make sure .File.Dir() ends with a slash
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 28 Dec 2017 10:32:02 +0000 (11:32 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 28 Dec 2017 10:32:02 +0000 (11:32 +0100)
Updates #4190

hugolib/page.go
hugolib/page_bundler_test.go
hugolib/permalinks.go
source/fileInfo.go
source/fileInfo_test.go

index 76151060c66d1d0fc809aa446acfa7ddff9435d8..d589ffcc1df7d116e73091333239861e58d16d25 100644 (file)
@@ -1940,18 +1940,11 @@ func (p *Page) addLangPathPrefixIfFlagSet(outfile string, should bool) string {
 }
 
 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 (
index ff50fc67a0dbc664fbae2865def4c6dce9d92ee0..ab629d6adec081dc64e4c3c04503883bf7816000 100644 (file)
@@ -134,7 +134,6 @@ func TestPageBundlerSite(t *testing.T) {
                                        th.assertFileContent(filepath.FromSlash("/work/public/cpath/2017/pageslug/cindex.html"), "TheContent")
 
                                        assert.Equal("/a/b/", leafBundle2.RelPermalink())
-
                                }
 
                        })
index 8f64614b843a69cd36d9e4a5cf1aefb3c3594d70..9f3a21079385ff1c5c9e6be66c5a4de7c253c28d 100644 (file)
@@ -21,6 +21,8 @@ import (
        "regexp"
        "strconv"
        "strings"
+
+       "github.com/gohugoio/hugo/helpers"
 )
 
 // pathPattern represents a string which builds up a URL from attributes
@@ -160,7 +162,8 @@ func pageToPermalinkFilename(p *Page, _ string) (string, error) {
        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
index e4b4a80fbd0bce8bd78a5fd922911a09d1d22a71..a20ba27e5587c1a8e8ffcc8147def11b54f97197 100644 (file)
@@ -162,9 +162,12 @@ func (fi *FileInfo) init() {
 }
 
 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 := ""
index 3f99497ad3611f46e0be9f7e4458452cdd202fbe..1d7c86ec2b7c9181a287effc62eef5f09547b6fd 100644 (file)
 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)
+       }
 
 }