Skip to content

Commit

Permalink
Merge pull request #334 from KastenMike/add-modTime-to-folders
Browse files Browse the repository at this point in the history
add modTime on folder creation
  • Loading branch information
0xmichalis committed Feb 5, 2022
2 parents cd35605 + 9440921 commit 450b30f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion mem/file.go
Expand Up @@ -71,7 +71,7 @@ func CreateFile(name string) *FileData {
}

func CreateDir(name string) *FileData {
return &FileData{name: name, memDir: &DirMap{}, dir: true}
return &FileData{name: name, memDir: &DirMap{}, dir: true, modtime: time.Now()}
}

func ChangeFileName(f *FileData, newname string) {
Expand Down
9 changes: 9 additions & 0 deletions memmap_test.go
Expand Up @@ -450,6 +450,9 @@ func TestMemFsMkdirAllMode(t *testing.T) {
if !info.Mode().IsDir() {
t.Error("/a: mode is not directory")
}
if !info.ModTime().After(time.Now().Add(-1 * time.Hour)) {
t.Errorf("/a: mod time not set, got %s", info.ModTime())
}
if info.Mode() != os.FileMode(os.ModeDir|0755) {
t.Errorf("/a: wrong permissions, expected drwxr-xr-x, got %s", info.Mode())
}
Expand All @@ -463,6 +466,9 @@ func TestMemFsMkdirAllMode(t *testing.T) {
if info.Mode() != os.FileMode(os.ModeDir|0755) {
t.Errorf("/a/b: wrong permissions, expected drwxr-xr-x, got %s", info.Mode())
}
if !info.ModTime().After(time.Now().Add(-1 * time.Hour)) {
t.Errorf("/a/b: mod time not set, got %s", info.ModTime())
}
info, err = fs.Stat("/a/b/c")
if err != nil {
t.Fatal(err)
Expand All @@ -473,6 +479,9 @@ func TestMemFsMkdirAllMode(t *testing.T) {
if info.Mode() != os.FileMode(os.ModeDir|0755) {
t.Errorf("/a/b/c: wrong permissions, expected drwxr-xr-x, got %s", info.Mode())
}
if !info.ModTime().After(time.Now().Add(-1 * time.Hour)) {
t.Errorf("/a/b/c: mod time not set, got %s", info.ModTime())
}
}

// MkdirAll does not change permissions of already-existing directories
Expand Down

0 comments on commit 450b30f

Please sign in to comment.