85 lines
2.6 KiB
Go
85 lines
2.6 KiB
Go
// Copyright 2019 PingCAP, Inc.
|
|
//
|
|
// 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 mathutil
|
|
|
|
import (
|
|
"math/rand"
|
|
"strconv"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestStrLenOfUint64Fast(t *testing.T) {
|
|
t.Run("RandomInput", func(t *testing.T) {
|
|
for i := 0; i < 1000000; i++ {
|
|
num := rand.Uint64()
|
|
expected := len(strconv.FormatUint(num, 10))
|
|
actual := StrLenOfUint64Fast(num)
|
|
require.Equal(t, expected, actual)
|
|
}
|
|
})
|
|
|
|
t.Run("ManualInput", func(t *testing.T) {
|
|
nums := [22]uint64{0,
|
|
1, 12, 123, 1234, 12345,
|
|
123456, 1234567, 12345678, 123456789, 1234567890,
|
|
1234567891, 12345678912, 123456789123, 1234567891234, 12345678912345,
|
|
123456789123456, 1234567891234567, 12345678912345678, 123456789123456789,
|
|
123456789123457890,
|
|
^uint64(0),
|
|
}
|
|
for _, num := range nums {
|
|
expected := len(strconv.FormatUint(num, 10))
|
|
actual := StrLenOfUint64Fast(num)
|
|
require.Equal(t, expected, actual)
|
|
}
|
|
})
|
|
}
|
|
|
|
func TestMaxMin(t *testing.T) {
|
|
require.Equal(t, 1, Min(1, 2))
|
|
require.Equal(t, 1, Min(2, 1))
|
|
require.Equal(t, 1, Min(4, 2, 1, 3))
|
|
require.Equal(t, 1, Min(1, 1))
|
|
|
|
require.Equal(t, 2, Max(1, 2))
|
|
require.Equal(t, 2, Max(2, 1))
|
|
require.Equal(t, 4, Max(4, 2, 1, 3))
|
|
require.Equal(t, 1, Max(1, 1))
|
|
|
|
require.Equal(t, int64(1), Min(int64(1), int64(2)))
|
|
require.Equal(t, int64(2), Max(int64(2), int64(1)))
|
|
require.Equal(t, int64(1), Min(int64(4), int64(2), int64(1), int64(3)))
|
|
require.Equal(t, int64(1), Max(int64(1), int64(1)))
|
|
require.Equal(t, 1.0, Min(4.0, 2.0, 1.0, 3.0))
|
|
require.Equal(t, 4.0, Max(4.0, 2.0, 1.0, 3.0))
|
|
|
|
require.Equal(t, "ab", Min("ab", "xy"))
|
|
require.Equal(t, "xy", Max("ab", "xy"))
|
|
require.Equal(t, "ab", Max("ab", "ab"))
|
|
}
|
|
|
|
func TestClamp(t *testing.T) {
|
|
require.Equal(t, 3, Clamp(100, 1, 3))
|
|
require.Equal(t, 2.0, Clamp(float64(2), 1.0, 3.0))
|
|
require.Equal(t, float32(1.0), Clamp(float32(0), 1.0, 3.0))
|
|
require.Equal(t, 1, Clamp(0, 1, 1))
|
|
require.Equal(t, 1, Clamp(100, 1, 1))
|
|
require.Equal(t, "ab", Clamp("aa", "ab", "xy"))
|
|
require.Equal(t, "xy", Clamp("yy", "ab", "xy"))
|
|
require.Equal(t, "ab", Clamp("ab", "ab", "ab"))
|
|
}
|