source: Normalize UniqueID between Windows & Linux
authorMatthieu Harlé <harle.matthieu@gmail.com>
Wed, 9 Aug 2017 13:42:50 +0000 (15:42 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 9 Aug 2017 17:35:40 +0000 (19:35 +0200)
source/file.go
source/file_test.go

index cbd83d17b02b11a030692d8dccee90567f54f7f0..a630431c6a544a093f6aebd90a4c717e21f2ff5f 100644 (file)
@@ -155,7 +155,7 @@ func (sp SourceSpec) NewFile(relpath string) *File {
        }
 
        f.section = helpers.GuessSection(f.Dir())
-       f.uniqueID = helpers.Md5String(f.Path())
+       f.uniqueID = helpers.Md5String(filepath.ToSlash(f.relpath))
 
        return f
 }
index a152b4bf5c416cb1a699ebf131fde0ba16950537..64ad6fb46fb06575dbeb25855f5a6bf0b0e5d129 100644 (file)
@@ -37,6 +37,11 @@ func TestFileUniqueID(t *testing.T) {
        f4 := ss.NewFile(filepath.FromSlash("test2/index.md"))
 
        assert.NotEqual(t, f3.UniqueID(), f4.UniqueID())
+
+       f5l := ss.NewFile("test3/index.md")
+       f5w := ss.NewFile(filepath.FromSlash("test3/index.md"))
+
+       assert.Equal(t, f5l.UniqueID(), f5w.UniqueID())
 }
 
 func TestFileString(t *testing.T) {