1
0
mirror of https://github.com/IBM/fp-go.git synced 2025-08-10 22:31:32 +02:00
Files
fp-go/optics/iso/iso_test.go
Dr. Carsten Leue 7476b70a23 fix: add optics and consistent copyright
Signed-off-by: Dr. Carsten Leue <carsten.leue@de.ibm.com>
2023-07-23 22:05:54 +02:00

80 lines
1.9 KiB
Go

// 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 iso
import (
"testing"
"github.com/stretchr/testify/assert"
)
var (
mToKm = MakeIso(
func(m float32) float32 {
return m / 1000
},
func(km float32) float32 {
return km * 1000
},
)
kmToMile = MakeIso(
func(km float32) float32 {
return km * 0.621371
},
func(mile float32) float32 {
return mile / 0.621371
},
)
)
func TestGet(t *testing.T) {
assert.Equal(t, mToKm.Get(100), float32(0.1))
assert.Equal(t, Unwrap[float32, float32](float32(100))(mToKm), float32(0.1))
assert.Equal(t, To[float32, float32](float32(100))(mToKm), float32(0.1))
}
func TestReverseGet(t *testing.T) {
assert.Equal(t, mToKm.ReverseGet(1.2), float32(1200))
assert.Equal(t, Wrap[float32](float32(1.2))(mToKm), float32(1200))
assert.Equal(t, From[float32](float32(1.2))(mToKm), float32(1200))
}
func TestModify(t *testing.T) {
double := func(x float32) float32 {
return x * 2
}
assert.Equal(t, float32(2000), Modify[float32](double)(mToKm)(float32(1000)))
}
func TestReverse(t *testing.T) {
double := func(x float32) float32 {
return x * 2
}
assert.Equal(t, float32(4000), Modify[float32](double)(Reverse(mToKm))(float32(2000)))
}
func TestCompose(t *testing.T) {
comp := Compose[float32](mToKm)(kmToMile)
assert.InDelta(t, 0.93, comp.Get(1500), 0.01)
assert.InDelta(t, 1609.34, comp.ReverseGet(1), 0.01)
}