1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-04-04 22:34:40 +02:00
Tim Voronov ec2d6a659b
Feature/#9 array functions ()
*  Added 'APPEND' function

*  Added 'FIRST' function

*  Added 'FLATTEN' function

*  Added 'INTERSECTION' function

*  Added 'LAST' function

*  Added 'MINUS' function

*  Added 'NTH' function

*  Added 'OUTERSECTION' function

*  Added 'POP' function

*  Added 'POSITION' function

*  Added 'PUSH' function

* Fixed nil pointer exception in value parser

*  Added 'REMOVE_NTH' function

*  Added 'REMOVE_VALUE' function

*  Added 'REMOVE_VALUES' function

*  Added 'REVERSE' function

*  Added 'SHIFT' function

*  Added 'SLICE' function

* Removed meme

*  Added 'SORTED' function

*  Added SORTED_UNIQUE function

*  Added 'UNION' function

*  Added 'UNION_DISTINCT' function

*  Added 'UNIQUE' function

*  Added 'UNSHIFT' function

*  Made more strict optional arg validation

*  Fixed linting errors
2018-10-05 21:27:34 -04:00

45 lines
1.0 KiB
Go

package arrays_test
import (
"context"
"github.com/MontFerret/ferret/pkg/runtime/values"
"github.com/MontFerret/ferret/pkg/stdlib/arrays"
. "github.com/smartystreets/goconvey/convey"
"testing"
)
func TestNth(t *testing.T) {
Convey("Should return item by index", t, func() {
arr := values.NewArrayWith(
values.NewInt(1),
values.NewInt(2),
values.NewInt(3),
values.NewInt(4),
values.NewInt(5),
)
out, err := arrays.Nth(context.Background(), arr, values.NewInt(1))
So(err, ShouldBeNil)
So(out.Compare(values.NewInt(2)), ShouldEqual, 0)
})
Convey("Should return None when no value", t, func() {
arr := values.NewArrayWith()
out, err := arrays.Nth(context.Background(), arr, values.NewInt(1))
So(err, ShouldBeNil)
So(out.Compare(values.None), ShouldEqual, 0)
})
Convey("Should return None when passed negative value", t, func() {
arr := values.NewArrayWith()
out, err := arrays.Nth(context.Background(), arr, values.NewInt(-1))
So(err, ShouldBeNil)
So(out.Compare(values.None), ShouldEqual, 0)
})
}