feat(scrobble): add backoffDelay schedule (1m, 5m, 30m, 2h, 6h, give up)

This commit is contained in:
2026-04-28 09:14:08 -04:00
parent dba1deaad1
commit 8ce39a8868
2 changed files with 61 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
package scrobble
import (
"testing"
"time"
)
func TestBackoffDelay(t *testing.T) {
cases := []struct {
attempts int
want time.Duration
ok bool
}{
{1, 1 * time.Minute, true},
{2, 5 * time.Minute, true},
{3, 30 * time.Minute, true},
{4, 2 * time.Hour, true},
{5, 6 * time.Hour, true},
{6, 0, false},
{99, 0, false},
}
for _, c := range cases {
got, ok := backoffDelay(c.attempts)
if ok != c.ok {
t.Errorf("backoffDelay(%d) ok = %v, want %v", c.attempts, ok, c.ok)
}
if got != c.want {
t.Errorf("backoffDelay(%d) = %v, want %v", c.attempts, got, c.want)
}
}
}