TUint32Array.uts 7.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 TUint32Array {
  test() {
10
    // #ifdef APP-ANDROID
M
mahaifeng 已提交
11
    this.testuint32();
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
  }

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

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

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

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

  testSet() {
M
mahaifeng 已提交
66
    let uint32 = new Uint32Array(8);
67
    var array = [1, 2, 3]
M
mahaifeng 已提交
68 69
    uint32.set(array, 1);
    expect(uint32.toString()).toEqual("0,1,2,3,0,0,0,0");
M
mahaifeng 已提交
70 71 72
  }

  testCopyWith() {
73
    console.log("testCopyWith 1")
M
mahaifeng 已提交
74 75
    let uint32 = new Uint32Array(8);
    uint32.set([1, 2, 3], 1);
76
    console.log("testCopyWith 1")
M
mahaifeng 已提交
77
    uint32.copyWithin(3, 0, 3);
78
    console.log("testCopyWith 1")
M
mahaifeng 已提交
79
    expect(uint32.toString()).toEqual("0,1,2,0,1,2,0,0");
M
mahaifeng 已提交
80 81 82
  }

  testEvery() {
83 84 85
    // const isBelowThreshold = (currentValue: number, index: number, array:Uint32Array): boolean => currentValue < 40;    
    let result = new Uint32Array([12, 5, 8, 130, 44]).every((value: number, _: number, _a: Uint32Array):
      boolean => value < 40); // 
M
mahaifeng 已提交
86 87 88 89
    expect(result).toEqual(false);
  }

  testFill() {
M
mahaifeng 已提交
90 91
    let uint32 = new Uint32Array([1, 2, 3]).fill(4);
    expect(uint32.toString()).toEqual("4,4,4");
M
mahaifeng 已提交
92

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

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

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

M
mahaifeng 已提交
102 103
    uint32 = new Uint32Array([1, 2, 3]).fill(4, -3, -2);
    expect(uint32.toString()).toEqual("4,2,3");
M
mahaifeng 已提交
104
  }
105

M
mahaifeng 已提交
106 107
  testFilter() {
    // const isBelowThreshold = (currentValue: number, index: number, _): boolean => currentValue >= 10;
108 109 110

    let uint32 = new Uint32Array([12, 5, 8, 44]).filter((value: number, _: number, _a: Uint32Array):
      boolean => value >= 10);
M
mahaifeng 已提交
111
    expect(uint32.toString()).toEqual("12,44");
M
mahaifeng 已提交
112 113 114
  }

  find() {
M
mahaifeng 已提交
115
    let uint32 = new Uint32Array([4, 5, 8, 12]);
116
    let res = uint32.find((value: number, _: number, _a: Uint32Array): boolean => value > 5);
M
mahaifeng 已提交
117 118 119 120
    expect(res).toEqual(8);
  }

  findIndex() {
M
mahaifeng 已提交
121
    let uint32 = new Uint32Array([4, 6, 8, 12]);
122
    let res = uint32.findIndex((value: number, _: number, _a: Uint32Array): boolean => value > 100);
M
mahaifeng 已提交
123 124
    expect(res).toEqual(-1);

M
mahaifeng 已提交
125
    let uuint32 = new Uint32Array([4, 6, 7, 120]);
126
    res = uuint32.findIndex((value: number, _: number, _a: Uint32Array): boolean => value > 100);
M
mahaifeng 已提交
127 128 129 130
    expect(res).toEqual(3);
  }

  foreach() {
131
    new Uint32Array([0, 1, 2, 3]).forEach((value: number, index: number, _a: Uint32Array) => {
M
mahaifeng 已提交
132 133 134
      console.log(`a[${index}] = ${value}`);
    });
  }
135

M
mahaifeng 已提交
136 137 138 139
  iterator() {
    let arr = new Uint32Array([10, 20, 30, 40, 50]);
    let entries = arr.entries();
    expect(entries.next().value[1]).toEqual(10);
140

M
mahaifeng 已提交
141 142 143
  }

  includes() {
M
mahaifeng 已提交
144 145
    let uint32 = new Uint32Array([1, 2, 3]);
    let res = uint32.includes(2);
M
mahaifeng 已提交
146 147
    expect(res).toEqual(true);

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

M
mahaifeng 已提交
151
    res = uint32.includes(3, 3);
M
mahaifeng 已提交
152 153 154 155
    expect(res).toEqual(false);
  }

  indexOf() {
M
mahaifeng 已提交
156 157
    let uint32 = new Uint32Array([2, 5, 9]);
    let res = uint32.indexOf(2);
M
mahaifeng 已提交
158 159
    expect(res).toEqual(0);

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

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

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

M
mahaifeng 已提交
169
    res = uint32.indexOf(2, -3);
M
mahaifeng 已提交
170 171
    expect(res).toEqual(0);
  }
172

M
mahaifeng 已提交
173
  join() {
M
mahaifeng 已提交
174 175
    let uint32 = new Uint32Array([1, 2, 3]);
    let res = uint32.join();
M
mahaifeng 已提交
176 177
    expect(res).toEqual("1,2,3");

M
mahaifeng 已提交
178
    res = uint32.join(" / ");
M
mahaifeng 已提交
179 180
    expect(res).toEqual("1 / 2 / 3");

M
mahaifeng 已提交
181
    res = uint32.join("");
M
mahaifeng 已提交
182 183 184 185 186 187 188 189 190 191 192
    expect(res).toEqual("123");
  }

  keys() {
    let arr = new Uint32Array([10, 20, 30, 40, 50]);
    let keys = arr.keys();
    expect(keys.next().value).toEqual(0);
  }

  map() {
    let numbers = new Uint32Array([1, 4, 9]);
193
    let doubles = numbers.map((value: number, _: number, _a: Uint32Array): number => value * 2);
M
mahaifeng 已提交
194 195 196 197 198 199
    expect(numbers.toString()).toEqual("1,4,9");
    expect(doubles.toString()).toEqual("2,8,18");
  }

  reduce() {
    let total = new Uint32Array([0, 1, 2, 3]);
200
    let res = total.reduce((accumulator: number, currentValue: number, _: number, _a: Uint32Array):
M
mahaifeng 已提交
201 202 203 204
      number => accumulator + currentValue);
    expect(res).toEqual(6);

    total = new Uint32Array([0, 1, 2, 3]);
205
    res = total.reduce((accumulator: number, currentValue: number, _: number, _a: Uint32Array):
M
mahaifeng 已提交
206 207 208
      number => accumulator + currentValue, 8);
    expect(res).toEqual(14);
  }
209

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

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

  reverse() {
M
mahaifeng 已提交
223 224 225
    let uint32 = new Uint32Array([1, 2, 3]);
    uint32.reverse();
    expect(uint32.toString()).toEqual("3,2,1");
M
mahaifeng 已提交
226 227 228
  }

  slice() {
M
mahaifeng 已提交
229 230
    let uint32 = new Uint32Array([1, 2, 3]);
    let res = uint32.slice(1);
M
mahaifeng 已提交
231 232
    expect(res.toString()).toEqual("2,3");

M
mahaifeng 已提交
233
    res = uint32.slice(2);
M
mahaifeng 已提交
234 235
    expect(res.toString()).toEqual("3");

M
mahaifeng 已提交
236
    res = uint32.slice(-2);
M
mahaifeng 已提交
237 238
    expect(res.toString()).toEqual("2,3");

M
mahaifeng 已提交
239
    res = uint32.slice(0, 1);
M
mahaifeng 已提交
240 241 242 243 244 245 246 247
    expect(res.toString()).toEqual("1");
  }

  sort() {
    let numbers = new Uint32Array([40, 1, 5]);
    numbers.sort();
    expect(numbers.toString()).toEqual("1,5,40");

248
    numbers.sort((a, b): number => a - b);
M
mahaifeng 已提交
249 250
    expect(numbers.toString()).toEqual("1,5,40");
  }
251

M
mahaifeng 已提交
252 253
  subarray() {
    let buffer = new ArrayBuffer(16);
M
mahaifeng 已提交
254 255 256
    let uint32 = new Uint32Array(buffer);
    uint32.set([1, 2, 3]);
    expect(uint32.toString()).toEqual("1,2,3,0");
M
mahaifeng 已提交
257

M
mahaifeng 已提交
258
    let sub = uint32.subarray(0, 4);
M
mahaifeng 已提交
259 260 261 262 263 264 265
    expect(sub.toString()).toEqual("1,2,3,0");
  }

  values() {
    let arr = new Uint32Array([1, 2, 3]);
    let values = arr.values();
    expect(values.next().value).toEqual(1);
266

M
mahaifeng 已提交
267 268 269 270
  }

  arrayBufferSlice() {
    let buffer = new ArrayBuffer(16);
M
mahaifeng 已提交
271 272 273
    let uint32 = new Uint32Array(buffer);
    uint32[3] = 42;
    expect(uint32.toString()).toEqual("0,0,0,42");
M
mahaifeng 已提交
274 275 276 277 278

    let res = buffer.slice(8);
    let sliced = new Uint32Array(res);
    expect(sliced[1]).toEqual(42);
  }
M
mahaifeng 已提交
279
  // #endif
M
mahaifeng 已提交
280
}