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

export class TUint16Array {
  test() {
M
mahaifeng 已提交
10 11
    // #ifdef APP-ANDROID
    this.testuint16();
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
  }
M
mahaifeng 已提交
37

M
mahaifeng 已提交
38 39 40 41 42 43
  // #ifdef APP-ANDROID
  testuint16() {
    let uint16 = new Uint16Array(2);
    uint16[0] = 42;
    expect(uint16[0]).toEqual(42);
    expect(uint16.length).toEqual(2);
M
mahaifeng 已提交
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
    expect(Uint16Array.BYTES_PER_ELEMENT).toEqual(4);

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

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

    let buffer = new ArrayBuffer(16);
    let z = new Uint16Array(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 uint16 = new Uint16Array(buffer);
    uint16[1] = 42;
    expect(uint16.toString()).toEqual("0,42,0,0,0,0,0,0");
M
mahaifeng 已提交
63 64 65
  }

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

  testCopyWith() {
M
mahaifeng 已提交
75
    // #TEST Uint16Array.copyWith
M
mahaifeng 已提交
76
    console.log("testCopyWith 1")
M
mahaifeng 已提交
77 78
    let uint16 = new Uint16Array(8);
    uint16.set([1, 2, 3], 1);
M
mahaifeng 已提交
79
    console.log("testCopyWith 2")
M
mahaifeng 已提交
80
    uint16.copyWithin(3, 0, 3);
M
mahaifeng 已提交
81
    console.log("testCopyWith 3")
M
mahaifeng 已提交
82
    expect(uint16.toString()).toEqual("0,1,2,0,1,2,0,0");
M
mahaifeng 已提交
83
    // #END
M
mahaifeng 已提交
84 85
  }
  testEvery() {
M
mahaifeng 已提交
86 87 88 89
    // #TEST Uint16Array.every
    // const isBelowThreshold = (currentValue: number, index: number, array: Uint16Array): boolean => currentValue < 40;    
    let result = new Uint16Array([12, 5, 8, 130, 44]).every((value : number, _ : number, _a : Uint16Array) :
      boolean => value < 40);
M
mahaifeng 已提交
90
    expect(result).toEqual(false);
M
mahaifeng 已提交
91
    // #END
M
mahaifeng 已提交
92 93 94
  }

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

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

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

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

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

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

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

M
mahaifeng 已提交
130

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

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

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

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

  includes() {
M
mahaifeng 已提交
160
    // #TEST Uint16Array.includes
M
mahaifeng 已提交
161 162
    let uint16 = new Uint16Array([1, 2, 3]);
    let res = uint16.includes(2);
M
mahaifeng 已提交
163 164
    expect(res).toEqual(true);

M
mahaifeng 已提交
165
    res = uint16.includes(4);
M
mahaifeng 已提交
166 167
    expect(res).toEqual(false);

M
mahaifeng 已提交
168
    res = uint16.includes(3, 3);
M
mahaifeng 已提交
169
    expect(res).toEqual(false);
M
mahaifeng 已提交
170
    // #END
M
mahaifeng 已提交
171 172
  }
  indexOf() {
M
mahaifeng 已提交
173
    // #TEST Uint16Array.indexOf
M
mahaifeng 已提交
174 175
    let uint16 = new Uint16Array([2, 5, 9]);
    let res = uint16.indexOf(2);
M
mahaifeng 已提交
176 177
    expect(res).toEqual(0);

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

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

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

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

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

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

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

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

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

M
mahaifeng 已提交
223

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

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

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

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

  reverse() {
M
mahaifeng 已提交
253
    // #TEST Uint16Array.reverse
M
mahaifeng 已提交
254 255 256
    let uint16 = new Uint16Array([1, 2, 3]);
    uint16.reverse();
    expect(uint16.toString()).toEqual("3,2,1");
M
mahaifeng 已提交
257
    // #END
M
mahaifeng 已提交
258 259 260
  }

  slice() {
M
mahaifeng 已提交
261
    // #TEST Uint16Array.slice
M
mahaifeng 已提交
262 263
    let uint16 = new Uint16Array([1, 2, 3]);
    let res = uint16.slice(1);
M
mahaifeng 已提交
264 265
    expect(res.toString()).toEqual("2,3");

M
mahaifeng 已提交
266
    res = uint16.slice(2);
M
mahaifeng 已提交
267 268
    expect(res.toString()).toEqual("3");

M
mahaifeng 已提交
269
    res = uint16.slice(-2);
M
mahaifeng 已提交
270 271
    expect(res.toString()).toEqual("2,3");

M
mahaifeng 已提交
272
    res = uint16.slice(0, 1);
M
mahaifeng 已提交
273
    expect(res.toString()).toEqual("1");
M
mahaifeng 已提交
274
    // #END
M
mahaifeng 已提交
275 276
  }
  sort() {
M
mahaifeng 已提交
277
    // #TEST Uint16Array.sort
M
mahaifeng 已提交
278 279 280 281
    let numbers = new Uint16Array([40, 1, 5]);
    numbers.sort();
    expect(numbers.toString()).toEqual("1,5,40");

M
mahaifeng 已提交
282
    numbers.sort((a, b) : number => a - b);
M
mahaifeng 已提交
283
    expect(numbers.toString()).toEqual("1,5,40");
M
mahaifeng 已提交
284
    // #END
M
mahaifeng 已提交
285 286 287
  }

  subarray() {
M
mahaifeng 已提交
288
    // #TEST Uint16Array.subarray
M
mahaifeng 已提交
289
    let buffer = new ArrayBuffer(16);
M
mahaifeng 已提交
290 291 292
    let uint16 = new Uint16Array(buffer);
    uint16.set([1, 2, 3]);
    expect(uint16.toString()).toEqual("1,2,3,0,0,0,0,0");
M
mahaifeng 已提交
293

M
mahaifeng 已提交
294
    let sub = uint16.subarray(0, 4);
M
mahaifeng 已提交
295
    expect(sub.toString()).toEqual("1,2,3,0");
M
mahaifeng 已提交
296
    // #END
M
mahaifeng 已提交
297 298 299
  }

  values() {
M
mahaifeng 已提交
300
    // #TEST Uint16Array.values
M
mahaifeng 已提交
301 302 303
    let arr = new Uint16Array([1, 2, 3]);
    let values = arr.values();
    expect(values.next().value).toEqual(1);
M
mahaifeng 已提交
304
    // #END
M
mahaifeng 已提交
305 306 307
  }

  arrayBufferSlice() {
M
mahaifeng 已提交
308
    // #TEST Uint16Array.arrayBufferSlice
M
mahaifeng 已提交
309
    let buffer = new ArrayBuffer(16);
M
mahaifeng 已提交
310 311 312
    let uint16 = new Uint16Array(buffer);
    uint16[4] = 42;
    expect(uint16.toString()).toEqual("0,0,0,0,42,0,0,0");
M
mahaifeng 已提交
313 314 315 316

    let res = buffer.slice(8);
    let sliced = new Uint16Array(res);
    expect(sliced[0]).toEqual(42);
M
mahaifeng 已提交
317
    // #END
M
mahaifeng 已提交
318
  }
M
mahaifeng 已提交
319

M
mahaifeng 已提交
320
  // #endif
M
mahaifeng 已提交
321

M
mahaifeng 已提交
322
}