2018-10-06 03:27:34 +02:00
|
|
|
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 TestPush(t *testing.T) {
|
|
|
|
Convey("Should create a new array with a new element in the end", t, func() {
|
|
|
|
arr := values.NewArrayWith(
|
|
|
|
values.NewInt(1),
|
|
|
|
values.NewInt(2),
|
|
|
|
values.NewInt(3),
|
|
|
|
values.NewInt(4),
|
|
|
|
values.NewInt(5),
|
|
|
|
)
|
|
|
|
|
|
|
|
out, err := arrays.Push(context.Background(), arr, values.NewInt(6))
|
|
|
|
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
So(out.String(), ShouldEqual, "[1,2,3,4,5,6]")
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("Should not add a new element if not unique when uniqueness check is enabled", t, func() {
|
|
|
|
arr := values.NewArrayWith(
|
|
|
|
values.NewInt(1),
|
|
|
|
values.NewInt(2),
|
|
|
|
values.NewInt(3),
|
|
|
|
values.NewInt(4),
|
|
|
|
values.NewInt(5),
|
|
|
|
)
|
|
|
|
|
|
|
|
out, err := arrays.Push(
|
|
|
|
context.Background(),
|
|
|
|
arr,
|
|
|
|
values.NewInt(6),
|
|
|
|
values.True,
|
|
|
|
)
|
|
|
|
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
So(out.String(), ShouldEqual, "[1,2,3,4,5,6]")
|
|
|
|
|
|
|
|
out2, err := arrays.Push(
|
|
|
|
context.Background(),
|
|
|
|
arr,
|
|
|
|
values.NewInt(6),
|
|
|
|
values.True,
|
|
|
|
)
|
|
|
|
|
2019-05-03 23:10:34 +02:00
|
|
|
So(err, ShouldBeNil)
|
2018-10-06 03:27:34 +02:00
|
|
|
So(out2.String(), ShouldEqual, "[1,2,3,4,5,6]")
|
|
|
|
})
|
|
|
|
}
|