2023-07-23 22:05:54 +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.
|
|
|
|
|
2023-07-14 17:30:58 +02:00
|
|
|
package testing
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2023-07-18 15:57:54 +02:00
|
|
|
ET "github.com/IBM/fp-go/either"
|
|
|
|
EQ "github.com/IBM/fp-go/eq"
|
|
|
|
L "github.com/IBM/fp-go/internal/monad/testing"
|
|
|
|
IOE "github.com/IBM/fp-go/ioeither"
|
2023-07-14 17:30:58 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// AssertLaws asserts the apply monad laws for the `IOEither` monad
|
|
|
|
func AssertLaws[E, A, B, C any](t *testing.T,
|
|
|
|
eqe EQ.Eq[E],
|
|
|
|
eqa EQ.Eq[A],
|
|
|
|
eqb EQ.Eq[B],
|
|
|
|
eqc EQ.Eq[C],
|
|
|
|
|
|
|
|
ab func(A) B,
|
|
|
|
bc func(B) C,
|
|
|
|
) func(a A) bool {
|
|
|
|
|
|
|
|
return L.AssertLaws(t,
|
|
|
|
IOE.Eq(ET.Eq(eqe, eqa)),
|
|
|
|
IOE.Eq(ET.Eq(eqe, eqb)),
|
|
|
|
IOE.Eq(ET.Eq(eqe, eqc)),
|
|
|
|
|
|
|
|
IOE.Of[E, A],
|
|
|
|
IOE.Of[E, B],
|
|
|
|
IOE.Of[E, C],
|
|
|
|
|
|
|
|
IOE.Of[E, func(A) A],
|
|
|
|
IOE.Of[E, func(A) B],
|
|
|
|
IOE.Of[E, func(B) C],
|
|
|
|
IOE.Of[E, func(func(A) B) B],
|
|
|
|
|
|
|
|
IOE.MonadMap[E, A, A],
|
|
|
|
IOE.MonadMap[E, A, B],
|
|
|
|
IOE.MonadMap[E, A, C],
|
|
|
|
IOE.MonadMap[E, B, C],
|
|
|
|
|
|
|
|
IOE.MonadMap[E, func(B) C, func(func(A) B) func(A) C],
|
|
|
|
|
|
|
|
IOE.MonadChain[E, A, A],
|
|
|
|
IOE.MonadChain[E, A, B],
|
|
|
|
IOE.MonadChain[E, A, C],
|
|
|
|
IOE.MonadChain[E, B, C],
|
|
|
|
|
|
|
|
IOE.MonadAp[A, E, A],
|
|
|
|
IOE.MonadAp[B, E, A],
|
|
|
|
IOE.MonadAp[C, E, B],
|
|
|
|
IOE.MonadAp[C, E, A],
|
|
|
|
|
|
|
|
IOE.MonadAp[B, E, func(A) B],
|
|
|
|
IOE.MonadAp[func(A) C, E, func(A) B],
|
|
|
|
|
|
|
|
ab,
|
|
|
|
bc,
|
|
|
|
)
|
|
|
|
|
|
|
|
}
|