1
0
mirror of https://github.com/MontFerret/ferret.git synced 2024-12-14 11:23:02 +02:00
ferret/pkg/runtime/collections/unique_test.go
Tim Voronov 549b4abd3b
Feature/#5 collect keyword alt (#141)
Implemented COLLECT key word
2018-10-24 21:30:05 -04:00

99 lines
2.0 KiB
Go

package collections_test
import (
"github.com/MontFerret/ferret/pkg/runtime/collections"
"github.com/MontFerret/ferret/pkg/runtime/core"
"github.com/MontFerret/ferret/pkg/runtime/values"
. "github.com/smartystreets/goconvey/convey"
"testing"
)
func TestUniqueIterator(t *testing.T) {
Convey("Should return only unique items", t, func() {
arr := []core.Value{
values.NewInt(1),
values.NewInt(2),
values.NewInt(2),
values.NewInt(3),
values.NewInt(4),
values.NewInt(3),
values.NewInt(5),
values.NewInt(6),
values.NewInt(5),
values.NewInt(6),
}
iter, err := collections.NewUniqueIterator(
sliceIterator(arr),
collections.DefaultValueVar,
)
So(err, ShouldBeNil)
sets, err := collections.ToSlice(iter)
So(err, ShouldBeNil)
res := toArrayOfValues(sets)
So(res.String(), ShouldEqual, `[1,2,3,4,5,6]`)
})
Convey("Should return only unique items 2", t, func() {
arr := []core.Value{
values.NewInt(1),
values.NewInt(1),
values.NewInt(1),
values.NewInt(1),
values.NewInt(1),
values.NewInt(1),
}
iter, err := collections.NewUniqueIterator(
sliceIterator(arr),
collections.DefaultValueVar,
)
So(err, ShouldBeNil)
sets, err := collections.ToSlice(iter)
So(err, ShouldBeNil)
res := toArrayOfValues(sets)
So(res.String(), ShouldEqual, `[1]`)
})
Convey("Should return only unique items 3", t, func() {
arr := []core.Value{
values.NewString("a"),
values.NewString("b"),
values.NewString("c"),
values.NewString("d"),
values.NewString("e"),
values.NewString("a"),
values.NewString("b"),
values.NewString("f"),
values.NewString("d"),
values.NewString("e"),
values.NewString("f"),
}
iter, err := collections.NewUniqueIterator(
sliceIterator(arr),
collections.DefaultValueVar,
)
So(err, ShouldBeNil)
sets, err := collections.ToSlice(iter)
So(err, ShouldBeNil)
res := toArrayOfValues(sets)
So(res.String(), ShouldEqual, `["a","b","c","d","e","f"]`)
})
}