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

40 lines
987 B

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package convert
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("WithChannelId", func(t *testing.T) {
assert := assert.New(t)
channelId := "channel-id"
opts := getOpts(WithChannelId(channelId))
testOpts := getDefaultOptions()
testOpts.withChannelId = channelId
assert.Equal(opts, testOpts)
})
t.Run("WithMinWidth", func(t *testing.T) {
assert := assert.New(t)
width := uint32(23)
opts := getOpts(WithMinWidth(width))
testOpts := getDefaultOptions()
testOpts.withMinWidth = width
assert.Equal(opts, testOpts)
})
t.Run("WithMinHeight", func(t *testing.T) {
assert := assert.New(t)
height := uint32(64)
opts := getOpts(WithMinHeight(height))
testOpts := getDefaultOptions()
testOpts.withMinHeight = height
assert.Equal(opts, testOpts)
})
}