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

65 lines
1.6 KiB

package iam
import (
"testing"
"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("WithName", func(t *testing.T) {
assert := assert.New(t)
opts := getOpts(WithName("test"))
testOpts := getDefaultOptions()
testOpts.withName = "test"
assert.Equal(opts, testOpts)
})
t.Run("WithDescription", func(t *testing.T) {
assert := assert.New(t)
opts := getOpts(WithDescription("test desc"))
testOpts := getDefaultOptions()
testOpts.withDescription = "test desc"
assert.Equal(opts, testOpts)
})
t.Run("WithLimit", func(t *testing.T) {
assert := assert.New(t)
// test default of 0
opts := getOpts()
testOpts := getDefaultOptions()
testOpts.withLimit = 0
assert.Equal(opts, testOpts)
opts = getOpts(WithLimit(-1))
testOpts = getDefaultOptions()
testOpts.withLimit = -1
assert.Equal(opts, testOpts)
opts = getOpts(WithLimit(1))
testOpts = getDefaultOptions()
testOpts.withLimit = 1
assert.Equal(opts, testOpts)
})
t.Run("WithAutoVivify", func(t *testing.T) {
assert := assert.New(t)
// test default of false
opts := getOpts()
testOpts := getDefaultOptions()
testOpts.withAutoVivify = false
assert.Equal(opts, testOpts)
opts = getOpts(WithAutoVivify(true))
testOpts = getDefaultOptions()
testOpts.withAutoVivify = true
assert.Equal(opts, testOpts)
})
t.Run("WithGrantScopeId", func(t *testing.T) {
assert := assert.New(t)
opts := getOpts(WithGrantScopeId("o_1234"))
testOpts := getDefaultOptions()
testOpts.withGrantScopeId = "o_1234"
assert.Equal(opts, testOpts)
})
}