mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-16 11:37:36 +02:00
f8e061cc80
* Move value specific Iterable and Iterator interfaces into core module * Update Makefile Reverted test command * Update collection.go * Fixed wrong iterator usage * Updated use of switch statements
51 lines
1.3 KiB
Go
51 lines
1.3 KiB
Go
package arrays_test
|
|
|
|
import (
|
|
"context"
|
|
"github.com/MontFerret/ferret/pkg/runtime/collections"
|
|
"github.com/MontFerret/ferret/pkg/runtime/values"
|
|
"github.com/MontFerret/ferret/pkg/stdlib/arrays"
|
|
. "github.com/smartystreets/goconvey/convey"
|
|
"testing"
|
|
)
|
|
|
|
func TestAppend(t *testing.T) {
|
|
Convey("Should return a copy of an array", t, func() {
|
|
arr := values.NewArrayWith(
|
|
values.NewInt(1),
|
|
values.NewInt(2),
|
|
values.NewInt(3),
|
|
values.NewInt(4),
|
|
values.NewInt(5),
|
|
)
|
|
|
|
out, err := arrays.Append(context.Background(), arr, values.NewInt(6))
|
|
|
|
So(err, ShouldBeNil)
|
|
So(out, ShouldNotEqual, arr)
|
|
So(out.(collections.Measurable).Length(), ShouldBeGreaterThan, arr.Length())
|
|
})
|
|
|
|
Convey("Should ignore non-unique items", t, func() {
|
|
arr := values.NewArrayWith(
|
|
values.NewInt(1),
|
|
values.NewInt(2),
|
|
values.NewInt(3),
|
|
values.NewInt(4),
|
|
values.NewInt(5),
|
|
)
|
|
|
|
out, err := arrays.Append(context.Background(), arr, values.NewInt(5), values.True)
|
|
|
|
So(err, ShouldBeNil)
|
|
So(out, ShouldNotEqual, arr)
|
|
So(out.(collections.Measurable).Length(), ShouldEqual, arr.Length())
|
|
|
|
out2, err := arrays.Append(context.Background(), arr, values.NewInt(6), values.True)
|
|
|
|
So(err, ShouldBeNil)
|
|
So(out2, ShouldNotEqual, arr)
|
|
So(out2.(collections.Measurable).Length(), ShouldBeGreaterThan, arr.Length())
|
|
})
|
|
}
|