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

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

M
mahaifeng 已提交
12
    this.testInt32Array();
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 40
  // #ifdef (UNI-APP-X && APP-ANDROID) || WEB

M
mahaifeng 已提交
41 42 43 44 45
  testInt32Array() {
    let int32 = new Int32Array(2);
    int32[0] = 42;
    expect(int32[0]).toEqual(42);
    expect(int32.length).toEqual(2);
M
mahaifeng 已提交
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
    expect(Int32Array.BYTES_PER_ELEMENT).toEqual(4);

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

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

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

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

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

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

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

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

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

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

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

M
mahaifeng 已提交
109 110
    int32 = new Int32Array([1, 2, 3]).fill(4, -3, -2);
    expect(int32.toString()).toEqual("4,2,3");
M
mahaifeng 已提交
111
    // #END
M
mahaifeng 已提交
112 113 114
  }

  testFilter() {
M
mahaifeng 已提交
115 116
    // #TEST Int32Array.filter
    let int32 = new Int32Array([12, 5, 8, 44]).filter((value : number, _ : number, _a : Int32Array) : boolean => value >= 10);
M
mahaifeng 已提交
117
    expect(int32.toString()).toEqual("12,44");
M
mahaifeng 已提交
118
    // #END
M
mahaifeng 已提交
119 120 121
  }

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

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

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

  foreach() {
M
mahaifeng 已提交
142
    // #TEST Int32Array.forEach
M
mahaifeng 已提交
143
    new Int32Array([0, 1, 2, 3]).forEach((value : number, index : number, _ : Int32Array) => {
M
mahaifeng 已提交
144 145
      console.log(`a[${index}] = ${value}`);
    });
M
mahaifeng 已提交
146
    // #END
M
mahaifeng 已提交
147 148 149
  }

  iterator() {
M
mahaifeng 已提交
150
    // #TEST Int32Array.entries
M
mahaifeng 已提交
151 152
    let arr = new Int32Array([10, 20, 30, 40, 50]);
    let entries = arr.entries();
M
mahaifeng 已提交
153 154
    expect(entries.next().value[1]).toEqual(10);
    // #END
M
mahaifeng 已提交
155 156 157
  }

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

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

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

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

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

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

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

M
mahaifeng 已提交
186
    res = int32.indexOf(2, -3);
M
mahaifeng 已提交
187
    expect(res).toEqual(0);
M
mahaifeng 已提交
188
    // #END
M
mahaifeng 已提交
189 190 191
  }

  join() {
M
mahaifeng 已提交
192
    // #TEST Int32Array.join
M
mahaifeng 已提交
193 194
    let int32 = new Int32Array([1, 2, 3]);
    let res = int32.join();
M
mahaifeng 已提交
195 196
    expect(res).toEqual("1,2,3");

M
mahaifeng 已提交
197
    res = int32.join(" / ");
M
mahaifeng 已提交
198 199
    expect(res).toEqual("1 / 2 / 3");

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

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

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

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

    total = new Int32Array([0, 1, 2, 3]);
M
mahaifeng 已提交
229
    res = total.reduce((accumulator : number, currentValue : number, _ : number, _a : Int32Array) : number => accumulator + currentValue, 8);
M
mahaifeng 已提交
230
    expect(res).toEqual(14);
M
mahaifeng 已提交
231
    // #END
M
mahaifeng 已提交
232 233 234
  }

  reduceRight() {
M
mahaifeng 已提交
235
    // #TEST Int32Array.reduceRight
M
mahaifeng 已提交
236
    let total = new Int32Array([0, 1, 2, 3]);
M
mahaifeng 已提交
237
    let res = total.reduceRight((accumulator : number, currentValue : number, _ : number, _a : Int32Array) : number => accumulator + currentValue);
M
mahaifeng 已提交
238 239 240
    expect(res).toEqual(6);

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

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

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

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

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

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

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

M
mahaifeng 已提交
277
    numbers.sort((a, b) : number => a - b);
M
mahaifeng 已提交
278
    expect(numbers.toString()).toEqual("1,5,40");
M
mahaifeng 已提交
279
    // #END
M
mahaifeng 已提交
280 281 282
  }

  subarray() {
M
mahaifeng 已提交
283
    // #TEST Int32Array.subarray
M
mahaifeng 已提交
284
    let buffer = new ArrayBuffer(16);
M
mahaifeng 已提交
285 286 287
    let int32 = new Int32Array(buffer);
    int32.set([1, 2, 3]);
    expect(int32.toString()).toEqual("1,2,3,0");
M
mahaifeng 已提交
288

M
mahaifeng 已提交
289
    let sub = int32.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 Int32Array.values
M
mahaifeng 已提交
296 297
    let arr = new Int32Array([1, 2, 3]);
    let values = arr.values();
M
mahaifeng 已提交
298 299
    expect(values.next().value).toEqual(1);
    // #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 int32 = new Int32Array(buffer);
    int32[3] = 42;
    expect(int32.toString()).toEqual("0,0,0,42");
M
mahaifeng 已提交
309 310 311 312

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

M
mahaifeng 已提交
315
  }
M
mahaifeng 已提交
316 317 318 319
  testSome() {
    // #TEST Int32Array.some
    const int32 = new Int32Array([-10, 20, -30, 40, -50]);
    const positives = new Int32Array([10, 20, 30, 40, 50]);
M
mahaifeng 已提交
320

M
mahaifeng 已提交
321 322 323 324 325 326 327 328 329 330
    expect(int32.some((element : number, index : number, array : Int32Array) : boolean =>
      element < 0
    )).toEqual(true);


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