rclone/backend/seafile/renew_test.go

35 lines
672 B
Go
Raw Normal View History

package seafile
import (
"sync/atomic"
"testing"
"time"
"github.com/stretchr/testify/assert"
)
func TestShouldAllowShutdownTwice(t *testing.T) {
renew := NewRenew(time.Hour, func() error {
return nil
})
renew.Shutdown()
renew.Shutdown()
}
2023-03-02 17:39:58 +01:00
func TestRenewalInTimeLimit(t *testing.T) {
2023-08-18 16:29:18 +02:00
var count atomic.Int64
2023-03-02 17:39:58 +01:00
renew := NewRenew(100*time.Millisecond, func() error {
2023-08-18 16:29:18 +02:00
count.Add(1)
return nil
})
2023-03-02 17:39:58 +01:00
time.Sleep(time.Second)
renew.Shutdown()
2023-03-02 17:39:58 +01:00
// there's no guarantee the CI agent can handle a simple goroutine
2023-08-18 16:29:18 +02:00
renewCount := count.Load()
2023-03-02 17:39:58 +01:00
t.Logf("renew count = %d", renewCount)
assert.Greater(t, renewCount, int64(0))
assert.Less(t, renewCount, int64(11))
}