mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
1c90a4dd9a
Implement system.LUtimesNano and system.UtimesNano. The latter might be removed in future because it's basically same as os.Chtimes. That's why the test is mainly focusing LUtimesNano. Docker-DCO-1.1-Signed-off-by: Kato Kazuyoshi <kato.kazuyoshi@gmail.com> (github: kzys)
64 lines
1.3 KiB
Go
64 lines
1.3 KiB
Go
package system
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"os"
|
|
"path/filepath"
|
|
"syscall"
|
|
"testing"
|
|
)
|
|
|
|
func prepareFiles(t *testing.T) (string, string, string) {
|
|
dir, err := ioutil.TempDir("", "docker-system-test")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
file := filepath.Join(dir, "exist")
|
|
if err := ioutil.WriteFile(file, []byte("hello"), 0644); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
invalid := filepath.Join(dir, "doesnt-exist")
|
|
|
|
symlink := filepath.Join(dir, "symlink")
|
|
if err := os.Symlink(file, symlink); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
return file, invalid, symlink
|
|
}
|
|
|
|
func TestLUtimesNano(t *testing.T) {
|
|
file, invalid, symlink := prepareFiles(t)
|
|
|
|
before, err := os.Stat(file)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
ts := []syscall.Timespec{{0, 0}, {0, 0}}
|
|
if err := LUtimesNano(symlink, ts); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
symlinkInfo, err := os.Lstat(symlink)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if before.ModTime().Unix() == symlinkInfo.ModTime().Unix() {
|
|
t.Fatal("The modification time of the symlink should be different")
|
|
}
|
|
|
|
fileInfo, err := os.Stat(file)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if before.ModTime().Unix() != fileInfo.ModTime().Unix() {
|
|
t.Fatal("The modification time of the file should be same")
|
|
}
|
|
|
|
if err := LUtimesNano(invalid, ts); err == nil {
|
|
t.Fatal("Doesn't return an error on a non-existing file")
|
|
}
|
|
}
|