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/errors/option_test.go

41 lines
882 B

package errors
import (
"fmt"
"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("WithMsg", func(t *testing.T) {
assert := assert.New(t)
// test default
opts := GetOpts()
testOpts := getDefaultOptions()
testOpts.withErrMsg = ""
assert.Equal(opts, testOpts)
// try setting it
opts = GetOpts(WithMsg("test msg"))
testOpts.withErrMsg = "test msg"
assert.Equal(opts, testOpts)
})
t.Run("WithWrap", func(t *testing.T) {
assert := assert.New(t)
// test default
opts := GetOpts()
testOpts := getDefaultOptions()
testOpts.withErrWrapped = nil
assert.Equal(opts, testOpts)
// try setting it
err := fmt.Errorf("test error")
opts = GetOpts(WithWrap(err))
testOpts.withErrWrapped = err
assert.Equal(opts, testOpts)
})
}