mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
40b77af234
Signed-off-by: Darren Stahl <darst@microsoft.com>
121 lines
3 KiB
Go
121 lines
3 KiB
Go
// +build linux freebsd
|
|
|
|
package system
|
|
|
|
import (
|
|
"os"
|
|
"syscall"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
// TestChtimes tests Chtimes access time on a tempfile on Linux
|
|
func TestChtimesLinux(t *testing.T) {
|
|
file, dir := prepareTempFile(t)
|
|
defer os.RemoveAll(dir)
|
|
|
|
beforeUnixEpochTime := time.Unix(0, 0).Add(-100 * time.Second)
|
|
unixEpochTime := time.Unix(0, 0)
|
|
afterUnixEpochTime := time.Unix(100, 0)
|
|
// The max Unix time is 33 bits set
|
|
unixMaxTime := unixEpochTime.Add((1<<33 - 1) * time.Second)
|
|
afterUnixMaxTime := unixMaxTime.Add(100 * time.Second)
|
|
|
|
// Test both aTime and mTime set to Unix Epoch
|
|
Chtimes(file, unixEpochTime, unixEpochTime)
|
|
|
|
f, err := os.Stat(file)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
stat := f.Sys().(*syscall.Stat_t)
|
|
aTime := time.Unix(int64(stat.Atim.Sec), int64(stat.Atim.Nsec))
|
|
if aTime != unixEpochTime {
|
|
t.Fatalf("Expected: %s, got: %s", unixEpochTime, aTime)
|
|
}
|
|
|
|
// Test aTime before Unix Epoch and mTime set to Unix Epoch
|
|
Chtimes(file, beforeUnixEpochTime, unixEpochTime)
|
|
|
|
f, err = os.Stat(file)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
stat = f.Sys().(*syscall.Stat_t)
|
|
aTime = time.Unix(int64(stat.Atim.Sec), int64(stat.Atim.Nsec))
|
|
if aTime != unixEpochTime {
|
|
t.Fatalf("Expected: %s, got: %s", unixEpochTime, aTime)
|
|
}
|
|
|
|
// Test aTime set to Unix Epoch and mTime before Unix Epoch
|
|
Chtimes(file, unixEpochTime, beforeUnixEpochTime)
|
|
|
|
f, err = os.Stat(file)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
stat = f.Sys().(*syscall.Stat_t)
|
|
aTime = time.Unix(int64(stat.Atim.Sec), int64(stat.Atim.Nsec))
|
|
if aTime != unixEpochTime {
|
|
t.Fatalf("Expected: %s, got: %s", unixEpochTime, aTime)
|
|
}
|
|
|
|
// Test both aTime and mTime set to after Unix Epoch (valid time)
|
|
Chtimes(file, afterUnixEpochTime, afterUnixEpochTime)
|
|
|
|
f, err = os.Stat(file)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
stat = f.Sys().(*syscall.Stat_t)
|
|
aTime = time.Unix(int64(stat.Atim.Sec), int64(stat.Atim.Nsec))
|
|
if aTime != afterUnixEpochTime {
|
|
t.Fatalf("Expected: %s, got: %s", afterUnixEpochTime, aTime)
|
|
}
|
|
|
|
// Test both aTime and mTime set to Unix max time
|
|
Chtimes(file, unixMaxTime, unixMaxTime)
|
|
|
|
f, err = os.Stat(file)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
stat = f.Sys().(*syscall.Stat_t)
|
|
aTime = time.Unix(int64(stat.Atim.Sec), int64(stat.Atim.Nsec))
|
|
if aTime != unixMaxTime {
|
|
t.Fatalf("Expected: %s, got: %s", unixMaxTime, aTime)
|
|
}
|
|
|
|
// Test aTime after Unix max time and mTime set to Unix max time
|
|
Chtimes(file, afterUnixMaxTime, unixMaxTime)
|
|
|
|
f, err = os.Stat(file)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
stat = f.Sys().(*syscall.Stat_t)
|
|
aTime = time.Unix(int64(stat.Atim.Sec), int64(stat.Atim.Nsec))
|
|
if aTime != unixEpochTime {
|
|
t.Fatalf("Expected: %s, got: %s", unixEpochTime, aTime)
|
|
}
|
|
|
|
// Test aTime set to Unix Epoch and mTime before Unix Epoch
|
|
Chtimes(file, unixMaxTime, afterUnixMaxTime)
|
|
|
|
f, err = os.Stat(file)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
stat = f.Sys().(*syscall.Stat_t)
|
|
aTime = time.Unix(int64(stat.Atim.Sec), int64(stat.Atim.Nsec))
|
|
if aTime != unixMaxTime {
|
|
t.Fatalf("Expected: %s, got: %s", unixMaxTime, aTime)
|
|
}
|
|
}
|