mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-16 11:37:36 +02:00
63 lines
1.3 KiB
Go
63 lines
1.3 KiB
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 TestRange(t *testing.T) {
|
||
|
Convey("Should return range of numbers", t, func() {
|
||
|
out, err := math.Range(context.Background(), values.NewInt(1), values.NewInt(4))
|
||
|
|
||
|
So(err, ShouldBeNil)
|
||
|
So(out.String(), ShouldEqual, "[1,2,3,4]")
|
||
|
|
||
|
out, err = math.Range(context.Background(),
|
||
|
values.NewInt(1),
|
||
|
values.NewInt(4),
|
||
|
values.NewInt(2))
|
||
|
|
||
|
So(err, ShouldBeNil)
|
||
|
So(out.String(), ShouldEqual, "[1,3]")
|
||
|
|
||
|
out, err = math.Range(context.Background(),
|
||
|
values.NewInt(1),
|
||
|
values.NewInt(4),
|
||
|
values.NewInt(3),
|
||
|
)
|
||
|
|
||
|
So(err, ShouldBeNil)
|
||
|
So(out.String(), ShouldEqual, "[1,4]")
|
||
|
|
||
|
out, err = math.Range(context.Background(),
|
||
|
values.NewFloat(1.5),
|
||
|
values.NewFloat(2.5),
|
||
|
)
|
||
|
|
||
|
So(err, ShouldBeNil)
|
||
|
So(out.String(), ShouldEqual, "[1.5,2.5]")
|
||
|
|
||
|
out, err = math.Range(context.Background(),
|
||
|
values.NewFloat(1.5),
|
||
|
values.NewFloat(2.5),
|
||
|
values.NewFloat(0.5),
|
||
|
)
|
||
|
|
||
|
So(err, ShouldBeNil)
|
||
|
So(out.String(), ShouldEqual, "[1.5,2,2.5]")
|
||
|
|
||
|
out, err = math.Range(context.Background(),
|
||
|
values.NewFloat(-0.75),
|
||
|
values.NewFloat(1.1),
|
||
|
values.NewFloat(0.5),
|
||
|
)
|
||
|
|
||
|
So(err, ShouldBeNil)
|
||
|
So(out.String(), ShouldEqual, "[-0.75,-0.25,0.25,0.75]")
|
||
|
})
|
||
|
}
|