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/server/job/options_test.go

28 lines
768 B

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package servers
import (
"testing"
"time"
"github.com/stretchr/testify/assert"
)
func Test_GetOpts(t *testing.T) {
t.Parallel()
t.Run("WithRotationFrequency", func(t *testing.T) {
testOpts := getDefaultOptions()
assert.Equal(t, testOpts.withRotationFrequency, defaultRotationFrequency)
opts := getOpts(WithRotationFrequency(time.Minute))
assert.Equal(t, time.Minute, opts.withRotationFrequency)
})
t.Run("WithCertificateLifetime", func(t *testing.T) {
testOpts := getDefaultOptions()
assert.Equal(t, testOpts.withCertificateLifetime, time.Duration(0))
opts := getOpts(WithCertificateLifetime(time.Minute))
assert.Equal(t, time.Minute, opts.withCertificateLifetime)
})
}