mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-16 11:37:36 +02:00
48 lines
991 B
Go
48 lines
991 B
Go
|
package math_test
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"github.com/MontFerret/ferret/pkg/runtime/values"
|
||
|
"github.com/MontFerret/ferret/pkg/stdlib/math"
|
||
|
"testing"
|
||
|
|
||
|
. "github.com/smartystreets/goconvey/convey"
|
||
|
)
|
||
|
|
||
|
func TestMax(t *testing.T) {
|
||
|
Convey("Should return the largest value", t, func() {
|
||
|
out, err := math.Max(context.Background(), values.NewArrayWith(
|
||
|
values.NewInt(5),
|
||
|
values.NewInt(2),
|
||
|
values.NewInt(9),
|
||
|
values.NewInt(2),
|
||
|
))
|
||
|
|
||
|
So(err, ShouldBeNil)
|
||
|
So(out, ShouldEqual, 9)
|
||
|
|
||
|
out, err = math.Max(context.Background(), values.NewArrayWith(
|
||
|
values.NewInt(-3),
|
||
|
values.NewInt(-5),
|
||
|
values.NewInt(2),
|
||
|
))
|
||
|
|
||
|
So(err, ShouldBeNil)
|
||
|
So(out, ShouldEqual, 2)
|
||
|
|
||
|
out, err = math.Max(context.Background(), values.NewArrayWith(
|
||
|
values.None,
|
||
|
values.NewInt(-5),
|
||
|
values.False,
|
||
|
))
|
||
|
|
||
|
So(err, ShouldBeNil)
|
||
|
So(out, ShouldEqual, values.None)
|
||
|
|
||
|
out, err = math.Max(context.Background(), values.NewArray(0))
|
||
|
|
||
|
So(err, ShouldBeNil)
|
||
|
So(out, ShouldEqual, values.None)
|
||
|
})
|
||
|
}
|