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

export class TUint32Array {
  test() {
M
mahaifeng 已提交
10 11
    // #ifdef (UNI-APP-X && APP-ANDROID) || WEB

M
mahaifeng 已提交
12
    this.testuint32();
M
mahaifeng 已提交
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
    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();
M
mahaifeng 已提交
36
    // #endif
M
mahaifeng 已提交
37 38
  }

M
mahaifeng 已提交
39
  // #ifdef (UNI-APP-X && APP-ANDROID) || WEB
M
mahaifeng 已提交
40 41 42 43 44
  testuint32() {
    let uint32 = new Uint32Array(2);
    uint32[0] = 42;
    expect(uint32[0]).toEqual(42);
    expect(uint32.length).toEqual(2);
M
mahaifeng 已提交
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
    expect(Uint32Array.BYTES_PER_ELEMENT).toEqual(4);

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

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

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

  testConstructor() {
    let buffer = new ArrayBuffer(16);
M
mahaifeng 已提交
61 62 63
    let uint32 = new Uint32Array(buffer);
    uint32[1] = 42;
    expect(uint32.toString()).toEqual("0,42,0,0");
M
mahaifeng 已提交
64 65 66
  }

  testSet() {
M
mahaifeng 已提交
67
    // #TEST Uint32Array.set
M
mahaifeng 已提交
68
    let uint32 = new Uint32Array(8);
M
mahaifeng 已提交
69
    var array = [1, 2, 3];
M
mahaifeng 已提交
70 71
    uint32.set(array, 1);
    expect(uint32.toString()).toEqual("0,1,2,3,0,0,0,0");
M
mahaifeng 已提交
72
    // #END
M
mahaifeng 已提交
73 74 75
  }

  testCopyWith() {
M
mahaifeng 已提交
76 77
    // #TEST Uint32Array.copyWithin
    console.log("testCopyWith 1");
M
mahaifeng 已提交
78 79
    let uint32 = new Uint32Array(8);
    uint32.set([1, 2, 3], 1);
M
mahaifeng 已提交
80
    console.log("testCopyWith 1");
M
mahaifeng 已提交
81
    uint32.copyWithin(3, 0, 3);
M
mahaifeng 已提交
82
    console.log("testCopyWith 1");
M
mahaifeng 已提交
83
    expect(uint32.toString()).toEqual("0,1,2,0,1,2,0,0");
M
mahaifeng 已提交
84
    // #END
M
mahaifeng 已提交
85 86 87
  }

  testEvery() {
M
mahaifeng 已提交
88 89 90
    // #TEST Uint32Array.every
    // const isBelowThreshold = (currentValue: number, index: number, array: Uint32Array): boolean => currentValue < 40;
    let result = new Uint32Array([12, 5, 8, 130, 44]).every((value : number, _ : number, _a : Uint32Array) : boolean => value < 40);
M
mahaifeng 已提交
91
    expect(result).toEqual(false);
M
mahaifeng 已提交
92
    // #END
M
mahaifeng 已提交
93 94 95
  }

  testFill() {
M
mahaifeng 已提交
96
    // #TEST Uint32Array.fill
M
mahaifeng 已提交
97 98
    let uint32 = new Uint32Array([1, 2, 3]).fill(4);
    expect(uint32.toString()).toEqual("4,4,4");
M
mahaifeng 已提交
99

M
mahaifeng 已提交
100 101
    uint32 = new Uint32Array([1, 2, 3]).fill(4, 1);
    expect(uint32.toString()).toEqual("1,4,4");
M
mahaifeng 已提交
102

M
mahaifeng 已提交
103 104
    uint32 = new Uint32Array([1, 2, 3]).fill(4, 1, 2);
    expect(uint32.toString()).toEqual("1,4,3");
M
mahaifeng 已提交
105

M
mahaifeng 已提交
106 107
    uint32 = new Uint32Array([1, 2, 3]).fill(4, 1, 1);
    expect(uint32.toString()).toEqual("1,2,3");
M
mahaifeng 已提交
108

M
mahaifeng 已提交
109 110
    uint32 = new Uint32Array([1, 2, 3]).fill(4, -3, -2);
    expect(uint32.toString()).toEqual("4,2,3");
M
mahaifeng 已提交
111
    // #END
M
mahaifeng 已提交
112 113
  }
  testFilter() {
M
mahaifeng 已提交
114
    // #TEST Uint32Array.filter
M
mahaifeng 已提交
115
    // const isBelowThreshold = (currentValue: number, index: number, _): boolean => currentValue >= 10;
M
mahaifeng 已提交
116
    let uint32 = new Uint32Array([12, 5, 8, 44]).filter((value : number, _ : number, _a : Uint32Array) : boolean => value >= 10);
M
mahaifeng 已提交
117
    expect(uint32.toString()).toEqual("12,44");
M
mahaifeng 已提交
118
    // #END
M
mahaifeng 已提交
119 120 121
  }

  find() {
M
mahaifeng 已提交
122
    // #TEST Uint32Array.find
M
mahaifeng 已提交
123
    let uint32 = new Uint32Array([4, 5, 8, 12]);
M
mahaifeng 已提交
124
    let res = uint32.find((value : number, _ : number, _a : Uint32Array) : boolean => value > 5);
M
mahaifeng 已提交
125
    expect(res).toEqual(8);
M
mahaifeng 已提交
126
    // #END
M
mahaifeng 已提交
127 128 129
  }

  findIndex() {
M
mahaifeng 已提交
130
    // #TEST Uint32Array.findIndex
M
mahaifeng 已提交
131
    let uint32 = new Uint32Array([4, 6, 8, 12]);
M
mahaifeng 已提交
132
    let res = uint32.findIndex((value : number, _ : number, _a : Uint32Array) : boolean => value > 100);
M
mahaifeng 已提交
133 134
    expect(res).toEqual(-1);

M
mahaifeng 已提交
135
    let uuint32 = new Uint32Array([4, 6, 7, 120]);
M
mahaifeng 已提交
136
    res = uuint32.findIndex((value : number, _ : number, _a : Uint32Array) : boolean => value > 100);
M
mahaifeng 已提交
137
    expect(res).toEqual(3);
M
mahaifeng 已提交
138
    // #END
M
mahaifeng 已提交
139 140 141
  }

  foreach() {
M
mahaifeng 已提交
142 143
    // #TEST Uint32Array.forEach
    new Uint32Array([0, 1, 2, 3]).forEach((value : number, index : number, _a : Uint32Array) => {
M
mahaifeng 已提交
144 145
      console.log(`a[${index}] = ${value}`);
    });
M
mahaifeng 已提交
146
    // #END
M
mahaifeng 已提交
147 148
  }
  iterator() {
M
mahaifeng 已提交
149
    // #TEST Uint32Array.entries
M
mahaifeng 已提交
150 151 152
    let arr = new Uint32Array([10, 20, 30, 40, 50]);
    let entries = arr.entries();
    expect(entries.next().value[1]).toEqual(10);
M
mahaifeng 已提交
153
    // #END
M
mahaifeng 已提交
154 155 156
  }

  includes() {
M
mahaifeng 已提交
157
    // #TEST Uint32Array.includes
M
mahaifeng 已提交
158 159
    let uint32 = new Uint32Array([1, 2, 3]);
    let res = uint32.includes(2);
M
mahaifeng 已提交
160 161
    expect(res).toEqual(true);

M
mahaifeng 已提交
162
    res = uint32.includes(4);
M
mahaifeng 已提交
163 164
    expect(res).toEqual(false);

M
mahaifeng 已提交
165
    res = uint32.includes(3, 3);
M
mahaifeng 已提交
166
    expect(res).toEqual(false);
M
mahaifeng 已提交
167
    // #END
M
mahaifeng 已提交
168 169 170
  }

  indexOf() {
M
mahaifeng 已提交
171
    // #TEST Uint32Array.indexOf
M
mahaifeng 已提交
172 173
    let uint32 = new Uint32Array([2, 5, 9]);
    let res = uint32.indexOf(2);
M
mahaifeng 已提交
174 175
    expect(res).toEqual(0);

M
mahaifeng 已提交
176
    res = uint32.indexOf(7);
M
mahaifeng 已提交
177 178
    expect(res).toEqual(-1);

M
mahaifeng 已提交
179
    res = uint32.indexOf(9, 2);
M
mahaifeng 已提交
180 181
    expect(res).toEqual(2);

M
mahaifeng 已提交
182
    res = uint32.indexOf(2, -1);
M
mahaifeng 已提交
183 184
    expect(res).toEqual(-1);

M
mahaifeng 已提交
185
    res = uint32.indexOf(2, -3);
M
mahaifeng 已提交
186
    expect(res).toEqual(0);
M
mahaifeng 已提交
187
    // #END
M
mahaifeng 已提交
188 189
  }
  join() {
M
mahaifeng 已提交
190
    // #TEST Uint32Array.join
M
mahaifeng 已提交
191 192
    let uint32 = new Uint32Array([1, 2, 3]);
    let res = uint32.join();
M
mahaifeng 已提交
193 194
    expect(res).toEqual("1,2,3");

M
mahaifeng 已提交
195
    res = uint32.join(" / ");
M
mahaifeng 已提交
196 197
    expect(res).toEqual("1 / 2 / 3");

M
mahaifeng 已提交
198
    res = uint32.join("");
M
mahaifeng 已提交
199
    expect(res).toEqual("123");
M
mahaifeng 已提交
200
    // #END
M
mahaifeng 已提交
201 202 203
  }

  keys() {
M
mahaifeng 已提交
204
    // #TEST Uint32Array.keys
M
mahaifeng 已提交
205 206 207
    let arr = new Uint32Array([10, 20, 30, 40, 50]);
    let keys = arr.keys();
    expect(keys.next().value).toEqual(0);
M
mahaifeng 已提交
208
    // #END
M
mahaifeng 已提交
209 210 211
  }

  map() {
M
mahaifeng 已提交
212
    // #TEST Uint32Array.map
M
mahaifeng 已提交
213
    let numbers = new Uint32Array([1, 4, 9]);
M
mahaifeng 已提交
214
    let doubles = numbers.map((value : number, _ : number, _a : Uint32Array) : number => value * 2);
M
mahaifeng 已提交
215 216
    expect(numbers.toString()).toEqual("1,4,9");
    expect(doubles.toString()).toEqual("2,8,18");
M
mahaifeng 已提交
217
    // #END
M
mahaifeng 已提交
218 219 220
  }

  reduce() {
M
mahaifeng 已提交
221
    // #TEST Uint32Array.reduce
M
mahaifeng 已提交
222
    let total = new Uint32Array([0, 1, 2, 3]);
M
mahaifeng 已提交
223
    let res = total.reduce((accumulator : number, currentValue : number, _ : number, _a : Uint32Array) :
M
mahaifeng 已提交
224 225 226 227
      number => accumulator + currentValue);
    expect(res).toEqual(6);

    total = new Uint32Array([0, 1, 2, 3]);
M
mahaifeng 已提交
228
    res = total.reduce((accumulator : number, currentValue : number, _ : number, _a : Uint32Array) :
M
mahaifeng 已提交
229 230
      number => accumulator + currentValue, 8);
    expect(res).toEqual(14);
M
mahaifeng 已提交
231
    // #END
M
mahaifeng 已提交
232 233
  }
  reduceRight() {
M
mahaifeng 已提交
234
    // #TEST Uint32Array.reduceRight
M
mahaifeng 已提交
235
    let total = new Uint32Array([0, 1, 2, 3]);
M
mahaifeng 已提交
236
    let res = total.reduceRight((accumulator : number, currentValue : number, _ : number, _a : Uint32Array) :
M
mahaifeng 已提交
237 238 239 240
      number => accumulator + currentValue);
    expect(res).toEqual(6);

    total = new Uint32Array([0, 1, 2, 3]);
M
mahaifeng 已提交
241
    res = total.reduceRight((accumulator : number, currentValue : number, _ : number, _a : Uint32Array) :
M
mahaifeng 已提交
242 243
      number => accumulator + currentValue, 8);
    expect(res).toEqual(14);
M
mahaifeng 已提交
244
    // #END
M
mahaifeng 已提交
245 246 247
  }

  reverse() {
M
mahaifeng 已提交
248
    // #TEST Uint32Array.reverse
M
mahaifeng 已提交
249 250 251
    let uint32 = new Uint32Array([1, 2, 3]);
    uint32.reverse();
    expect(uint32.toString()).toEqual("3,2,1");
M
mahaifeng 已提交
252
    // #END
M
mahaifeng 已提交
253 254 255
  }

  slice() {
M
mahaifeng 已提交
256
    // #TEST Uint32Array.slice
M
mahaifeng 已提交
257 258
    let uint32 = new Uint32Array([1, 2, 3]);
    let res = uint32.slice(1);
M
mahaifeng 已提交
259 260
    expect(res.toString()).toEqual("2,3");

M
mahaifeng 已提交
261
    res = uint32.slice(2);
M
mahaifeng 已提交
262 263
    expect(res.toString()).toEqual("3");

M
mahaifeng 已提交
264
    res = uint32.slice(-2);
M
mahaifeng 已提交
265 266
    expect(res.toString()).toEqual("2,3");

M
mahaifeng 已提交
267
    res = uint32.slice(0, 1);
M
mahaifeng 已提交
268
    expect(res.toString()).toEqual("1");
M
mahaifeng 已提交
269
    // #END
M
mahaifeng 已提交
270 271 272
  }

  sort() {
M
mahaifeng 已提交
273
    // #TEST Uint32Array.sort
M
mahaifeng 已提交
274 275 276 277
    let numbers = new Uint32Array([40, 1, 5]);
    numbers.sort();
    expect(numbers.toString()).toEqual("1,5,40");

M
mahaifeng 已提交
278
    numbers.sort((a, b) : number => a - b);
M
mahaifeng 已提交
279
    expect(numbers.toString()).toEqual("1,5,40");
M
mahaifeng 已提交
280
    // #END
M
mahaifeng 已提交
281 282
  }
  subarray() {
M
mahaifeng 已提交
283
    // #TEST Uint32Array.subarray
M
mahaifeng 已提交
284
    let buffer = new ArrayBuffer(16);
M
mahaifeng 已提交
285 286 287
    let uint32 = new Uint32Array(buffer);
    uint32.set([1, 2, 3]);
    expect(uint32.toString()).toEqual("1,2,3,0");
M
mahaifeng 已提交
288

M
mahaifeng 已提交
289
    let sub = uint32.subarray(0, 4);
M
mahaifeng 已提交
290
    expect(sub.toString()).toEqual("1,2,3,0");
M
mahaifeng 已提交
291
    // #END
M
mahaifeng 已提交
292 293 294
  }

  values() {
M
mahaifeng 已提交
295
    // #TEST Uint32Array.values
M
mahaifeng 已提交
296 297 298
    let arr = new Uint32Array([1, 2, 3]);
    let values = arr.values();
    expect(values.next().value).toEqual(1);
M
mahaifeng 已提交
299
    // #END
M
mahaifeng 已提交
300 301 302
  }

  arrayBufferSlice() {
M
mahaifeng 已提交
303

M
mahaifeng 已提交
304
    // #TEST ArrayBuffer.slice
M
mahaifeng 已提交
305
    let buffer = new ArrayBuffer(16);
M
mahaifeng 已提交
306 307 308
    let uint32 = new Uint32Array(buffer);
    uint32[3] = 42;
    expect(uint32.toString()).toEqual("0,0,0,42");
M
mahaifeng 已提交
309 310 311 312

    let res = buffer.slice(8);
    let sliced = new Uint32Array(res);
    expect(sliced[1]).toEqual(42);
M
mahaifeng 已提交
313
    // #END
M
mahaifeng 已提交
314

M
mahaifeng 已提交
315
  }
M
mahaifeng 已提交
316 317 318 319 320 321 322 323 324 325 326 327 328 329 330
  testSome() {
    // #TEST Uint32Array.some
    const uint32 = new Uint32Array([8, 20, 30, 40, 50]);
    const positives = new Uint32Array([10, 20, 30, 40, 50]);

    expect(uint32.some((element : number, index : number, array : Uint32Array) : boolean =>
      element < 10
    )).toEqual(true);


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

M
mahaifeng 已提交
332
  // #endif
M
mahaifeng 已提交
333
}