refactor: add idle watchgod to transport

This commit is contained in:
Jay
2026-05-20 08:10:02 -04:00
parent b8a2d47846
commit 09257e39b4
2 changed files with 186 additions and 0 deletions
+141
View File
@@ -0,0 +1,141 @@
package transport
import (
"context"
"git.wisehodl.dev/jay/go-honeybee/honeybeetest"
"github.com/stretchr/testify/assert"
"sync/atomic"
"testing"
"time"
)
func TestIdleWatchdog(t *testing.T) {
t.Run("heartbeat resets timer, onTimeout not called", func(t *testing.T) {
activity := make(chan struct{})
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
called := atomic.Bool{}
go IdleWatchdog(
ctx, activity, 200*time.Millisecond, func() { called.Store(true) },
)
for i := 0; i < 5; i++ {
time.Sleep(20 * time.Millisecond)
activity <- struct{}{}
}
honeybeetest.Never(t, func() bool {
return called.Load()
}, "unexpected onTimeout call")
})
t.Run("timeout fires onTimeout exactly once", func(t *testing.T) {
activity := make(chan struct{})
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
count := atomic.Int32{}
done := make(chan struct{})
go IdleWatchdog(
ctx, activity, 20*time.Millisecond, func() {
// will panic on second close
count.Add(1)
close(done)
},
)
honeybeetest.Eventually(t, func() bool {
select {
case <-done:
return true
default:
return false
}
}, "expected onTimeout")
assert.Equal(t, 1, int(count.Load()))
})
t.Run("ctx.Done exits without calling onTimeout", func(t *testing.T) {
activity := make(chan struct{})
ctx, cancel := context.WithCancel(context.Background())
called := atomic.Bool{}
done := make(chan struct{})
go func() {
IdleWatchdog(
ctx, activity, 20*time.Second, func() { called.Store(true) },
)
close(done)
}()
cancel()
honeybeetest.Eventually(t, func() bool {
select {
case <-done:
return true
default:
return false
}
}, "expected RunWatchdog to exit")
assert.False(t, called.Load())
})
t.Run("zero timeout exits on ctx.Done without firing onTimeout", func(t *testing.T) {
activity := make(chan struct{})
ctx, cancel := context.WithCancel(context.Background())
called := atomic.Bool{}
done := make(chan struct{})
go func() {
IdleWatchdog(
ctx, activity, 0, func() { called.Store(true) },
)
close(done)
}()
cancel()
honeybeetest.Eventually(t, func() bool {
select {
case <-done:
return true
default:
return false
}
}, "expected RunWatchdog to exit")
assert.False(t, called.Load())
})
t.Run("zero timeout drains activity without blocking", func(t *testing.T) {
activity := make(chan struct{})
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
done := make(chan struct{})
go func() {
IdleWatchdog(ctx, activity, 0, func() {})
close(done)
}()
// these must not block
for i := 0; i < 5; i++ {
activity <- struct{}{}
}
cancel()
honeybeetest.Eventually(t, func() bool {
select {
case <-done:
return true
default:
return false
}
}, "expected RunWatchdog to exit")
})
}