mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-28 11:03:30 +01:00
95 lines
2.2 KiB
Go
95 lines
2.2 KiB
Go
|
package server
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
"math/rand"
|
||
|
"sync"
|
||
|
"testing"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
func TestScheduler_Performance(t *testing.T) {
|
||
|
scheduler := NewDefaultScheduler()
|
||
|
n := 500
|
||
|
wg := &sync.WaitGroup{}
|
||
|
wg.Add(n)
|
||
|
maxMs := 500
|
||
|
minMs := 50
|
||
|
for i := 0; i < n; i++ {
|
||
|
millis := time.Duration(rand.Intn(maxMs-minMs)+minMs) * time.Millisecond
|
||
|
go scheduler.Schedule(millis, fmt.Sprintf("test-scheduler-job-%d", i), func() (nextRunIn time.Duration, reschedule bool) {
|
||
|
time.Sleep(millis)
|
||
|
wg.Done()
|
||
|
return 0, false
|
||
|
})
|
||
|
}
|
||
|
failed := waitTimeout(wg, 3*time.Second)
|
||
|
if failed {
|
||
|
t.Fatal("timed out while waiting for test to finish")
|
||
|
return
|
||
|
}
|
||
|
assert.Len(t, scheduler.jobs, 0)
|
||
|
}
|
||
|
|
||
|
func TestScheduler_Cancel(t *testing.T) {
|
||
|
jobID1 := "test-scheduler-job-1"
|
||
|
jobID2 := "test-scheduler-job-2"
|
||
|
scheduler := NewDefaultScheduler()
|
||
|
scheduler.Schedule(2*time.Second, jobID1, func() (nextRunIn time.Duration, reschedule bool) {
|
||
|
return 0, false
|
||
|
})
|
||
|
scheduler.Schedule(2*time.Second, jobID2, func() (nextRunIn time.Duration, reschedule bool) {
|
||
|
return 0, false
|
||
|
})
|
||
|
|
||
|
assert.Len(t, scheduler.jobs, 2)
|
||
|
scheduler.Cancel([]string{jobID1})
|
||
|
assert.Len(t, scheduler.jobs, 1)
|
||
|
assert.NotNil(t, scheduler.jobs[jobID2])
|
||
|
}
|
||
|
|
||
|
func TestScheduler_Schedule(t *testing.T) {
|
||
|
jobID := "test-scheduler-job-1"
|
||
|
scheduler := NewDefaultScheduler()
|
||
|
wg := &sync.WaitGroup{}
|
||
|
wg.Add(1)
|
||
|
// job without reschedule should be triggered once
|
||
|
job := func() (nextRunIn time.Duration, reschedule bool) {
|
||
|
wg.Done()
|
||
|
return 0, false
|
||
|
}
|
||
|
scheduler.Schedule(300*time.Millisecond, jobID, job)
|
||
|
failed := waitTimeout(wg, time.Second)
|
||
|
if failed {
|
||
|
t.Fatal("timed out while waiting for test to finish")
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// job with reschedule should be triggered at least twice
|
||
|
wg = &sync.WaitGroup{}
|
||
|
mx := &sync.Mutex{}
|
||
|
scheduledTimes := 0
|
||
|
wg.Add(2)
|
||
|
job = func() (nextRunIn time.Duration, reschedule bool) {
|
||
|
mx.Lock()
|
||
|
defer mx.Unlock()
|
||
|
// ensure we repeat only twice
|
||
|
if scheduledTimes < 2 {
|
||
|
wg.Done()
|
||
|
scheduledTimes++
|
||
|
return 300 * time.Millisecond, true
|
||
|
}
|
||
|
return 0, false
|
||
|
}
|
||
|
|
||
|
scheduler.Schedule(300*time.Millisecond, jobID, job)
|
||
|
failed = waitTimeout(wg, time.Second)
|
||
|
if failed {
|
||
|
t.Fatal("timed out while waiting for test to finish")
|
||
|
return
|
||
|
}
|
||
|
scheduler.cancel(jobID)
|
||
|
|
||
|
}
|