1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-07-07 09:37:49 +02:00

testing with more than 30days

This commit is contained in:
Chris Lu 2020-08-31 17:59:29 -07:00
parent dd176cdb8b
commit dbb10e0f0b

View file

@ -30,6 +30,11 @@ func TestTTLReadWrite(t *testing.T) {
t.Errorf("5d ttl:%v", ttl) t.Errorf("5d ttl:%v", ttl)
} }
ttl, _ = ReadTTL("50d")
if ttl.Minutes() != 50*24*60 {
t.Errorf("50d ttl:%v", ttl)
}
ttl, _ = ReadTTL("5w") ttl, _ = ReadTTL("5w")
if ttl.Minutes() != 5*7*24*60 { if ttl.Minutes() != 5*7*24*60 {
t.Errorf("5w ttl:%v", ttl) t.Errorf("5w ttl:%v", ttl)