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

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

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 46 47 48
  testConstructor() {
    let buffer = new ArrayBuffer(16);
    let int8View = new Int8Array(buffer);
    int8View[5] = 42;
    expect(int8View.toString()).toEqual("0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0");
  }

  testSet() {
M
mahaifeng 已提交
49
    // #TEST Int8Array.set
M
mahaifeng 已提交
50
    let int8 = new Int8Array(8);
M
mahaifeng 已提交
51
    var array = [1, 2, 3]
M
mahaifeng 已提交
52 53
    int8.set(array, 1);
    expect(int8.toString()).toEqual("0,1,2,3,0,0,0,0");
M
mahaifeng 已提交
54
    // #END
M
mahaifeng 已提交
55 56 57
  }

  testCopyWith() {
M
mahaifeng 已提交
58
    // #TEST Int8Array.copyWithin
M
mahaifeng 已提交
59 60 61 62
    let int8 = new Int8Array(8);
    int8.set([1, 2, 3], 1);
    int8.copyWithin(3, 0, 3);
    expect(int8.toString()).toEqual("0,1,2,0,1,2,0,0");
M
mahaifeng 已提交
63
    // #END
M
mahaifeng 已提交
64 65 66
  }

  testEvery() {
M
mahaifeng 已提交
67
    // #TEST Int8Array.every
M
mahaifeng 已提交
68
    // const isBelowThreshold = (currentValue: number, index: number, array:Int8Array): boolean => currentValue < 40;    
M
mahaifeng 已提交
69 70
    let result = new Int8Array([12, 5, 8, 130, 44]).every((value : number, _ : number, _a : Int8Array) : boolean =>
      value < 40);
M
mahaifeng 已提交
71
    expect(result).toEqual(false);
M
mahaifeng 已提交
72
    // #END
M
mahaifeng 已提交
73 74
  }

M
mahaifeng 已提交
75

M
mahaifeng 已提交
76
  testFill() {
M
mahaifeng 已提交
77
    // #TEST Int8Array.fill
M
mahaifeng 已提交
78 79
    let int8 = new Int8Array([1, 2, 3]).fill(4);
    expect(int8.toString()).toEqual("4,4,4");
M
mahaifeng 已提交
80

M
mahaifeng 已提交
81 82
    int8 = new Int8Array([1, 2, 3]).fill(4, 1);
    expect(int8.toString()).toEqual("1,4,4");
M
mahaifeng 已提交
83

M
mahaifeng 已提交
84 85
    int8 = new Int8Array([1, 2, 3]).fill(4, 1, 2);
    expect(int8.toString()).toEqual("1,4,3");
M
mahaifeng 已提交
86

M
mahaifeng 已提交
87 88
    int8 = new Int8Array([1, 2, 3]).fill(4, 1, 1);
    expect(int8.toString()).toEqual("1,2,3");
M
mahaifeng 已提交
89

M
mahaifeng 已提交
90 91
    int8 = new Int8Array([1, 2, 3]).fill(4, -3, -2);
    expect(int8.toString()).toEqual("4,2,3");
M
mahaifeng 已提交
92
    // #END
M
mahaifeng 已提交
93 94 95
  }

  testFilter() {
M
mahaifeng 已提交
96
    // #TEST Int8Array.filter
M
mahaifeng 已提交
97 98
    // const isBelowThreshold = (currentValue: number, index: number, _): boolean => currentValue >= 10;

M
mahaifeng 已提交
99
    let int8 = new Int8Array([12, 5, 8, 44]).filter((value : number, _ : number, _a : Int8Array) : boolean =>
M
mahaifeng 已提交
100
      value >= 10);
M
mahaifeng 已提交
101
    expect(int8.toString()).toEqual("12,44");
M
mahaifeng 已提交
102
    // #END
M
mahaifeng 已提交
103 104 105
  }

  find() {
M
mahaifeng 已提交
106
    // #TEST Int8Array.find
M
mahaifeng 已提交
107
    let int8 = new Int8Array([4, 5, 8, 12]);
M
mahaifeng 已提交
108
    let res = int8.find((value : number, _ : number, _a : Int8Array) : boolean => value > 5);
M
mahaifeng 已提交
109
    expect(res).toEqual(8);
M
mahaifeng 已提交
110
    // #END
M
mahaifeng 已提交
111 112 113
  }

  findIndex() {
M
mahaifeng 已提交
114
    // #TEST Int8Array.findIndex
M
mahaifeng 已提交
115
    let int8 = new Int8Array([4, 6, 8, 12]);
M
mahaifeng 已提交
116
    let res = int8.findIndex((value : number, _ : number, _a : Int8Array) : boolean => value > 100);
M
mahaifeng 已提交
117 118
    expect(res).toEqual(-1);

M
mahaifeng 已提交
119
    int8 = new Int8Array([4, 6, 7, 120]);
M
mahaifeng 已提交
120
    res = int8.findIndex((value : number, _ : number, _a : Int8Array) : boolean => value > 100);
M
mahaifeng 已提交
121
    expect(res).toEqual(3);
M
mahaifeng 已提交
122
    // #END
M
mahaifeng 已提交
123 124 125
  }

  foreach() {
M
mahaifeng 已提交
126 127
    // #TEST Int8Array.forEach
    new Int8Array([0, 1, 2, 3]).forEach((value : number, index : number, _a : Int8Array) => {
M
mahaifeng 已提交
128 129
      console.log(`a[${index}] = ${value}`);
    });
M
mahaifeng 已提交
130
    // #END
M
mahaifeng 已提交
131 132 133
  }

  iterator() {
M
mahaifeng 已提交
134
    // #TEST Int8Array.entries
M
mahaifeng 已提交
135 136 137 138
    let arr = new Int8Array([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 已提交
139
    // #END
M
mahaifeng 已提交
140 141 142
  }

  includes() {
M
mahaifeng 已提交
143
    // #TEST Int8Array.includes
M
mahaifeng 已提交
144 145
    let int8 = new Int8Array([1, 2, 3]);
    let res = int8.includes(2);
M
mahaifeng 已提交
146 147
    expect(res).toEqual(true);

M
mahaifeng 已提交
148
    res = int8.includes(4);
M
mahaifeng 已提交
149 150
    expect(res).toEqual(false);

M
mahaifeng 已提交
151
    res = int8.includes(3, 3);
M
mahaifeng 已提交
152
    expect(res).toEqual(false);
M
mahaifeng 已提交
153
    // #END
M
mahaifeng 已提交
154 155 156
  }

  indexOf() {
M
mahaifeng 已提交
157
    // #TEST Int8Array.indexOf
M
mahaifeng 已提交
158 159
    let int8 = new Int8Array([2, 5, 9]);
    let res = int8.indexOf(2);
M
mahaifeng 已提交
160 161
    expect(res).toEqual(0);

M
mahaifeng 已提交
162
    res = int8.indexOf(7);
M
mahaifeng 已提交
163 164
    expect(res).toEqual(-1);

M
mahaifeng 已提交
165
    res = int8.indexOf(9, 2);
M
mahaifeng 已提交
166 167
    expect(res).toEqual(2);

M
mahaifeng 已提交
168
    res = int8.indexOf(2, -1);
M
mahaifeng 已提交
169 170
    expect(res).toEqual(-1);

M
mahaifeng 已提交
171
    res = int8.indexOf(2, -3);
M
mahaifeng 已提交
172
    expect(res).toEqual(0);
M
mahaifeng 已提交
173
    // #END
M
mahaifeng 已提交
174 175 176
  }

  join() {
M
mahaifeng 已提交
177
    // #TEST Int8Array.join
M
mahaifeng 已提交
178 179
    let int8 = new Int8Array([1, 2, 3]);
    let res = int8.join();
M
mahaifeng 已提交
180 181
    expect(res).toEqual("1,2,3");

M
mahaifeng 已提交
182
    res = int8.join(" / ");
M
mahaifeng 已提交
183 184
    expect(res).toEqual("1 / 2 / 3");

M
mahaifeng 已提交
185
    res = int8.join("");
M
mahaifeng 已提交
186
    expect(res).toEqual("123");
M
mahaifeng 已提交
187
    // #END
M
mahaifeng 已提交
188 189 190
  }

  keys() {
M
mahaifeng 已提交
191
    // #TEST Int8Array.keys
M
mahaifeng 已提交
192 193 194 195 196 197 198
    let arr = new Int8Array([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 已提交
199
    // #END
M
mahaifeng 已提交
200 201 202
  }

  map() {
M
mahaifeng 已提交
203
    // #TEST Int8Array.map
M
mahaifeng 已提交
204
    let numbers = new Int8Array([1, 4, 9]);
M
mahaifeng 已提交
205
    let doubles = numbers.map((value : number, _ : number, _a : Int8Array) : number => value * 2);
M
mahaifeng 已提交
206 207
    expect(numbers.toString()).toEqual("1,4,9");
    expect(doubles.toString()).toEqual("2,8,18");
M
mahaifeng 已提交
208
    // #END
M
mahaifeng 已提交
209 210 211
  }

  reduce() {
M
mahaifeng 已提交
212
    // #TEST Int8Array.reduce
M
mahaifeng 已提交
213
    let total = new Int8Array([0, 1, 2, 3]);
M
mahaifeng 已提交
214
    let res = total.reduce((accumulator : number, currentValue : number, _ : number, _a : Int8Array) :
M
mahaifeng 已提交
215
      number => accumulator + currentValue);
M
mahaifeng 已提交
216
    expect(res).toEqual(6);
M
mahaifeng 已提交
217 218

    total = new Int8Array([0, 1, 2, 3]);
M
mahaifeng 已提交
219
    res = total.reduce((accumulator : number, currentValue : number, _ : number, _a : Int8Array) : number =>
M
mahaifeng 已提交
220
      accumulator + currentValue, 8);
M
mahaifeng 已提交
221
    expect(res).toEqual(14);
M
mahaifeng 已提交
222
    // #END
M
mahaifeng 已提交
223 224 225
  }

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

    total = new Int8Array([0, 1, 2, 3]);
M
mahaifeng 已提交
233
    res = total.reduceRight((accumulator : number, currentValue : number, _ : number, _a : Int8Array) :
M
mahaifeng 已提交
234
      number => accumulator + currentValue, 8);
M
mahaifeng 已提交
235

M
mahaifeng 已提交
236
    expect(res).toEqual(14);
M
mahaifeng 已提交
237
    // #END
M
mahaifeng 已提交
238 239 240
  }

  reverse() {
M
mahaifeng 已提交
241
    // #TEST Int8Array.reverse
M
mahaifeng 已提交
242 243 244
    let int8 = new Int8Array([1, 2, 3]);
    int8.reverse();
    expect(int8.toString()).toEqual("3,2,1");
M
mahaifeng 已提交
245
    // #END
M
mahaifeng 已提交
246 247 248
  }

  slice() {
M
mahaifeng 已提交
249
    // #TEST Int8Array.slice
M
mahaifeng 已提交
250 251
    let int8 = new Int8Array([1, 2, 3]);
    let res = int8.slice(1);
M
mahaifeng 已提交
252 253
    expect(res.toString()).toEqual("2,3");

M
mahaifeng 已提交
254
    res = int8.slice(2);
M
mahaifeng 已提交
255 256
    expect(res.toString()).toEqual("3");

M
mahaifeng 已提交
257
    res = int8.slice(-2);
M
mahaifeng 已提交
258 259
    expect(res.toString()).toEqual("2,3");

M
mahaifeng 已提交
260
    res = int8.slice(0, 1);
M
mahaifeng 已提交
261
    expect(res.toString()).toEqual("1");
M
mahaifeng 已提交
262
    // #END
M
mahaifeng 已提交
263 264 265
  }

  sort() {
M
mahaifeng 已提交
266
    // #TEST Int8Array.sort
M
mahaifeng 已提交
267 268 269 270
    let numbers = new Int8Array([40, 1, 5]);
    numbers.sort();
    expect(numbers.toString()).toEqual("1,5,40");

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

  subarray() {
M
mahaifeng 已提交
277
    // #TEST Int8Array.subarray
M
mahaifeng 已提交
278
    let buffer = new ArrayBuffer(8);
M
mahaifeng 已提交
279 280 281
    let int8 = new Int8Array(buffer);
    int8.set([1, 2, 3]);
    expect(int8.toString()).toEqual("1,2,3,0,0,0,0,0");
M
mahaifeng 已提交
282

M
mahaifeng 已提交
283
    let sub = int8.subarray(0, 4);
M
mahaifeng 已提交
284
    expect(sub.toString()).toEqual("1,2,3,0");
M
mahaifeng 已提交
285
    // #END
M
mahaifeng 已提交
286 287 288
  }

  values() {
M
mahaifeng 已提交
289
    // #TEST Int8Array.values
M
mahaifeng 已提交
290 291 292 293 294
    let arr = new Int8Array([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 已提交
295
    // #END
M
mahaifeng 已提交
296 297 298
  }

  arrayBufferSlice() {
M
mahaifeng 已提交
299

M
mahaifeng 已提交
300
    // #TEST ArrayBuffer.slice
M
mahaifeng 已提交
301
    let buffer = new ArrayBuffer(16);
M
mahaifeng 已提交
302 303 304
    let int8 = new Int8Array(buffer);
    int8[4] = 42;
    expect(int8.toString()).toEqual("0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0");
M
mahaifeng 已提交
305

M
mahaifeng 已提交
306
    let res = buffer.slice(4, 5);
M
mahaifeng 已提交
307 308
    let sliced = new Int8Array(res);
    expect(sliced[0]).toEqual(42);
M
mahaifeng 已提交
309
    // #END
M
mahaifeng 已提交
310

M
mahaifeng 已提交
311
  }
M
mahaifeng 已提交
312

M
mahaifeng 已提交
313 314 315 316 317 318 319 320 321 322 323 324 325 326 327
  testSome() {
    // #TEST Int8Array.some
    const int8 = new Int8Array([-10, 20, -30, 40, -50]);
    const positives = new Int8Array([10, 20, 30, 40, 50]);

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


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