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

54 lines
1.4 KiB

package authtoken
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("withTokenValue", func(t *testing.T) {
assert := assert.New(t)
opts := getOpts(withTokenValue())
testOpts := getDefaultOptions()
testOpts.withTokenValue = true
assert.Equal(opts, testOpts)
})
t.Run("WithTokenTimeToLiveDuration", func(t *testing.T) {
assert := assert.New(t)
opts := getOpts(WithTokenTimeToLiveDuration(1 * time.Hour))
testOpts := getDefaultOptions()
testOpts.withTokenTimeToLiveDuration = 1 * time.Hour
assert.Equal(opts, testOpts)
})
t.Run("WithTokenTimeToLiveStale", func(t *testing.T) {
assert := assert.New(t)
opts := getOpts(WithTokenTimeToStaleDuration(1 * time.Hour))
testOpts := getDefaultOptions()
testOpts.withTokenTimeToStaleDuration = 1 * time.Hour
assert.Equal(opts, testOpts)
})
t.Run("withStatus", func(t *testing.T) {
assert := assert.New(t)
opts := getOpts(WithStatus(IssuedStatus))
testOpts := getDefaultOptions()
testOpts.withStatus = IssuedStatus
assert.Equal(opts, testOpts)
})
t.Run("WithPublicId", func(t *testing.T) {
assert := assert.New(t)
opts := getOpts(WithPublicId("test-id"))
testOpts := getDefaultOptions()
testOpts.withPublicId = "test-id"
assert.Equal(opts, testOpts)
})
}