TFloat32Array.uts 9.5 KB
Newer Older
M
mahaifeng 已提交
1 2 3 4 5 6 7 8 9
import {
  describe,
  test,
  expect,
  Result
} from './tests.uts'

export class TFloat32Array {
  test() {
M
mahaifeng 已提交
10
    // #ifdef (UNI-APP-X && APP-ANDROID) || WEB
M
mahaifeng 已提交
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
    this.testfloat32();
    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();
35
    // #endif
M
mahaifeng 已提交
36
  }
M
mahaifeng 已提交
37
  // #ifdef (UNI-APP-X && APP-ANDROID) || WEB
M
mahaifeng 已提交
38 39 40
  from() {
    var float32Array = Float32Array.from([1, 2, 3], (v : number, _ : number) : number => v + v);
    expect(float32Array.toString()).toEqual('2,4,6');
M
mahaifeng 已提交
41
  }
M
mahaifeng 已提交
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65

  testfloat32() {
    let float32 = new Float32Array(2);
    float32[0] = 42;
    expect(float32[0]).toEqual(42);
    expect(float32.length).toEqual(2);
    expect(Float32Array.BYTES_PER_ELEMENT).toEqual(4);

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

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

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

    var k = Float32Array.of(1, 2, 3)
    expect(k.toString()).toEqual("1,2,3");
  }

  testConstructor() {
M
mahaifeng 已提交
66

M
mahaifeng 已提交
67 68 69 70 71 72 73
    let buffer = new ArrayBuffer(16);
    let float32 = new Float32Array(buffer);
    float32[1] = 42;
    expect(float32.toString()).toEqual("0,42,0,0");
  }

  testSet() {
M
mahaifeng 已提交
74
    // #TEST Float32Array.set
M
mahaifeng 已提交
75 76 77 78
    let float32 = new Float32Array(8);
    var array = [1, 2, 3]
    float32.set(array, 1);
    expect(float32.toString()).toEqual("0,1,2,3,0,0,0,0");
M
mahaifeng 已提交
79

M
mahaifeng 已提交
80 81 82 83
    let src = [1, 2, 3, 4, 1, 2, 3, 4, 1, 2, 3, 4, 1, 2, 3, 4];
    let typed_dest = new Float32Array(16);
    typed_dest.set(src);
    expect(typed_dest.toString()).toEqual("1,2,3,4,1,2,3,4,1,2,3,4,1,2,3,4");
M
mahaifeng 已提交
84

M
mahaifeng 已提交
85 86 87 88
    let typed_src = new Float32Array(src);
    typed_dest = new Float32Array(16);
    typed_dest.set(typed_src);
    expect(typed_dest.toString()).toEqual("1,2,3,4,1,2,3,4,1,2,3,4,1,2,3,4");
M
mahaifeng 已提交
89
    // #END
M
mahaifeng 已提交
90 91 92
  }

  testCopyWith() {
M
mahaifeng 已提交
93
    // #TEST Float32Array.copyWithin
M
mahaifeng 已提交
94 95 96 97
    let float32 = new Float32Array(8);
    float32.set([1, 2, 3], 1);
    float32.copyWithin(3, 0, 3);
    expect(float32.toString()).toEqual("0,1,2,0,1,2,0,0");
M
mahaifeng 已提交
98
    // #END
M
mahaifeng 已提交
99 100
  }

M
mahaifeng 已提交
101

M
mahaifeng 已提交
102
  testEvery() {
M
mahaifeng 已提交
103 104
    // #TEST Float32Array.every
    let result = new Float32Array([12, 5, 8, 130, 44]).every((value : number, _ : number, _a : Float32Array) : boolean => value < 40);
M
mahaifeng 已提交
105
    expect(result).toEqual(false);
M
mahaifeng 已提交
106
    // #END
M
mahaifeng 已提交
107 108 109
  }

  testFill() {
M
mahaifeng 已提交
110
    // #TEST Float32Array.fill
M
mahaifeng 已提交
111 112 113 114 115 116 117 118 119 120 121 122 123 124
    let float32 = new Float32Array([1, 2, 3]).fill(4);
    expect(float32.toString()).toEqual("4,4,4");

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

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

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

    float32 = new Float32Array([1, 2, 3]).fill(4, -3, -2);
    expect(float32.toString()).toEqual("4,2,3");
M
mahaifeng 已提交
125
    // #END
M
mahaifeng 已提交
126 127 128
  }

  testFilter() {
M
mahaifeng 已提交
129 130
    // #TEST Float32Array.filter
    let float32 = new Float32Array([12, 5, 8, 44]).filter((value : number, _ : number, _a : Float32Array) : boolean => value >= 10);
M
mahaifeng 已提交
131
    expect(float32.toString()).toEqual("12,44");
M
mahaifeng 已提交
132
    // #END
M
mahaifeng 已提交
133 134 135
  }

  find() {
M
mahaifeng 已提交
136
    // #TEST Float32Array.find
M
mahaifeng 已提交
137
    let float32 = new Float32Array([4, 5, 8, 12]);
M
mahaifeng 已提交
138
    let res = float32.find((value : number, _ : number, _a : Float32Array) : boolean => value > 5);
M
mahaifeng 已提交
139
    expect(res).toEqual(8);
M
mahaifeng 已提交
140
    // #END
M
mahaifeng 已提交
141 142 143
  }

  findIndex() {
M
mahaifeng 已提交
144
    // #TEST Float32Array.findIndex
M
mahaifeng 已提交
145
    let float32 = new Float32Array([4, 6, 8, 12]);
M
mahaifeng 已提交
146
    let res = float32.findIndex((value : number, _ : number, _a : Float32Array) : boolean => value > 100);
M
mahaifeng 已提交
147 148 149
    expect(res).toEqual(-1);

    let ufloat32 = new Float32Array([4, 6, 7, 120]);
M
mahaifeng 已提交
150
    res = ufloat32.findIndex((value : number, _ : number, _a : Float32Array) : boolean => value > 100);
M
mahaifeng 已提交
151
    expect(res).toEqual(3);
M
mahaifeng 已提交
152
    // #END
M
mahaifeng 已提交
153 154 155
  }

  foreach() {
M
mahaifeng 已提交
156
    // #TEST Float32Array.forEach
M
mahaifeng 已提交
157
    new Float32Array([0, 1, 2, 3]).forEach((value : number, index : number, _ : Float32Array) => {
M
mahaifeng 已提交
158 159
      console.log(`a[${index}] = ${value}`);
    });
M
mahaifeng 已提交
160
    // #END
M
mahaifeng 已提交
161 162 163
  }

  iterator() {
M
mahaifeng 已提交
164
    // #TEST Float32Array.entries
M
mahaifeng 已提交
165 166 167 168
    let arr = new Float32Array([10, 20, 30, 40, 50]);
    let entries = arr.entries();
    expect(entries.next().value[1]).toEqual(10);
    expect(entries.next().value[1]).toEqual(20);
M
mahaifeng 已提交
169
    // #END
M
mahaifeng 已提交
170 171 172
  }

  includes() {
M
mahaifeng 已提交
173
    // #TEST Float32Array.includes
M
mahaifeng 已提交
174 175 176 177 178 179 180 181 182
    let float32 = new Float32Array([1, 2, 3]);
    let res = float32.includes(2.0);
    expect(res).toEqual(true);

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

    res = float32.includes(3.0, 3);
    expect(res).toEqual(false);
M
mahaifeng 已提交
183
    // #END
M
mahaifeng 已提交
184 185 186
  }

  indexOf() {
M
mahaifeng 已提交
187
    // #TEST Float32Array.indexOf
M
mahaifeng 已提交
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
    let float32 = new Float32Array([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);
M
mahaifeng 已提交
203
    // #END
M
mahaifeng 已提交
204 205 206
  }

  join() {
M
mahaifeng 已提交
207
    // #TEST Float32Array.join
M
mahaifeng 已提交
208 209 210 211 212 213 214 215 216
    let float32 = new Float32Array([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");
M
mahaifeng 已提交
217
    // #END
M
mahaifeng 已提交
218 219 220
  }

  keys() {
M
mahaifeng 已提交
221
    // #TEST Float32Array.keys
M
mahaifeng 已提交
222 223 224 225 226 227 228
    let arr = new Float32Array([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);
M
mahaifeng 已提交
229
    // #END
M
mahaifeng 已提交
230 231 232
  }

  map() {
M
mahaifeng 已提交
233
    // #TEST Float32Array.map
M
mahaifeng 已提交
234
    let numbers = new Float32Array([1, 4, 9]);
M
mahaifeng 已提交
235
    let doubles = numbers.map((value : number, _ : number, _a : Float32Array) : number => value * 2);
M
mahaifeng 已提交
236 237
    expect(numbers.toString()).toEqual("1,4,9");
    expect(doubles.toString()).toEqual("2,8,18");
M
mahaifeng 已提交
238
    // #END
M
mahaifeng 已提交
239 240 241
  }

  reduce() {
M
mahaifeng 已提交
242
    // #TEST Float32Array.reduce
M
mahaifeng 已提交
243
    let total = new Float32Array([0, 1, 2, 3]);
M
mahaifeng 已提交
244
    let res = total.reduce((accumulator : number, currentValue : number, _ : number, _a : Float32Array) : number => accumulator + currentValue);
M
mahaifeng 已提交
245
    expect(res).toEqual(6);
M
mahaifeng 已提交
246 247

    total = new Float32Array([0, 1, 2, 3]);
M
mahaifeng 已提交
248
    res = total.reduce((accumulator : number, currentValue : number, _ : number, _a : Float32Array) : number => accumulator + currentValue, 8);
M
mahaifeng 已提交
249
    expect(res).toEqual(14);
M
mahaifeng 已提交
250
    // #END
M
mahaifeng 已提交
251 252
  }

M
mahaifeng 已提交
253

M
mahaifeng 已提交
254
  reduceRight() {
M
mahaifeng 已提交
255
    // #TEST Float32Array.reduceRight
M
mahaifeng 已提交
256
    let total = new Float32Array([0, 1, 2, 3]);
M
mahaifeng 已提交
257
    let res = total.reduceRight((accumulator : number, currentValue : number, _ : number, _a : Float32Array) : number => accumulator + currentValue);
M
mahaifeng 已提交
258
    expect(res).toEqual(6);
M
mahaifeng 已提交
259 260

    total = new Float32Array([0, 1, 2, 3]);
M
mahaifeng 已提交
261
    res = total.reduceRight((accumulator : number, currentValue : number, _ : number, _a : Float32Array) : number => accumulator + currentValue, 8);
M
mahaifeng 已提交
262
    expect(res).toEqual(14);
M
mahaifeng 已提交
263
    // #END
M
mahaifeng 已提交
264 265 266
  }

  reverse() {
M
mahaifeng 已提交
267
    // #TEST Float32Array.reverse
M
mahaifeng 已提交
268 269 270
    let float32 = new Float32Array([1, 2, 3]);
    float32.reverse();
    expect(float32.toString()).toEqual("3,2,1");
M
mahaifeng 已提交
271
    // #END
M
mahaifeng 已提交
272 273 274
  }

  slice() {
M
mahaifeng 已提交
275
    // #TEST Float32Array.slice
M
mahaifeng 已提交
276 277 278 279 280 281 282 283 284 285 286 287
    let float32 = new Float32Array([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");
M
mahaifeng 已提交
288
    // #END
M
mahaifeng 已提交
289 290 291
  }

  sort() {
M
mahaifeng 已提交
292
    // #TEST Float32Array.sort
M
mahaifeng 已提交
293 294 295 296
    let numbers = new Float32Array([40, 1, 5]);
    numbers.sort();
    expect(numbers.toString()).toEqual("1,5,40");

M
mahaifeng 已提交
297
    numbers.sort((a, b) : number => a - b);
M
mahaifeng 已提交
298
    expect(numbers.toString()).toEqual("1,5,40");
M
mahaifeng 已提交
299
    // #END
M
mahaifeng 已提交
300 301 302
  }

  subarray() {
M
mahaifeng 已提交
303
    // #TEST Float32Array.subarray
M
mahaifeng 已提交
304 305 306 307 308 309 310
    let buffer = new ArrayBuffer(16);
    let float32 = new Float32Array(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");
M
mahaifeng 已提交
311
    // #END
M
mahaifeng 已提交
312 313 314
  }

  values() {
M
mahaifeng 已提交
315
    // #TEST Float32Array.values
M
mahaifeng 已提交
316 317 318 319 320
    let arr = new Float32Array([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);
M
mahaifeng 已提交
321
    // #END
M
mahaifeng 已提交
322 323 324
  }

  arrayBufferSlice() {
M
mahaifeng 已提交
325
    // #TEST ArrayBuffer.slice
M
mahaifeng 已提交
326 327 328 329 330 331 332 333
    let buffer = new ArrayBuffer(16);
    let float32 = new Float32Array(buffer);
    float32[3] = 42;
    expect(float32.toString()).toEqual("0,0,0,42");

    let res = buffer.slice(8);
    let sliced = new Float32Array(res);
    expect(sliced[1]).toEqual(42);
M
mahaifeng 已提交
334
    // #END
M
mahaifeng 已提交
335
  }
M
mahaifeng 已提交
336

M
mahaifeng 已提交
337 338 339 340 341 342 343 344 345 346 347 348 349 350 351
  testSome() {
    // #TEST Float32Array.some
    const float32 = new Float32Array([-10, 20, -30, 40, -50]);
    const positives = new Float32Array([10, 20, 30, 40, 50]);

    expect(float32.some((element : number, index : number, array : Float32Array) : boolean =>
      element < 0
    )).toEqual(true);


    expect(positives.some((element : number, index : number, array : Float32Array) : boolean =>
      element < 0
    )).toEqual(false);
    // #END
  }
352
  // #endif
M
mahaifeng 已提交
353
}