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

M
mahaifeng 已提交
38
  // #ifdef APP-ANDROID
M
mahaifeng 已提交
39 40 41 42 43
  testInt32Array() {
    let int32 = new Int32Array(2);
    int32[0] = 42;
    expect(int32[0]).toEqual(42);
    expect(int32.length).toEqual(2);
M
mahaifeng 已提交
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
    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 已提交
60 61 62
    let int32 = new Int32Array(buffer);
    int32[1] = 42;
    expect(int32.toString()).toEqual("0,42,0,0");
M
mahaifeng 已提交
63 64 65
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  keys() {
M
mahaifeng 已提交
204
    // #TEST Int32Array.keys
M
mahaifeng 已提交
205 206 207
    let arr = new Int32Array([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 Int32Array.map
M
mahaifeng 已提交
213
    let numbers = new Int32Array([1, 4, 9]);
M
mahaifeng 已提交
214
    let doubles = numbers.map((value : number, _ : number, _a : Int32Array) : 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 Int32Array.reduce
M
mahaifeng 已提交
222
    let total = new Int32Array([0, 1, 2, 3]);
M
mahaifeng 已提交
223
    let res = total.reduce((accumulator : number, currentValue : number, _ : number, _a : Int32Array) : number => accumulator + currentValue);
M
mahaifeng 已提交
224 225 226
    expect(res).toEqual(6);

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

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

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

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

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

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

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

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

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

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

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

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

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

  arrayBufferSlice() {
M
mahaifeng 已提交
301
    
M
mahaifeng 已提交
302
    // #TEST ArrayBuffer.slice
M
mahaifeng 已提交
303
    let buffer = new ArrayBuffer(16);
M
mahaifeng 已提交
304 305 306
    let int32 = new Int32Array(buffer);
    int32[3] = 42;
    expect(int32.toString()).toEqual("0,0,0,42");
M
mahaifeng 已提交
307 308 309 310

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

M
mahaifeng 已提交
315
  // #endif
M
mahaifeng 已提交
316
}