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
777 B

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("WithMigrationStates", func(t *testing.T) {
assert := assert.New(t)
oState := TestCloneMigrationStates(t)
nState := TestCreatePartialMigrationState(oState["postgres"], 8)
oState["postgres"] = nState
opts := getOpts(WithMigrationStates(oState))
testOpts := getDefaultOptions()
testOpts.withMigrationStates = oState
assert.Equal(opts, testOpts)
})
t.Run("WithDeleteLog", func(t *testing.T) {
assert := assert.New(t)
opts := getOpts(WithDeleteLog(true))
testOpts := getDefaultOptions()
testOpts.withDeleteLog = true
assert.Equal(opts, testOpts)
})
}