TFloat64Array.js 7.5 KB
Newer Older
M
mahaifeng 已提交
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
import {
  describe,
  test,
  expect,
  Result
} from './tests.uts'

export class TFloat64Array {
  test() {
    this.testfloat64();
    this.testConstructor();
    this.testSet();
    this.testCopyWith();
    this.testEvery();
    this.testFill();
    this.testFilter();
    this.find();
    this.findIndex();
    this.foreach();
    this.iterator();
    this.includes();
    this.indexOf();
    this.join();
    this.keys();
    this.map();
    this.reduce();
    this.reduceRight();
    this.reverse();
    this.slice();
    this.sort();
    this.subarray();
    this.values();
    this.arrayBufferSlice();
  }

  testfloat64() {
    let float32 = new Float64Array(2);
    float32[0] = 42;
    expect(float32[0]).toEqual(42);
    expect(float32.length).toEqual(2);
    expect(Float64Array.BYTES_PER_ELEMENT).toEqual(8);

    let x = new Float64Array([21, 31, 3]);
    expect(x[1]).toEqual(31);

    let y = new Float64Array(x);
    expect(y[0]).toEqual(21);

    let buffer = new ArrayBuffer(16);
    let z = new Float64Array(buffer, 2, 4);
    expect(z.byteOffset).toEqual(2);
    expect(z.length).toEqual(4);
  }

  testConstructor() {
    let buffer = new ArrayBuffer(16);
    let float32 = new Float64Array(buffer);
    float32[1] = 42;
    expect(float32.toString()).toEqual("0,42");
  }

  testSet() {
    let float32 = new Float64Array(8);
    var array = [1, 2, 3]
    float32.set(array, 1);
    expect(float32.toString()).toEqual("0,1,2,3,0,0,0,0");
  }

  testCopyWith() {
    let float32 = new Float64Array(8);
    float32.set([1, 2, 3], 1);
    float32.copyWithin(3, 0, 3);
    expect(float32.toString()).toEqual("0,1,2,0,1,2,0,0");
  }

  testEvery() {
    // const isBelowThreshold = (currentValue: number, index: number, array:Float64Array): boolean => currentValue < 40;    
M
mahaifeng 已提交
78
    let result = new Float64Array([-10, -20, -30, -40, -50]).every((value: number, _: number, _:
M
mahaifeng 已提交
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
      Float64Array): boolean => value < 0); // 
    expect(result).toEqual(true);
  }

  testFill() {
    let float32 = new Float64Array([1, 2, 3]).fill(4);
    expect(float32.toString()).toEqual("4,4,4");

    float32 = new Float64Array([1, 2, 3]).fill(4, 1);
    expect(float32.toString()).toEqual("1,4,4");

    float32 = new Float64Array([1, 2, 3]).fill(4, 1, 2);
    expect(float32.toString()).toEqual("1,4,3");

    float32 = new Float64Array([1, 2, 3]).fill(4, 1, 1);
    expect(float32.toString()).toEqual("1,2,3");

    float32 = new Float64Array([1, 2, 3]).fill(4, -3, -2);
    expect(float32.toString()).toEqual("4,2,3");
  }

  testFilter() {
    // const isBelowThreshold = (currentValue: number, index: number, _): boolean => currentValue >= 10;

M
mahaifeng 已提交
103
    let float32 = new Float64Array([12, 5, 8, 44]).filter((value: number, _: number, _: Float64Array):
M
mahaifeng 已提交
104 105 106 107 108 109
      boolean => value >= 10);
    expect(float32.toString()).toEqual("12,44");
  }

  find() {
    let float32 = new Float64Array([4, 5, 8, 12]);
M
mahaifeng 已提交
110
    let res = float32.find((value: number, _: number, _: Float64Array): boolean => value > 5);
M
mahaifeng 已提交
111 112 113 114 115
    expect(res).toEqual(8);
  }

  findIndex() {
    let float32 = new Float64Array([4, 6, 8, 12]);
M
mahaifeng 已提交
116
    let res = float32.findIndex((value: number, _: number, _: Float64Array): boolean => value > 100);
M
mahaifeng 已提交
117 118 119
    expect(res).toEqual(-1);

    let ufloat32 = new Float64Array([4, 6, 7, 120]);
M
mahaifeng 已提交
120
    res = ufloat32.findIndex((value: number, _: number, _: Float64Array): boolean => value > 100);
M
mahaifeng 已提交
121 122 123 124
    expect(res).toEqual(3);
  }

  foreach() {
M
mahaifeng 已提交
125
    new Float64Array([0, 1, 2, 3]).forEach((value: number, index: number, _: Float64Array) => {
M
mahaifeng 已提交
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
      console.log(`a[${index}] = ${value}`);
    });
  }

  iterator() {
    let arr = new Float64Array([10, 20, 30, 40, 50]);
    let entries = arr.entries();
    expect(entries.next().value[1]).toEqual(10);
    expect(entries.next().value[1]).toEqual(20);
  }

  includes() {
    let float32 = new Float64Array([1, 2, 3]);
    let res = float32.includes(2);
    expect(res).toEqual(true);

    res = float32.includes(4);
    expect(res).toEqual(false);

    res = float32.includes(3, 3);
    expect(res).toEqual(false);
  }

  indexOf() {
    let float32 = new Float64Array([2, 5, 9]);
    let res = float32.indexOf(2);
    expect(res).toEqual(0);

    res = float32.indexOf(7);
    expect(res).toEqual(-1);

    res = float32.indexOf(9, 2);
    expect(res).toEqual(2);

    res = float32.indexOf(2, -1);
    expect(res).toEqual(-1);

    res = float32.indexOf(2, -3);
    expect(res).toEqual(0);
  }

  join() {
    let float32 = new Float64Array([1, 2, 3]);
    let res = float32.join();
    expect(res).toEqual("1,2,3");

    res = float32.join(" / ");
    expect(res).toEqual("1 / 2 / 3");

    res = float32.join("");
    expect(res).toEqual("123");
  }

  keys() {
    //todo 有差异 js 是keys.next().value
    let arr = new Float64Array([10, 20, 30, 40, 50]);
    let keys = arr.keys();
    expect(keys.next().value).toEqual(0);
    expect(keys.next().value).toEqual(1);
    expect(keys.next().value).toEqual(2);
    expect(keys.next().value).toEqual(3);
    expect(keys.next().value).toEqual(4);
  }

  map() {
    let numbers = new Float64Array([1, 4, 9]);
M
mahaifeng 已提交
192
    let doubles = numbers.map((value: number, _: number, _: Float64Array): number => value * 2);
M
mahaifeng 已提交
193 194 195 196 197 198
    expect(numbers.toString()).toEqual("1,4,9");
    expect(doubles.toString()).toEqual("2,8,18");
  }

  reduce() {
    let total = new Float64Array([0, 1, 2, 3]);
M
mahaifeng 已提交
199
    let res = total.reduce((accumulator: number, currentValue: number, _: number, _: Float64Array):
M
mahaifeng 已提交
200
      number => accumulator + currentValue);
M
mahaifeng 已提交
201
    expect(res).toEqual(6);
M
mahaifeng 已提交
202 203

    total = new Float64Array([0, 1, 2, 3]);
M
mahaifeng 已提交
204
    res = total.reduce((accumulator: number, currentValue: number, _: number, _: Float64Array):
M
mahaifeng 已提交
205
      number => accumulator + currentValue, 8);
M
mahaifeng 已提交
206
    expect(res).toEqual(14);
M
mahaifeng 已提交
207 208 209 210
  }

  reduceRight() {
    let total = new Float64Array([0, 1, 2, 3]);
M
mahaifeng 已提交
211
    let res = total.reduceRight((accumulator: number, currentValue: number, _: number, _:
M
mahaifeng 已提交
212
      Float64Array): number => accumulator + currentValue);
M
mahaifeng 已提交
213
    expect(res).toEqual(6);
M
mahaifeng 已提交
214 215

    total = new Float64Array([0, 1, 2, 3]);
M
mahaifeng 已提交
216
    res = total.reduceRight((accumulator: number, currentValue: number, _: number, _: Float64Array):
M
mahaifeng 已提交
217
      number => accumulator + currentValue, 8);
M
mahaifeng 已提交
218
    expect(res).toEqual(14);
M
mahaifeng 已提交
219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279
  }

  reverse() {
    let float32 = new Float64Array([1, 2, 3]);
    float32.reverse();
    expect(float32.toString()).toEqual("3,2,1");
  }

  slice() {
    let float32 = new Float64Array([1, 2, 3]);
    let res = float32.slice(1);
    expect(res.toString()).toEqual("2,3");

    res = float32.slice(2);
    expect(res.toString()).toEqual("3");

    res = float32.slice(-2);
    expect(res.toString()).toEqual("2,3");

    res = float32.slice(0, 1);
    expect(res.toString()).toEqual("1");
  }

  sort() {
    let numbers = new Float64Array([40, 1, 5]);
    numbers.sort();
    expect(numbers.toString()).toEqual("1,5,40");

    numbers.sort((a, b): Number => a - b);
    expect(numbers.toString()).toEqual("1,5,40");
  }

  subarray() {
    let buffer = new ArrayBuffer(32);
    let float32 = new Float64Array(buffer);
    float32.set([1, 2, 3]);
    expect(float32.toString()).toEqual("1,2,3,0");

    let sub = float32.subarray(0, 4);
    expect(sub.toString()).toEqual("1,2,3,0");
  }

  values() {
    let arr = new Float64Array([1, 2, 3]);
    let values = arr.values();
    expect(values.next().value).toEqual(1);
    expect(values.next().value).toEqual(2);
    expect(values.next().value).toEqual(3);
  }

  arrayBufferSlice() {
    let buffer = new ArrayBuffer(16);
    let float32 = new Float64Array(buffer);
    float32[1] = 42;
    expect(float32.toString()).toEqual("0,42");

    let res = buffer.slice(8);
    let sliced = new Float64Array(res);
    expect(sliced[0]).toEqual(42);
  }
}