Math.uts 9.1 KB
Newer Older
1
import { describe, test, expect,expectNumber, Result } from './tests.uts'
Y
yurj26 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70

export function testMath(): Result {
    return describe("Math", () => {
        test('E', () => {
            function getNapier():number {
                return Math.E
            }
            expect(getNapier()).toEqual(2.718281828459045);
        })
        test('LN10', () => {
            function getNatLog10():number {
                return Math.LN10;
            }
            expect(getNatLog10()).toEqual(2.302585092994046);
        })
        test('LN2', () => {
            function getNatLog2():number {
                return Math.LN2;
            }
            expect(getNatLog2()).toEqual(0.6931471805599453);
        })
        test('LOG10E', () => {
            function getLog10e():number {
                return Math.LOG10E;
            }
            expect(getLog10e()).toEqual(0.4342944819032518);
        })
        test('LOG2E', () => {
            function getLog2e():number {
                return Math.LOG2E;
            }
            expect(getLog2e()).toEqual(1.4426950408889634);
        })
        test('PI', () => {
            function calculateCircumference (radius:number):number {
                return 2 * Math.PI * radius;
            }
            expect(calculateCircumference(1)).toEqual(6.283185307179586);
        })
        test('SQRT1_2', () => {
            function getRoot1_2():number {
                return Math.SQRT1_2;
            }
            expect(getRoot1_2()).toEqual(0.7071067811865476);
        })
        test('SQRT2', () => {
            function getRoot2():number {
                return Math.SQRT2;
            }
            expect(getRoot2()).toEqual(1.4142135623730951);
        })
        
        test('abs', () => {
            function difference(a:number, b:number):number {
                return Math.abs(a - b);
            }
            expect(difference(3, 5)).toEqual(2);
            expect(difference(5, 3)).toEqual(2);
            expect(difference(1.23456, 7.89012)).toEqual(6.6555599999999995);
        })
        test('acos', () => {
            expect(Math.acos(-1)).toEqual(3.141592653589793);
            expect(Math.acos(0)).toEqual(1.5707963267948966);
            // 解决精度问题
            expect(Math.acos(1)).toEqual(0.0);
        })
        test('acosh', () => {
            // 解决精度问题
            expect(Math.acosh(1)).toEqual(0.0);
71 72
			expectNumber(Math.acosh(2)).toEqualDouble(1.3169578969248166);
            expectNumber(Math.acosh(2.5)).toEqualDouble(1.566799236972411);
Y
yurj26 已提交
73 74 75 76 77
        })
        test('asin', () => {
            expect(Math.asin(-1)).toEqual(-1.5707963267948966);
            // 解决精度问题
            expect(Math.asin(0)).toEqual(0.0);
lizhongyi_'s avatar
lizhongyi_ 已提交
78
            // expect(Math.asin(0.5)).toEqual(0.5235987755982989);
Y
yurj26 已提交
79 80 81
            expect(Math.asin(1)).toEqual(1.5707963267948966);
        })
        test('asinh', () => {
82 83 84 85
            expectNumber(Math.asinh(1)).toEqualDouble(0.881373587019543);
            expectNumber(Math.asinh(0)).toEqualDouble(0);
            expectNumber(Math.asinh(-1)).toEqualDouble(-0.881373587019543);
            expectNumber(Math.asinh(2)).toEqualDouble(1.4436354751788103);
Y
yurj26 已提交
86 87 88 89 90 91 92 93 94 95 96 97 98
        })
        test('atan', () => {
            expect(Math.atan(1)).toEqual(0.7853981633974483);
            // 解决精度问题
            expect(Math.atan(0)).toEqual(0.0);
        })
        test('atan2', () => {
            expect(Math.atan2(90, 15)).toEqual(1.4056476493802699);
            expect(Math.atan2(15, 90)).toEqual(0.16514867741462683);
        })
        test('atanh', () => {
            // 解决精度问题
            expect(Math.atanh(0)).toEqual(0.0);
lizhongyi_'s avatar
lizhongyi_ 已提交
99
            // expect(Math.atanh(0.5)).toEqual(0.5493061443340548);
Y
yurj26 已提交
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
        })
        test('cbrt', () => {
            // expect(Math.cbrt(-1)).toEqual(-1);
            // expect(Math.cbrt(0)).toEqual(0);
            // expect(Math.cbrt(1)).toEqual(1);
            // expect(Math.cbrt(2)).toEqual(1.2599210498948732);
        })
        test('ceil', () => {
            expect(Math.ceil(0.95)).toEqual(1);
            expect(Math.ceil(4)).toEqual(4);
            expect(Math.ceil(7.004)).toEqual(8);
            expect(Math.ceil(-7.004)).toEqual(-7);
        })
        test('clz32', () => {
            expect(Math.clz32(1)).toEqual(31);
            expect(Math.clz32(1000)).toEqual(22);
116
            expect(Math.clz32(0)).toEqual(32);
Y
yurj26 已提交
117 118 119 120 121 122 123 124 125
            expect(Math.clz32(3.5)).toEqual(30);
        })
        test('cos', () => {
            expect(Math.cos(0)).toEqual(1.0);
            expect(Math.cos(1)).toEqual(0.5403023058681398);
        })
        test('cosh', () => {
            // 解决精度问题
            expect(Math.cosh(0)).toEqual(1.0);
126 127
            expectNumber(Math.cosh(1)).toEqualDouble(1.5430806348152437);
            expectNumber(Math.cosh(-1)).toEqualDouble(1.5430806348152437);
Y
yurj26 已提交
128 129
        })
        test('exp', () => {
130
            expectNumber(Math.exp(-1)).toEqualDouble(0.36787944117144233);
Y
yurj26 已提交
131 132
            // 解决精度问题
            expect(Math.exp(0)).toEqual(1.0);
133
            expectNumber(Math.exp(1)).toEqualDouble(2.718281828459045);
Y
yurj26 已提交
134 135
        })
        test('expm1', () => {
136 137
            expectNumber(Math.expm1(1)).toEqualDouble(1.718281828459045);
            expectNumber(Math.expm1(-38)).toEqualDouble(-1);
Y
yurj26 已提交
138 139 140 141 142 143 144 145 146
        })
        test('floor', () => {
            expect(Math.floor(5.95)).toEqual(5);
            expect(Math.floor(5.05)).toEqual(5);
            expect(Math.floor(5)).toEqual(5);
            expect(Math.floor(-5.05)).toEqual(-6);
        })
        test('fround', () => {
            expect(Math.fround(1.5)).toEqual(1.5);
147
            expectNumber(Math.fround(1.337)).toEqualDouble(1.3370000123977661);
Y
yurj26 已提交
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189
        })
        // test('hypot', () => {
            // expect(Math.hypot(3, 4)).toEqual(5);
            // expect(Math.hypot(5, 12)).toEqual(13);
            // expect(Math.hypot(3, 4, 5)).toEqual(7.0710678118654755);
            // expect(Math.hypot(-5)).toEqual(5);
        // })
        // test('imul', () => {
        //     expect(Math.imul(3, 4)).toEqual(12);
        //     expect(Math.imul(-5, 12)).toEqual(-60);
        // })
        test('log', () => {
            // 解决精度问题
            expect(Math.log(1)).toEqual(0.0);
            expect(Math.log(10)).toEqual(2.302585092994046);
        })
        test('log10', () => {
            // 解决精度问题
            expect(Math.log10(10)).toEqual(1.0);
            expect(Math.log10(100)).toEqual(2.0);
            expect(Math.log10(1)).toEqual(0.0);
        })
        test('log1p', () => {
            // 解决精度问题
            expect(Math.log1p(Math.E - 1)).toEqual(1.0);
            expect(Math.log1p(0)).toEqual(0.0);
        })
        test('log2', () => {
            // 解决精度问题
            expect(Math.log2(2)).toEqual(1.0);
            expect(Math.log2(1024)).toEqual(10.0);
            expect(Math.log2(1)).toEqual(0.0);
        })
        test('max', () => {
            expect(Math.max(1, 3, 2)).toEqual(3);
            expect(Math.max(-1, -3, -2)).toEqual(-1);
        })
        test('min', () => {
            expect(Math.min(2, 3, 1)).toEqual(1);
            expect(Math.min(-2, -3, -1)).toEqual(-3);
        })
        test('pow', () => {
190 191
            expectNumber(Math.pow(7, 3)).toEqualDouble(343);
            expectNumber(Math.pow(4, 0.5)).toEqualDouble(2);
Y
yurj26 已提交
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
        })
        test('random', () => {
            function getRandomInt(max:number):number {
              return Math.floor(Math.random() * max);
            }
            expect(getRandomInt(getRandomInt(1))).toEqual(0);
        })
        test('sign', () => {
            expect(Math.sign(3)).toEqual(1);
            expect(Math.sign(-3)).toEqual(-1);
            expect(Math.sign(0)).toEqual(0);
        })
        test('sin', () => {
            // 解决精度问题
            expect(Math.sin(0)).toEqual(0.0);
            expect(Math.sin(1)).toEqual(0.8414709848078965);
        })
        test('sinh', () => {
            // 解决精度问题
            expect(Math.sinh(0)).toEqual(0.0);
            expect(Math.sinh(1)).toEqual(1.1752011936438014);
        })
        test('sqrt', () => {
            function calcHypotenuse(a:number, b:number):number {
              return (Math.sqrt((a * a) + (b * b)));
            }
            // 解决精度问题
            expect(calcHypotenuse(3, 4)).toEqual(5.0);
            expect(calcHypotenuse(5, 12)).toEqual(13.0);
            expect(calcHypotenuse(0, 0)).toEqual(0.0);
        })
        test('tan', () => {
            // 解决精度问题
            expect(Math.tan(0)).toEqual(0.0);
lizhongyi_'s avatar
lizhongyi_ 已提交
226
            // expect(Math.tan(1)).toEqual(1.5574077246549023);
Y
yurj26 已提交
227 228 229 230 231 232 233 234 235 236 237 238
        })
        test('tanh', () => {
            expect(Math.tanh(-1)).toEqual(-0.7615941559557649);
            // 解决精度问题
            expect(Math.tanh(0)).toEqual(0.0);
            expect(Math.tanh(1)).toEqual(0.7615941559557649);
        })
        test('trunc', () => {
            expect(Math.trunc(13.37)).toEqual(13);
            expect(Math.trunc(42.84)).toEqual(42);
            expect(Math.trunc(0.123)).toEqual(0);
        })
杜庆泉's avatar
杜庆泉 已提交
239
		test('round', () => {
杜庆泉's avatar
杜庆泉 已提交
240
		    expect(Math.round(0.9)).toEqual(1);
杜庆泉's avatar
杜庆泉 已提交
241 242 243
		    expect(Math.round(5.95)).toEqual(6);
		    expect(Math.round(-5.05)).toEqual(-5);
		})
Y
yurj26 已提交
244 245
    })
}