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

30 lines
716 B

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package schema
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("WithEditions", func(t *testing.T) {
assert := assert.New(t)
editions := TestCreatePartialEditions(Postgres, PartialEditions{"oss": 1})
opts := getOpts(WithEditions(editions))
assert.Equal(opts.withEditions, editions)
})
t.Run("WithDeleteLog", func(t *testing.T) {
assert := assert.New(t)
opts := getOpts(WithDeleteLog(true))
testOpts := getDefaultOptions()
testOpts.withDeleteLog = true
assert.Equal(opts, testOpts)
})
}