From 0abdeeef6740a3cbba0db95374853d040f2022b8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Matthieu=20Harl=C3=A9?= Date: Wed, 9 Aug 2017 15:42:50 +0200 Subject: [PATCH] source: Normalize UniqueID between Windows & Linux --- source/file.go | 2 +- source/file_test.go | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/source/file.go b/source/file.go index cbd83d17..a630431c 100644 --- a/source/file.go +++ b/source/file.go @@ -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 } diff --git a/source/file_test.go b/source/file_test.go index a152b4bf..64ad6fb4 100644 --- a/source/file_test.go +++ b/source/file_test.go @@ -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) { -- 2.30.2