mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-16 11:37:36 +02:00
acf2f13dcb
* sync with MontFerret/ferret * fix --param handling When params is converted to map it uses strings.Split, which slices a string into all substrings separated by :. * remove impossible conditions nil != nil * delete ineffectual assignments * replace '+= 1' with '++' * remove useless comparison with nil * merge variable declarations * remove bool comparison * fix imports * fix imports * delete unused file * use copy instead of loop * delete unused DummyInterface * remove unnecassary break statements * tidy modules
68 lines
2.0 KiB
Go
68 lines
2.0 KiB
Go
package expressions_test
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/values/types"
|
|
|
|
"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 TestNewParameterExpression(t *testing.T) {
|
|
Convey("Should create a parameter expression", t, func() {
|
|
sourceMap := core.NewSourceMap("test", 1, 1)
|
|
s, err := expressions.NewParameterExpression(sourceMap, "test")
|
|
|
|
So(err, ShouldBeNil)
|
|
So(s, ShouldHaveSameTypeAs, &expressions.ParameterExpression{})
|
|
})
|
|
|
|
Convey("Should not create a parameter expression with empty name", t, func() {
|
|
sourceMap := core.NewSourceMap("test", 1, 1)
|
|
s, err := expressions.NewParameterExpression(sourceMap, "")
|
|
|
|
So(err, ShouldNotBeNil)
|
|
So(err, ShouldHaveSameTypeAs, core.ErrMissedArgument)
|
|
So(s, ShouldBeNil)
|
|
})
|
|
}
|
|
|
|
func TestParameterExpressionExec(t *testing.T) {
|
|
Convey("Should exec an existing parameter expression", t, func() {
|
|
sourceMap := core.NewSourceMap("test", 1, 10)
|
|
existExp, err := expressions.NewParameterExpression(sourceMap, "param1")
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
params := make(map[string]core.Value)
|
|
params["param1"] = values.NewInt(1)
|
|
|
|
ctx := core.ParamsWith(context.Background(), params)
|
|
value, err := existExp.Exec(ctx, &core.Scope{})
|
|
|
|
So(err, ShouldBeNil)
|
|
So(value.Type().Equals(types.Int), ShouldBeTrue)
|
|
So(value.String(), ShouldEqual, "1")
|
|
})
|
|
|
|
Convey("Should not exec a missing parameter expression", t, func() {
|
|
sourceMap := core.NewSourceMap("test", 1, 10)
|
|
notExistExp, err := expressions.NewParameterExpression(sourceMap, "param2")
|
|
So(err, ShouldBeNil)
|
|
|
|
params := make(map[string]core.Value)
|
|
params["param1"] = values.NewInt(1)
|
|
|
|
ctx := core.ParamsWith(context.Background(), params)
|
|
value, err := notExistExp.Exec(ctx, &core.Scope{})
|
|
|
|
So(err, ShouldNotBeNil)
|
|
So(err, ShouldHaveSameTypeAs, core.ErrNotFound)
|
|
So(value.Type().Equals(types.None), ShouldBeTrue)
|
|
})
|
|
}
|