2017-03-13 18:55:02 -04:00
|
|
|
// Copyright 2017 The Hugo Authors. 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 math
|
|
|
|
|
|
|
|
import (
|
2017-07-02 18:20:49 -04:00
|
|
|
"math"
|
2017-03-13 18:55:02 -04:00
|
|
|
"testing"
|
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
qt "github.com/frankban/quicktest"
|
2017-03-13 18:55:02 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestBasicNSArithmetic(t *testing.T) {
|
|
|
|
t.Parallel()
|
2019-08-10 15:05:17 -04:00
|
|
|
c := qt.New(t)
|
2017-03-13 18:55:02 -04:00
|
|
|
|
|
|
|
ns := New()
|
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
for _, test := range []struct {
|
2022-03-17 17:03:27 -04:00
|
|
|
fn func(a, b any) (any, error)
|
|
|
|
a any
|
|
|
|
b any
|
|
|
|
expect any
|
2017-03-13 18:55:02 -04:00
|
|
|
}{
|
|
|
|
{ns.Add, 4, 2, int64(6)},
|
|
|
|
{ns.Add, 1.0, "foo", false},
|
|
|
|
{ns.Sub, 4, 2, int64(2)},
|
|
|
|
{ns.Sub, 1.0, "foo", false},
|
|
|
|
{ns.Mul, 4, 2, int64(8)},
|
|
|
|
{ns.Mul, 1.0, "foo", false},
|
|
|
|
{ns.Div, 4, 2, int64(2)},
|
|
|
|
{ns.Div, 1.0, "foo", false},
|
|
|
|
} {
|
|
|
|
|
|
|
|
result, err := test.fn(test.a, test.b)
|
|
|
|
|
|
|
|
if b, ok := test.expect.(bool); ok && !b {
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(err, qt.Not(qt.IsNil))
|
2017-03-13 18:55:02 -04:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(err, qt.IsNil)
|
|
|
|
c.Assert(result, qt.Equals, test.expect)
|
2017-03-13 18:55:02 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-23 21:07:55 -04:00
|
|
|
func TestCeil(t *testing.T) {
|
|
|
|
t.Parallel()
|
2019-08-10 15:05:17 -04:00
|
|
|
c := qt.New(t)
|
2017-09-23 21:07:55 -04:00
|
|
|
ns := New()
|
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
for _, test := range []struct {
|
2022-03-17 17:03:27 -04:00
|
|
|
x any
|
|
|
|
expect any
|
2017-09-23 21:07:55 -04:00
|
|
|
}{
|
|
|
|
{0.1, 1.0},
|
|
|
|
{0.5, 1.0},
|
|
|
|
{1.1, 2.0},
|
|
|
|
{1.5, 2.0},
|
|
|
|
{-0.1, 0.0},
|
|
|
|
{-0.5, 0.0},
|
|
|
|
{-1.1, -1.0},
|
|
|
|
{-1.5, -1.0},
|
|
|
|
{"abc", false},
|
|
|
|
} {
|
|
|
|
|
|
|
|
result, err := ns.Ceil(test.x)
|
|
|
|
|
|
|
|
if b, ok := test.expect.(bool); ok && !b {
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(err, qt.Not(qt.IsNil))
|
2017-09-23 21:07:55 -04:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(err, qt.IsNil)
|
|
|
|
c.Assert(result, qt.Equals, test.expect)
|
2017-09-23 21:07:55 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestFloor(t *testing.T) {
|
|
|
|
t.Parallel()
|
2019-08-10 15:05:17 -04:00
|
|
|
c := qt.New(t)
|
2017-09-23 21:07:55 -04:00
|
|
|
|
|
|
|
ns := New()
|
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
for _, test := range []struct {
|
2022-03-17 17:03:27 -04:00
|
|
|
x any
|
|
|
|
expect any
|
2017-09-23 21:07:55 -04:00
|
|
|
}{
|
|
|
|
{0.1, 0.0},
|
|
|
|
{0.5, 0.0},
|
|
|
|
{1.1, 1.0},
|
|
|
|
{1.5, 1.0},
|
|
|
|
{-0.1, -1.0},
|
|
|
|
{-0.5, -1.0},
|
|
|
|
{-1.1, -2.0},
|
|
|
|
{-1.5, -2.0},
|
|
|
|
{"abc", false},
|
|
|
|
} {
|
|
|
|
|
|
|
|
result, err := ns.Floor(test.x)
|
|
|
|
|
|
|
|
if b, ok := test.expect.(bool); ok && !b {
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(err, qt.Not(qt.IsNil))
|
2017-09-23 21:07:55 -04:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(err, qt.IsNil)
|
|
|
|
c.Assert(result, qt.Equals, test.expect)
|
2017-09-23 21:07:55 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-02 18:20:49 -04:00
|
|
|
func TestLog(t *testing.T) {
|
|
|
|
t.Parallel()
|
2019-08-10 15:05:17 -04:00
|
|
|
c := qt.New(t)
|
2017-07-02 18:20:49 -04:00
|
|
|
|
|
|
|
ns := New()
|
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
for _, test := range []struct {
|
2022-03-17 17:03:27 -04:00
|
|
|
a any
|
|
|
|
expect any
|
2017-07-02 18:20:49 -04:00
|
|
|
}{
|
|
|
|
{1, float64(0)},
|
|
|
|
{3, float64(1.0986)},
|
|
|
|
{0, float64(math.Inf(-1))},
|
|
|
|
{1.0, float64(0)},
|
|
|
|
{3.1, float64(1.1314)},
|
|
|
|
{"abc", false},
|
|
|
|
} {
|
|
|
|
|
|
|
|
result, err := ns.Log(test.a)
|
|
|
|
|
|
|
|
if b, ok := test.expect.(bool); ok && !b {
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(err, qt.Not(qt.IsNil))
|
2017-07-02 18:20:49 -04:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// we compare only 4 digits behind point if its a real float
|
|
|
|
// otherwise we usually get different float values on the last positions
|
|
|
|
if result != math.Inf(-1) {
|
|
|
|
result = float64(int(result*10000)) / 10000
|
|
|
|
}
|
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(err, qt.IsNil)
|
|
|
|
c.Assert(result, qt.Equals, test.expect)
|
2017-07-02 18:20:49 -04:00
|
|
|
}
|
2020-02-24 17:45:04 -05:00
|
|
|
|
|
|
|
// Separate test for Log(-1) -- returns NaN
|
|
|
|
result, err := ns.Log(-1)
|
|
|
|
c.Assert(err, qt.IsNil)
|
|
|
|
c.Assert(result, qt.Satisfies, math.IsNaN)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSqrt(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
c := qt.New(t)
|
|
|
|
|
|
|
|
ns := New()
|
|
|
|
|
|
|
|
for _, test := range []struct {
|
2022-03-17 17:03:27 -04:00
|
|
|
a any
|
|
|
|
expect any
|
2020-02-24 17:45:04 -05:00
|
|
|
}{
|
|
|
|
{81, float64(9)},
|
|
|
|
{0.25, float64(0.5)},
|
|
|
|
{0, float64(0)},
|
|
|
|
{"abc", false},
|
|
|
|
} {
|
|
|
|
|
|
|
|
result, err := ns.Sqrt(test.a)
|
|
|
|
|
|
|
|
if b, ok := test.expect.(bool); ok && !b {
|
|
|
|
c.Assert(err, qt.Not(qt.IsNil))
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// we compare only 4 digits behind point if its a real float
|
|
|
|
// otherwise we usually get different float values on the last positions
|
|
|
|
if result != math.Inf(-1) {
|
|
|
|
result = float64(int(result*10000)) / 10000
|
|
|
|
}
|
|
|
|
|
|
|
|
c.Assert(err, qt.IsNil)
|
|
|
|
c.Assert(result, qt.Equals, test.expect)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Separate test for Sqrt(-1) -- returns NaN
|
|
|
|
result, err := ns.Sqrt(-1)
|
|
|
|
c.Assert(err, qt.IsNil)
|
|
|
|
c.Assert(result, qt.Satisfies, math.IsNaN)
|
2017-07-02 18:20:49 -04:00
|
|
|
}
|
|
|
|
|
2017-03-13 18:55:02 -04:00
|
|
|
func TestMod(t *testing.T) {
|
|
|
|
t.Parallel()
|
2019-08-10 15:05:17 -04:00
|
|
|
c := qt.New(t)
|
2017-03-13 18:55:02 -04:00
|
|
|
|
|
|
|
ns := New()
|
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
for _, test := range []struct {
|
2022-03-17 17:03:27 -04:00
|
|
|
a any
|
|
|
|
b any
|
|
|
|
expect any
|
2017-03-13 18:55:02 -04:00
|
|
|
}{
|
|
|
|
{3, 2, int64(1)},
|
|
|
|
{3, 1, int64(0)},
|
|
|
|
{3, 0, false},
|
|
|
|
{0, 3, int64(0)},
|
2017-10-30 13:24:51 -04:00
|
|
|
{3.1, 2, int64(1)},
|
|
|
|
{3, 2.1, int64(1)},
|
|
|
|
{3.1, 2.1, int64(1)},
|
2017-03-13 18:55:02 -04:00
|
|
|
{int8(3), int8(2), int64(1)},
|
|
|
|
{int16(3), int16(2), int64(1)},
|
|
|
|
{int32(3), int32(2), int64(1)},
|
|
|
|
{int64(3), int64(2), int64(1)},
|
2017-10-30 13:24:51 -04:00
|
|
|
{"3", "2", int64(1)},
|
|
|
|
{"3.1", "2", false},
|
|
|
|
{"aaa", "0", false},
|
|
|
|
{"3", "aaa", false},
|
2017-03-13 18:55:02 -04:00
|
|
|
} {
|
|
|
|
|
|
|
|
result, err := ns.Mod(test.a, test.b)
|
|
|
|
|
|
|
|
if b, ok := test.expect.(bool); ok && !b {
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(err, qt.Not(qt.IsNil))
|
2017-03-13 18:55:02 -04:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(err, qt.IsNil)
|
|
|
|
c.Assert(result, qt.Equals, test.expect)
|
2017-03-13 18:55:02 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestModBool(t *testing.T) {
|
|
|
|
t.Parallel()
|
2019-08-10 15:05:17 -04:00
|
|
|
c := qt.New(t)
|
2017-03-13 18:55:02 -04:00
|
|
|
|
|
|
|
ns := New()
|
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
for _, test := range []struct {
|
2022-03-17 17:03:27 -04:00
|
|
|
a any
|
|
|
|
b any
|
|
|
|
expect any
|
2017-03-13 18:55:02 -04:00
|
|
|
}{
|
|
|
|
{3, 3, true},
|
|
|
|
{3, 2, false},
|
|
|
|
{3, 1, true},
|
|
|
|
{3, 0, nil},
|
|
|
|
{0, 3, true},
|
2017-10-30 13:24:51 -04:00
|
|
|
{3.1, 2, false},
|
|
|
|
{3, 2.1, false},
|
|
|
|
{3.1, 2.1, false},
|
2017-03-13 18:55:02 -04:00
|
|
|
{int8(3), int8(3), true},
|
|
|
|
{int8(3), int8(2), false},
|
|
|
|
{int16(3), int16(3), true},
|
|
|
|
{int16(3), int16(2), false},
|
|
|
|
{int32(3), int32(3), true},
|
|
|
|
{int32(3), int32(2), false},
|
|
|
|
{int64(3), int64(3), true},
|
|
|
|
{int64(3), int64(2), false},
|
2017-10-30 13:24:51 -04:00
|
|
|
{"3", "3", true},
|
|
|
|
{"3", "2", false},
|
|
|
|
{"3.1", "2", nil},
|
|
|
|
{"aaa", "0", nil},
|
|
|
|
{"3", "aaa", nil},
|
2017-03-13 18:55:02 -04:00
|
|
|
} {
|
|
|
|
|
|
|
|
result, err := ns.ModBool(test.a, test.b)
|
|
|
|
|
|
|
|
if test.expect == nil {
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(err, qt.Not(qt.IsNil))
|
2017-03-13 18:55:02 -04:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(err, qt.IsNil)
|
|
|
|
c.Assert(result, qt.Equals, test.expect)
|
2017-03-13 18:55:02 -04:00
|
|
|
}
|
|
|
|
}
|
2017-09-23 21:07:55 -04:00
|
|
|
|
|
|
|
func TestRound(t *testing.T) {
|
|
|
|
t.Parallel()
|
2019-08-10 15:05:17 -04:00
|
|
|
c := qt.New(t)
|
2017-09-23 21:07:55 -04:00
|
|
|
|
|
|
|
ns := New()
|
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
for _, test := range []struct {
|
2022-03-17 17:03:27 -04:00
|
|
|
x any
|
|
|
|
expect any
|
2017-09-23 21:07:55 -04:00
|
|
|
}{
|
|
|
|
{0.1, 0.0},
|
|
|
|
{0.5, 1.0},
|
|
|
|
{1.1, 1.0},
|
|
|
|
{1.5, 2.0},
|
|
|
|
{-0.1, -0.0},
|
|
|
|
{-0.5, -1.0},
|
|
|
|
{-1.1, -1.0},
|
|
|
|
{-1.5, -2.0},
|
|
|
|
{"abc", false},
|
|
|
|
} {
|
|
|
|
|
|
|
|
result, err := ns.Round(test.x)
|
|
|
|
|
|
|
|
if b, ok := test.expect.(bool); ok && !b {
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(err, qt.Not(qt.IsNil))
|
2017-09-23 21:07:55 -04:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(err, qt.IsNil)
|
|
|
|
c.Assert(result, qt.Equals, test.expect)
|
2017-09-23 21:07:55 -04:00
|
|
|
}
|
|
|
|
}
|
2020-05-13 13:35:07 -04:00
|
|
|
|
|
|
|
func TestPow(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
c := qt.New(t)
|
|
|
|
|
|
|
|
ns := New()
|
|
|
|
|
|
|
|
for _, test := range []struct {
|
2022-03-17 17:03:27 -04:00
|
|
|
a any
|
|
|
|
b any
|
|
|
|
expect any
|
2020-05-13 13:35:07 -04:00
|
|
|
}{
|
|
|
|
{0, 0, float64(1)},
|
|
|
|
{2, 0, float64(1)},
|
|
|
|
{2, 3, float64(8)},
|
|
|
|
{-2, 3, float64(-8)},
|
|
|
|
{2, -3, float64(0.125)},
|
|
|
|
{-2, -3, float64(-0.125)},
|
|
|
|
{0.2, 3, float64(0.008)},
|
|
|
|
{2, 0.3, float64(1.2311)},
|
|
|
|
{0.2, 0.3, float64(0.617)},
|
|
|
|
{"aaa", "3", false},
|
|
|
|
{"2", "aaa", false},
|
|
|
|
} {
|
|
|
|
|
|
|
|
result, err := ns.Pow(test.a, test.b)
|
|
|
|
|
|
|
|
if b, ok := test.expect.(bool); ok && !b {
|
|
|
|
c.Assert(err, qt.Not(qt.IsNil))
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// we compare only 4 digits behind point if its a real float
|
|
|
|
// otherwise we usually get different float values on the last positions
|
|
|
|
result = float64(int(result*10000)) / 10000
|
|
|
|
|
|
|
|
c.Assert(err, qt.IsNil)
|
|
|
|
c.Assert(result, qt.Equals, test.expect)
|
|
|
|
}
|
|
|
|
}
|
2021-05-27 11:34:49 -04:00
|
|
|
|
|
|
|
func TestMax(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
c := qt.New(t)
|
|
|
|
|
|
|
|
ns := New()
|
|
|
|
|
|
|
|
for _, test := range []struct {
|
2022-03-17 17:03:27 -04:00
|
|
|
a any
|
|
|
|
b any
|
|
|
|
expect any
|
2021-05-27 11:34:49 -04:00
|
|
|
}{
|
|
|
|
{-1, -1, float64(-1)},
|
|
|
|
{-1, 0, float64(0)},
|
|
|
|
{-1, 1, float64(1)},
|
|
|
|
{0, -1, float64(0)},
|
|
|
|
{0, 0, float64(0)},
|
|
|
|
{0, 1, float64(1)},
|
|
|
|
{1, -1, float64(1)},
|
|
|
|
{1, 0, float64(1)},
|
|
|
|
{1, 1, float64(1)},
|
|
|
|
{1.2, 1.23, float64(1.23)},
|
|
|
|
{-1.2, -1.23, float64(-1.2)},
|
|
|
|
{0, "a", false},
|
|
|
|
{"a", 0, false},
|
|
|
|
{"a", "b", false},
|
|
|
|
} {
|
|
|
|
|
|
|
|
result, err := ns.Max(test.a, test.b)
|
|
|
|
|
|
|
|
if b, ok := test.expect.(bool); ok && !b {
|
|
|
|
c.Assert(err, qt.Not(qt.IsNil))
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
c.Assert(err, qt.IsNil)
|
|
|
|
c.Assert(result, qt.Equals, test.expect)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestMin(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
c := qt.New(t)
|
|
|
|
|
|
|
|
ns := New()
|
|
|
|
|
|
|
|
for _, test := range []struct {
|
2022-03-17 17:03:27 -04:00
|
|
|
a any
|
|
|
|
b any
|
|
|
|
expect any
|
2021-05-27 11:34:49 -04:00
|
|
|
}{
|
|
|
|
{-1, -1, float64(-1)},
|
|
|
|
{-1, 0, float64(-1)},
|
|
|
|
{-1, 1, float64(-1)},
|
|
|
|
{0, -1, float64(-1)},
|
|
|
|
{0, 0, float64(0)},
|
|
|
|
{0, 1, float64(0)},
|
|
|
|
{1, -1, float64(-1)},
|
|
|
|
{1, 0, float64(0)},
|
|
|
|
{1, 1, float64(1)},
|
|
|
|
{1.2, 1.23, float64(1.2)},
|
|
|
|
{-1.2, -1.23, float64(-1.23)},
|
|
|
|
{0, "a", false},
|
|
|
|
{"a", 0, false},
|
|
|
|
{"a", "b", false},
|
|
|
|
} {
|
|
|
|
|
|
|
|
result, err := ns.Min(test.a, test.b)
|
|
|
|
|
|
|
|
if b, ok := test.expect.(bool); ok && !b {
|
|
|
|
c.Assert(err, qt.Not(qt.IsNil))
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
c.Assert(err, qt.IsNil)
|
|
|
|
c.Assert(result, qt.Equals, test.expect)
|
|
|
|
}
|
|
|
|
}
|