2018-10-14 03:07:28 +02:00
|
|
|
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"
|
|
|
|
)
|
|
|
|
|
2020-02-02 06:44:31 +02:00
|
|
|
func TestPercentile(t *testing.T) {
|
2018-10-14 03:07:28 +02:00
|
|
|
Convey("Should return nth percentile value", t, func() {
|
|
|
|
out, err := math.Percentile(
|
|
|
|
context.Background(),
|
|
|
|
values.NewArrayWith(
|
|
|
|
values.NewInt(1),
|
|
|
|
values.NewInt(2),
|
|
|
|
values.NewInt(3),
|
|
|
|
values.NewInt(4),
|
|
|
|
),
|
|
|
|
values.NewInt(50),
|
|
|
|
)
|
|
|
|
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
So(out, ShouldEqual, 2)
|
|
|
|
})
|
|
|
|
}
|