1
0
mirror of https://github.com/MontFerret/ferret.git synced 2024-12-31 01:53:36 +02:00
ferret/pkg/stdlib/math/range_test.go
Tim Voronov 5f94b77a39
Feature/#7 numeric functions ()
*  Added ABS

*  Added ACOS

*  Added ASIN

*  Added ATAN

*  Added ATAN2

*  Added AVERAGE

*  Added CEIL

*  Added COS

*  Added DEGREES

*  Added EXP

*  Added EXP2

*  Added FLOOR

*  Added LOG

*  Added LOG2

*  Added LOG10

*  Added MAX

*  Added MEDIAN

*  Added MIN

*  Added PERCENTILE

*  Added PI

*  Added POW

*  Added RADIANS

*  Added RAND

*  Added RANGE

*  Added ROUND

*  Added SIN

*  Added SQRT

*  Added TAN

*  Added SUM

*  Added STDDEV_POPULATION

*  Added STDDEV_SAMPLE, VARIANCE_POPULATION, VARIANCE_SAMPLE
2018-10-13 21:07:28 -04:00

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]")
})
}