1
0
mirror of https://github.com/MontFerret/ferret.git synced 2024-12-16 11:37:36 +02:00
ferret/pkg/stdlib/arrays/remove_nth_test.go

42 lines
1012 B
Go
Raw Normal View History

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 TestRemoveNth(t *testing.T) {
Convey("Should return a copy of an array without an element by its position", t, func() {
arr := values.NewArrayWith(
values.NewInt(1),
values.NewInt(2),
values.NewInt(3),
values.NewInt(4),
values.NewInt(5),
)
out, err := arrays.RemoveNth(context.Background(), arr, values.NewInt(2))
So(err, ShouldBeNil)
So(out.String(), ShouldEqual, "[1,2,4,5]")
})
Convey("Should return a copy of an array with all elements when a position is invalid", t, func() {
arr := values.NewArrayWith(
values.NewInt(1),
values.NewInt(2),
values.NewInt(3),
values.NewInt(4),
values.NewInt(5),
)
out, err := arrays.RemoveNth(context.Background(), arr, values.NewInt(6))
So(err, ShouldBeNil)
So(out.String(), ShouldEqual, "[1,2,3,4,5]")
})
}