zitadel/internal/errors/internal_test.go
livio-a 87d5cd3f09
Init (#17)
* add basic gitignore

* init go mod

* add semrel and badges

* add error pkg

* added config pkg

* added main cmd structure

* return error on file not found and added log ids and messages

* add todo for error_creator.go
2020-03-19 14:39:06 +01:00

34 lines
673 B
Go

package errors_test
import (
"errors"
"testing"
"github.com/stretchr/testify/assert"
caos_errs "github.com/caos/utils/errors"
)
func TestInternalError(t *testing.T) {
var err interface{}
err = new(caos_errs.InternalError)
_, ok := err.(caos_errs.Internal)
assert.True(t, ok)
}
func TestThrowInternalf(t *testing.T) {
err := caos_errs.ThrowInternalf(nil, "id", "msg")
_, ok := err.(*caos_errs.InternalError)
assert.True(t, ok)
}
func TestIsInternal(t *testing.T) {
err := caos_errs.ThrowInternal(nil, "id", "msg")
ok := caos_errs.IsInternal(err)
assert.True(t, ok)
err = errors.New("I am found!")
ok = caos_errs.IsInternal(err)
assert.False(t, ok)
}