TUInt8Array.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 TUint8Array {
  test() {
M
mahaifeng 已提交
10
    // #ifdef APP-ANDROID
M
mahaifeng 已提交
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
    this.testMAX();
    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
  // #ifdef APP-ANDROID
M
mahaifeng 已提交
38 39 40 41 42 43
  from() {
    var s = new Set([1, 2, 3]);
    var unit8 = Uint8Array.from(s);
    expect(unit8.toString()).toEqual('1,2,3');
    console.log(unit8.toString())
  }
M
mahaifeng 已提交
44
  testMAX() {
M
mahaifeng 已提交
45 46 47
    let uint8 = new Uint8Array(16);
    uint8[0] = 255;
    expect(uint8[0]).toEqual(255);
M
mahaifeng 已提交
48 49 50 51
  }

  testConstructor() {
    let buffer = new ArrayBuffer(16);
M
mahaifeng 已提交
52 53 54
    let uint8 = new Uint8Array(buffer);
    uint8[5] = 42;
    expect(uint8.toString()).toEqual("0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0");
M
mahaifeng 已提交
55 56 57
  }

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

  testCopyWith() {
M
mahaifeng 已提交
67 68
    // #TEST Uint8Array.copyWithin
    console.log("testCopyWith 1");
M
mahaifeng 已提交
69 70 71 72
    let uint8 = new Uint8Array(8);
    uint8.set([1, 2, 3], 1);
    uint8.copyWithin(3, 0, 3);
    expect(uint8.toString()).toEqual("0,1,2,0,1,2,0,0");
M
mahaifeng 已提交
73
    // #END
M
mahaifeng 已提交
74 75 76
  }

  testEvery() {
M
mahaifeng 已提交
77 78 79 80
    // #TEST Uint8Array.every
    // const isBelowThreshold = (currentValue: number, index: number, array: Uint8Array): boolean => currentValue < 40;
    let result = new Uint8Array([12, 5, 8, 130, 44]).every((value : number, _ : number, _a : Uint8Array) : boolean =>
      value < 40);
M
mahaifeng 已提交
81
    expect(result).toEqual(false);
M
mahaifeng 已提交
82
    // #END
M
mahaifeng 已提交
83 84
  }

M
mahaifeng 已提交
85

M
mahaifeng 已提交
86
  testFill() {
M
mahaifeng 已提交
87
    // #TEST Uint8Array.fill
M
mahaifeng 已提交
88 89
    let uint8 = new Uint8Array([1, 2, 3]).fill(4);
    expect(uint8.toString()).toEqual("4,4,4");
M
mahaifeng 已提交
90

M
mahaifeng 已提交
91 92
    uint8 = new Uint8Array([1, 2, 3]).fill(4, 1);
    expect(uint8.toString()).toEqual("1,4,4");
M
mahaifeng 已提交
93

M
mahaifeng 已提交
94 95
    uint8 = new Uint8Array([1, 2, 3]).fill(4, 1, 2);
    expect(uint8.toString()).toEqual("1,4,3");
M
mahaifeng 已提交
96

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

M
mahaifeng 已提交
100 101
    uint8 = new Uint8Array([1, 2, 3]).fill(4, -3, -2);
    expect(uint8.toString()).toEqual("4,2,3");
M
mahaifeng 已提交
102
    // #END
M
mahaifeng 已提交
103 104 105
  }

  testFilter() {
M
mahaifeng 已提交
106
    // #TEST Uint8Array.filter
M
mahaifeng 已提交
107
    // const isBelowThreshold = (currentValue: number, index: number, _): boolean => currentValue >= 10;
M
mahaifeng 已提交
108

M
mahaifeng 已提交
109
    let uint8 = new Uint8Array([12, 5, 8, 44]).filter((value : number, _ : number, _a : Uint8Array) : boolean => value >= 10);
M
mahaifeng 已提交
110
    expect(uint8.toString()).toEqual("12,44");
M
mahaifeng 已提交
111
    // #END
M
mahaifeng 已提交
112 113
  }
  find() {
M
mahaifeng 已提交
114
    // #TEST Uint8Array.find
M
mahaifeng 已提交
115
    let uint8 = new Uint8Array([4, 5, 8, 12]);
M
mahaifeng 已提交
116
    let res = uint8.find((value : number, _ : number, _a : Uint8Array) : boolean => value > 5);
M
mahaifeng 已提交
117
    expect(res).toEqual(8);
M
mahaifeng 已提交
118
    // #END
M
mahaifeng 已提交
119 120 121
  }

  findIndex() {
M
mahaifeng 已提交
122
    // #TEST Uint8Array.findIndex
M
mahaifeng 已提交
123
    let uint8 = new Uint8Array([4, 6, 8, 12]);
M
mahaifeng 已提交
124
    let res = uint8.findIndex((value : number, _ : number, _a : Uint8Array) : boolean => value > 100);
M
mahaifeng 已提交
125 126
    expect(res).toEqual(-1);

M
mahaifeng 已提交
127
    let uuint8 = new Uint8Array([4, 6, 7, 120]);
M
mahaifeng 已提交
128
    res = uuint8.findIndex((value : number, _ : number, _a : Uint8Array) : boolean => value > 100);
M
mahaifeng 已提交
129
    expect(res).toEqual(3);
M
mahaifeng 已提交
130
    // #END
M
mahaifeng 已提交
131 132 133
  }

  foreach() {
M
mahaifeng 已提交
134 135
    // #TEST Uint8Array.forEach
    new Uint8Array([0, 1, 2, 3]).forEach((value : number, index : number, _ : Uint8Array) => {
M
mahaifeng 已提交
136 137
      console.log(`a[${index}] = ${value}`);
    });
M
mahaifeng 已提交
138
    // #END
M
mahaifeng 已提交
139 140
  }
  iterator() {
M
mahaifeng 已提交
141
    // #TEST Uint8Array.entries
M
mahaifeng 已提交
142 143 144
    let arr = new Uint8Array([10, 20, 30, 40, 50]);
    let entries = arr.entries();
    expect(entries.next().value[1]).toEqual(10);
M
mahaifeng 已提交
145
    // #END
M
mahaifeng 已提交
146 147 148
  }

  includes() {
M
mahaifeng 已提交
149
    // #TEST Uint8Array.includes
M
mahaifeng 已提交
150 151
    let uint8 = new Uint8Array([1, 2, 3]);
    let res = uint8.includes(2);
M
mahaifeng 已提交
152 153
    expect(res).toEqual(true);

M
mahaifeng 已提交
154
    res = uint8.includes(4);
M
mahaifeng 已提交
155 156
    expect(res).toEqual(false);

M
mahaifeng 已提交
157
    res = uint8.includes(3, 3);
M
mahaifeng 已提交
158
    expect(res).toEqual(false);
M
mahaifeng 已提交
159
    // #END
M
mahaifeng 已提交
160 161 162
  }

  indexOf() {
M
mahaifeng 已提交
163
    // #TEST Uint8Array.indexOf
M
mahaifeng 已提交
164 165
    let uint8 = new Uint8Array([2, 5, 9]);
    let res = uint8.indexOf(2);
M
mahaifeng 已提交
166 167
    expect(res).toEqual(0);

M
mahaifeng 已提交
168
    res = uint8.indexOf(7);
M
mahaifeng 已提交
169 170
    expect(res).toEqual(-1);

M
mahaifeng 已提交
171
    res = uint8.indexOf(9, 2);
M
mahaifeng 已提交
172 173
    expect(res).toEqual(2);

M
mahaifeng 已提交
174
    res = uint8.indexOf(2, -1);
M
mahaifeng 已提交
175 176
    expect(res).toEqual(-1);

M
mahaifeng 已提交
177
    res = uint8.indexOf(2, -3);
M
mahaifeng 已提交
178
    expect(res).toEqual(0);
M
mahaifeng 已提交
179
    // #END
M
mahaifeng 已提交
180 181 182
  }

  join() {
M
mahaifeng 已提交
183
    // #TEST Uint8Array.join
M
mahaifeng 已提交
184 185
    let uint8 = new Uint8Array([1, 2, 3]);
    let res = uint8.join();
M
mahaifeng 已提交
186 187
    expect(res).toEqual("1,2,3");

M
mahaifeng 已提交
188
    res = uint8.join(" / ");
M
mahaifeng 已提交
189 190
    expect(res).toEqual("1 / 2 / 3");

M
mahaifeng 已提交
191
    res = uint8.join("");
M
mahaifeng 已提交
192
    expect(res).toEqual("123");
M
mahaifeng 已提交
193
    // #END
M
mahaifeng 已提交
194 195
  }
  keys() {
M
mahaifeng 已提交
196
    // #TEST Uint8Array.keys
M
mahaifeng 已提交
197 198 199
    let arr = new Uint8Array([10, 20, 30, 40, 50]);
    let keys = arr.keys();
    expect(keys.next().value).toEqual(0);
M
mahaifeng 已提交
200
    // #END
M
mahaifeng 已提交
201 202 203
  }

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

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

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

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

    total = new Uint8Array([0, 1, 2, 3]);
M
mahaifeng 已提交
234
    res = total.reduceRight((accumulator : number, currentValue : number, _ : number, _a : Uint8Array) : number =>
M
mahaifeng 已提交
235
      accumulator + currentValue, 8);
M
mahaifeng 已提交
236
    expect(res).toEqual(14);
M
mahaifeng 已提交
237
    // #END
M
mahaifeng 已提交
238 239
  }
  reverse() {
M
mahaifeng 已提交
240
    // #TEST Uint8Array.reverse
M
mahaifeng 已提交
241 242 243
    let uint8 = new Uint8Array([1, 2, 3]);
    uint8.reverse();
    expect(uint8.toString()).toEqual("3,2,1");
M
mahaifeng 已提交
244
    // #END
M
mahaifeng 已提交
245 246 247
  }

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

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

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

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

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

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

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

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

  values() {
M
mahaifeng 已提交
288
    // #TEST Uint8Array.values
M
mahaifeng 已提交
289 290 291
    let arr = new Uint8Array([1, 2, 3]);
    let values = arr.values();
    expect(values.next().value).toEqual(1);
M
mahaifeng 已提交
292
    // #END
M
mahaifeng 已提交
293 294 295
  }

  arrayBufferSlice() {
M
mahaifeng 已提交
296
    // #TEST ArrayBuffer.slice with Uint8Array
M
mahaifeng 已提交
297
    let buffer = new ArrayBuffer(16);
M
mahaifeng 已提交
298 299 300
    let uint8 = new Uint8Array(buffer);
    uint8[4] = 42;
    expect(uint8.toString()).toEqual("0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0");
M
mahaifeng 已提交
301 302 303 304

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

  // #endif
M
mahaifeng 已提交
309
}