mirror of
https://github.com/grafana/grafana.git
synced 2024-11-28 03:34:15 -06:00
38 lines
1.1 KiB
Go
38 lines
1.1 KiB
Go
package cleanup
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/grafana/grafana/pkg/setting"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestCleanUpTmpFiles(t *testing.T) {
|
|
cfg := setting.Cfg{}
|
|
cfg.TempDataLifetime, _ = time.ParseDuration("24h")
|
|
service := CleanUpService{
|
|
Cfg: &cfg,
|
|
}
|
|
now := time.Now()
|
|
secondAgo := now.Add(-time.Second)
|
|
twoDaysAgo := now.Add(-time.Second * 3600 * 24 * 2)
|
|
weekAgo := now.Add(-time.Second * 3600 * 24 * 7)
|
|
t.Run("Should not cleanup recent files", func(t *testing.T) {
|
|
require.False(t, service.shouldCleanupTempFile(secondAgo, now))
|
|
})
|
|
t.Run("Should cleanup older files", func(t *testing.T) {
|
|
require.True(t, service.shouldCleanupTempFile(twoDaysAgo, now))
|
|
})
|
|
|
|
t.Run("After increasing temporary files lifetime, older files should be kept", func(t *testing.T) {
|
|
cfg.TempDataLifetime, _ = time.ParseDuration("1000h")
|
|
require.False(t, service.shouldCleanupTempFile(weekAgo, now))
|
|
})
|
|
|
|
t.Run("If lifetime is 0, files should never be cleaned up", func(t *testing.T) {
|
|
cfg.TempDataLifetime = 0
|
|
require.False(t, service.shouldCleanupTempFile(weekAgo, now))
|
|
})
|
|
}
|