1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-03-05 15:16:07 +02:00

add unit test for runtime/expressions - return (#146)

This commit is contained in:
Artem Kartasov 2018-10-28 00:12:41 +07:00 committed by Tim Voronov
parent b3e0a68cd0
commit 8c95f3b12e

View File

@ -0,0 +1,71 @@
package expressions_test
import (
"context"
"testing"
"github.com/MontFerret/ferret/pkg/runtime/core"
"github.com/MontFerret/ferret/pkg/runtime/expressions"
"github.com/MontFerret/ferret/pkg/runtime/values"
. "github.com/smartystreets/goconvey/convey"
)
func TestNewReturnExpression(t *testing.T) {
Convey("Should match", t, func() {
sourceMap := core.NewSourceMap("test", 1, 10)
predicate, err := expressions.NewVariableExpression(sourceMap, "testExp")
So(err, ShouldBeNil)
exp, err := expressions.NewReturnExpression(sourceMap, predicate)
So(err, ShouldBeNil)
So(exp, ShouldHaveSameTypeAs, &expressions.ReturnExpression{})
})
Convey("Should match", t, func() {
sourceMap := core.NewSourceMap("test", 1, 1)
exp, err := expressions.NewReturnExpression(sourceMap, nil)
So(err, ShouldBeError)
So(exp, ShouldBeNil)
})
}
func TestReturnExpressionExec(t *testing.T) {
Convey("Should match", t, func() {
sourceMap := core.NewSourceMap("test", 1, 1)
predicate, err := expressions.NewVariableExpression(sourceMap, "test")
So(err, ShouldBeNil)
exp, err := expressions.NewReturnExpression(sourceMap, predicate)
So(err, ShouldBeNil)
rootScope, fn := core.NewRootScope()
scope := core.NewScope(rootScope)
scope.SetVariable("test", values.NewString("value"))
fn()
value, err := exp.Exec(context.Background(), scope)
So(err, ShouldBeNil)
So(value, ShouldNotBeNil)
So(value, ShouldEqual, "value")
})
Convey("Should match", t, func() {
sourceMap := core.NewSourceMap("test", 1, 1)
predicate, err := expressions.NewVariableExpression(sourceMap, "notExist")
So(err, ShouldBeNil)
exp, err := expressions.NewReturnExpression(sourceMap, predicate)
So(err, ShouldBeNil)
rootScope, fn := core.NewRootScope()
scope := core.NewScope(rootScope)
scope.SetVariable("test", values.NewString("value"))
fn()
value, err := exp.Exec(context.Background(), scope)
So(err, ShouldNotBeNil)
So(err, ShouldHaveSameTypeAs, core.ErrNotFound)
So(value, ShouldHaveSameTypeAs, values.None)
})
}