TInt8Array.uts 7.8 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
    // #ifdef APP-ANDROID
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 44 45 46
  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 已提交
47
    // #TEST Int8Array.set
M
mahaifeng 已提交
48
    let int8 = new Int8Array(8);
M
mahaifeng 已提交
49
    var array = [1, 2, 3]
M
mahaifeng 已提交
50 51
    int8.set(array, 1);
    expect(int8.toString()).toEqual("0,1,2,3,0,0,0,0");
M
mahaifeng 已提交
52
    // #END
M
mahaifeng 已提交
53 54 55
  }

  testCopyWith() {
M
mahaifeng 已提交
56
    // #TEST Int8Array.copyWith
M
mahaifeng 已提交
57 58 59 60
    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 已提交
61
    // #END
M
mahaifeng 已提交
62 63 64
  }

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

M
mahaifeng 已提交
73

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

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

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

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

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

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

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

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

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

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

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

  iterator() {
M
mahaifeng 已提交
132
    // #TEST Int8Array.entries
M
mahaifeng 已提交
133 134 135 136
    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 已提交
137
    // #END
M
mahaifeng 已提交
138 139 140
  }

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

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

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

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

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

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

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

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

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

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

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

  keys() {
M
mahaifeng 已提交
189
    // #TEST Int8Array.keys
M
mahaifeng 已提交
190 191 192 193 194 195 196
    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 已提交
197
    // #END
M
mahaifeng 已提交
198 199 200
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  values() {
M
mahaifeng 已提交
287
    // #TEST Int8Array.values
M
mahaifeng 已提交
288 289 290 291 292
    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 已提交
293
    // #END
M
mahaifeng 已提交
294 295 296
  }

  arrayBufferSlice() {
M
mahaifeng 已提交
297
    // #TEST ArrayBuffer.slice with Int8Array
M
mahaifeng 已提交
298
    let buffer = new ArrayBuffer(16);
M
mahaifeng 已提交
299 300 301
    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 已提交
302

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

  // #endif
M
mahaifeng 已提交
310
}