mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-30 22:39:58 +02:00
@@ -137,7 +137,7 @@ func NewFile(relpath string) *File {
|
||||
}
|
||||
|
||||
f.section = helpers.GuessSection(f.Dir())
|
||||
f.uniqueID = helpers.Md5String(f.LogicalName())
|
||||
f.uniqueID = helpers.Md5String(f.Path())
|
||||
|
||||
return f
|
||||
}
|
||||
|
@@ -14,6 +14,7 @@
|
||||
package source
|
||||
|
||||
import (
|
||||
"path/filepath"
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
@@ -26,6 +27,11 @@ func TestFileUniqueID(t *testing.T) {
|
||||
|
||||
assert.Equal(t, "123", f1.UniqueID())
|
||||
assert.Equal(t, "0cc175b9c0f1b6a831c399e269772661", f2.UniqueID())
|
||||
|
||||
f3 := NewFile(filepath.FromSlash("test1/index.md"))
|
||||
f4 := NewFile(filepath.FromSlash("test2/index.md"))
|
||||
|
||||
assert.NotEqual(t, f3.UniqueID(), f4.UniqueID())
|
||||
}
|
||||
|
||||
func TestFileString(t *testing.T) {
|
||||
|
Reference in New Issue
Block a user