2018-10-04 21:43:04 +02:00
|
|
|
package core_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2018-10-04 21:46:34 +02:00
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/core"
|
2018-10-04 21:43:04 +02:00
|
|
|
"github.com/pkg/errors"
|
|
|
|
. "github.com/smartystreets/goconvey/convey"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestSourceError(t *testing.T) {
|
|
|
|
Convey("Should match", t, func() {
|
|
|
|
sm := core.NewSourceMap("test", 1, 1)
|
|
|
|
|
|
|
|
msg := "test at 1:1"
|
|
|
|
cause := errors.New("cause")
|
|
|
|
e := errors.Errorf("%s: %s", cause.Error(), msg)
|
|
|
|
|
|
|
|
cse := core.SourceError(sm, cause)
|
|
|
|
So(cse, ShouldNotBeNil)
|
|
|
|
So(cse.Error(), ShouldEqual, e.Error())
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestError(t *testing.T) {
|
|
|
|
Convey("Should match", t, func() {
|
|
|
|
msg := "test message"
|
|
|
|
cause := errors.New("cause")
|
|
|
|
e := errors.Errorf("%s: %s", cause.Error(), msg)
|
|
|
|
|
|
|
|
ce := core.Error(cause, msg)
|
|
|
|
So(ce, ShouldNotBeNil)
|
|
|
|
So(ce.Error(), ShouldEqual, e.Error())
|
|
|
|
})
|
|
|
|
}
|