2023-07-24 16:43:07 +02:00
|
|
|
// Copyright (c) 2023 IBM Corp.
|
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package stateless
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2023-07-25 17:34:32 +02:00
|
|
|
"math"
|
2023-07-24 16:43:07 +02:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
A "github.com/IBM/fp-go/array"
|
|
|
|
F "github.com/IBM/fp-go/function"
|
|
|
|
"github.com/IBM/fp-go/internal/utils"
|
2023-07-25 17:34:32 +02:00
|
|
|
O "github.com/IBM/fp-go/option"
|
2023-07-24 16:43:07 +02:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestIterator(t *testing.T) {
|
|
|
|
|
|
|
|
result := F.Pipe2(
|
|
|
|
A.From(1, 2, 3),
|
|
|
|
FromArray[int],
|
|
|
|
Reduce(utils.Sum, 0),
|
|
|
|
)
|
|
|
|
|
|
|
|
assert.Equal(t, 6, result)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestChain(t *testing.T) {
|
|
|
|
|
2023-07-25 17:34:32 +02:00
|
|
|
outer := From(1, 2, 3)
|
2023-07-24 16:43:07 +02:00
|
|
|
|
|
|
|
inner := func(data int) Iterator[string] {
|
|
|
|
return F.Pipe2(
|
|
|
|
A.From(0, 1),
|
|
|
|
FromArray[int],
|
|
|
|
Map(func(idx int) string {
|
|
|
|
return fmt.Sprintf("item[%d][%d]", data, idx)
|
|
|
|
}),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
total := F.Pipe2(
|
|
|
|
outer,
|
|
|
|
Chain(inner),
|
|
|
|
ToArray[string],
|
|
|
|
)
|
|
|
|
|
|
|
|
assert.Equal(t, A.From("item[1][0]", "item[1][1]", "item[2][0]", "item[2][1]", "item[3][0]", "item[3][1]"), total)
|
|
|
|
}
|
2023-07-25 17:34:32 +02:00
|
|
|
|
|
|
|
func isPrimeNumber(num int) bool {
|
|
|
|
if num <= 2 {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
sq_root := int(math.Sqrt(float64(num)))
|
|
|
|
for i := 2; i <= sq_root; i++ {
|
|
|
|
if num%i == 0 {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestFilterMap(t *testing.T) {
|
|
|
|
|
|
|
|
it := F.Pipe2(
|
|
|
|
MakeBy(100, utils.Inc),
|
|
|
|
FilterMap(O.FromPredicate(isPrimeNumber)),
|
|
|
|
ToArray[int],
|
|
|
|
)
|
|
|
|
|
|
|
|
assert.Equal(t, A.From(1, 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97), it)
|
|
|
|
}
|