Math.uts 9.0 KB
Newer Older
Y
yurj26 已提交
1 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 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 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 190 191 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 226 227 228 229 230 231 232 233 234 235 236 237 238
import { describe, test, expect, Result } from './tests.uts'

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);
            expect(Math.acosh(2)).toEqual(1.3169578969248166);
            expect(Math.acosh(2.5)).toEqual(1.566799236972411);
        })
        test('asin', () => {
            expect(Math.asin(-1)).toEqual(-1.5707963267948966);
            // 解决精度问题
            expect(Math.asin(0)).toEqual(0.0);
            expect(Math.asin(0.5)).toEqual(0.5235987755982989);
            expect(Math.asin(1)).toEqual(1.5707963267948966);
        })
        test('asinh', () => {
            expect(Math.asinh(1)).toEqual(0.881373587019543);
            expect(Math.asinh(0)).toEqual(0);
            expect(Math.asinh(-1)).toEqual(-0.881373587019543);
            expect(Math.asinh(2)).toEqual(1.4436354751788103);
        })
        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);
            expect(Math.atanh(0.5)).toEqual(0.5493061443340548);
        })
        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);
            expect(Math.clz32()).toEqual(32);
            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);
            expect(Math.cosh(1)).toEqual(1.5430806348152437);
            expect(Math.cosh(-1)).toEqual(1.5430806348152437);
        })
        test('exp', () => {
            expect(Math.exp(-1)).toEqual(0.36787944117144233);
            // 解决精度问题
            expect(Math.exp(0)).toEqual(1.0);
            expect(Math.exp(1)).toEqual(2.718281828459045);
        })
        test('expm1', () => {
            expect(Math.expm1(1)).toEqual(1.718281828459045);
            expect(Math.expm1(-38)).toEqual(-1);
        })
        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);
            expect(Math.fround(1.337)).toEqual(1.3370000123977661);
        })
        // 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', () => {
            expect(Math.pow(7, 3)).toEqual(343);
            expect(Math.pow(4, 0.5)).toEqual(2);
        })
        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);
            expect(Math.tan(1)).toEqual(1.5574077246549023);
        })
        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 240 241 242 243
		test('round', () => {
		    expect(Math.round(0.9).toEqual(1));
		    expect(Math.round(5.95)).toEqual(6);
		    expect(Math.round(-5.05)).toEqual(-5);
		})
Y
yurj26 已提交
244 245
    })
}