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

32 lines
889 B

package oplog
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()
assert := assert.New(t)
t.Run("WithFieldMaskPaths", func(t *testing.T) {
opts := GetOpts(WithFieldMaskPaths([]string{"test"}))
testOpts := getDefaultOptions()
testOpts[optionWithFieldMaskPaths] = []string{"test"}
assert.Equal(opts, testOpts)
})
t.Run("WithSetToNullPaths", func(t *testing.T) {
opts := GetOpts(WithSetToNullPaths([]string{"test"}))
testOpts := getDefaultOptions()
testOpts[optionWithSetToNullPaths] = []string{"test"}
assert.Equal(opts, testOpts)
})
t.Run("WithAggregateNames", func(t *testing.T) {
opts := GetOpts(WithAggregateNames(true))
testOpts := getDefaultOptions()
testOpts[optionWithAggregateNames] = true
assert.Equal(opts, testOpts)
})
}