You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/scheduler/options_test.go

78 lines
2.2 KiB

package scheduler
import (
"testing"
"time"
"github.com/stretchr/testify/assert"
)
// Test_GetOpts provides unit tests for GetOpts and all the options
func Test_GetOpts(t *testing.T) {
t.Parallel()
t.Run("WithRunJobsLimit", func(t *testing.T) {
assert := assert.New(t)
opts := getOpts(WithRunJobsLimit(10))
testOpts := getDefaultOptions()
assert.NotEqual(opts, testOpts)
testOpts.withRunJobsLimit = 10
assert.Equal(opts, testOpts)
})
t.Run("WithZeroRunJobsLimit", func(t *testing.T) {
assert := assert.New(t)
opts := getOpts(WithRunJobsLimit(0))
testOpts := getDefaultOptions()
assert.Equal(opts, testOpts)
})
t.Run("WithRunJobsInterval", func(t *testing.T) {
assert := assert.New(t)
opts := getOpts(WithRunJobsInterval(time.Hour))
testOpts := getDefaultOptions()
assert.NotEqual(opts, testOpts)
testOpts.withRunJobInterval = time.Hour
assert.Equal(opts, testOpts)
})
t.Run("WithZeroRunJobsInterval", func(t *testing.T) {
assert := assert.New(t)
opts := getOpts(WithRunJobsInterval(0))
testOpts := getDefaultOptions()
assert.Equal(opts, testOpts)
})
t.Run("WithMonitorInterval", func(t *testing.T) {
assert := assert.New(t)
opts := getOpts(WithMonitorInterval(time.Hour))
testOpts := getDefaultOptions()
assert.NotEqual(opts, testOpts)
testOpts.withMonitorInterval = time.Hour
assert.Equal(opts, testOpts)
})
t.Run("WithZeroMonitorInterval", func(t *testing.T) {
assert := assert.New(t)
opts := getOpts(WithMonitorInterval(0))
testOpts := getDefaultOptions()
assert.Equal(opts, testOpts)
})
t.Run("WithInterruptThreshold", func(t *testing.T) {
assert := assert.New(t)
opts := getOpts(WithInterruptThreshold(time.Hour))
testOpts := getDefaultOptions()
assert.NotEqual(opts, testOpts)
testOpts.withInterruptThreshold = time.Hour
assert.Equal(opts, testOpts)
})
t.Run("WithZeroInterruptThreshold", func(t *testing.T) {
assert := assert.New(t)
opts := getOpts(WithInterruptThreshold(0))
testOpts := getDefaultOptions()
assert.Equal(opts, testOpts)
})
t.Run("WithRunNow", func(t *testing.T) {
assert := assert.New(t)
opts := getOpts(WithRunNow(true))
testOpts := getDefaultOptions()
assert.NotEqual(opts, testOpts)
testOpts.withRunNow = true
assert.Equal(opts, testOpts)
})
}