mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
fa9f581d56
* chore: move to new org * logging * fix: org rename caos -> zitadel Co-authored-by: adlerhurst <silvan.reusser@gmail.com>
34 lines
796 B
Go
34 lines
796 B
Go
package errors_test
|
|
|
|
import (
|
|
"errors"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
caos_errs "github.com/zitadel/zitadel/internal/errors"
|
|
)
|
|
|
|
func TestPreconditionFailedError(t *testing.T) {
|
|
var err interface{}
|
|
err = new(caos_errs.PreconditionFailedError)
|
|
_, ok := err.(caos_errs.PreconditionFailed)
|
|
assert.True(t, ok)
|
|
}
|
|
|
|
func TestThrowPreconditionFailedf(t *testing.T) {
|
|
err := caos_errs.ThrowPreconditionFailedf(nil, "id", "msg")
|
|
_, ok := err.(*caos_errs.PreconditionFailedError)
|
|
assert.True(t, ok)
|
|
}
|
|
|
|
func TestIsPreconditionFailed(t *testing.T) {
|
|
err := caos_errs.ThrowPreconditionFailed(nil, "id", "msg")
|
|
ok := caos_errs.IsPreconditionFailed(err)
|
|
assert.True(t, ok)
|
|
|
|
err = errors.New("Precondition failed!")
|
|
ok = caos_errs.IsPreconditionFailed(err)
|
|
assert.False(t, ok)
|
|
}
|