mirror of
https://github.com/idanoo/autobrr
synced 2025-07-22 16:29:12 +00:00
52 lines
1 KiB
Go
52 lines
1 KiB
Go
// Copyright (c) 2021-2025, Ludvig Lundgren and the autobrr contributors.
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
package timecache
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func TestTime(t *testing.T) {
|
|
t.Parallel()
|
|
tc := (&Cache{}).Now()
|
|
if tc.IsZero() {
|
|
t.Fatalf("time is zero")
|
|
}
|
|
}
|
|
|
|
func TestRounding(t *testing.T) {
|
|
t.Parallel()
|
|
ti := New(Options{}.Round(time.Minute * 5)).Now()
|
|
|
|
if ti.Minute()%5 != 0 {
|
|
t.Fatalf("time is not a 5 multiple")
|
|
}
|
|
}
|
|
|
|
func TestResolution(t *testing.T) {
|
|
t.Parallel()
|
|
const magicNumber = 3
|
|
const rounds = 700
|
|
ti := New(Options{}.Round(time.Millisecond * magicNumber))
|
|
|
|
unique := 0
|
|
old := ti.Now().UnixMilli()
|
|
for i := 0; i < rounds; i++ {
|
|
new := ti.Now().UnixMilli()
|
|
if new > old {
|
|
unique++
|
|
old = new
|
|
}
|
|
|
|
if div := new % magicNumber; div != 0 {
|
|
t.Fatalf("not a multiple of %d: %d", magicNumber, div)
|
|
}
|
|
time.Sleep(time.Millisecond * 1)
|
|
}
|
|
|
|
if unique < rounds/magicNumber-1 {
|
|
t.Fatalf("not enough resolution rounds %d", unique)
|
|
}
|
|
}
|