TInt8Array.uts 6.9 KB
Newer Older
M
mahaifeng 已提交
1 2 3 4
import {
  describe,
  test,
  expect,
M
mahaifeng 已提交
5
  expectNumber,
M
mahaifeng 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
  Result
} from './tests.uts'

export class TInt8Array {
  test() {
    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();
  }


  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 已提交
45
    let int8 = new Int8Array(8);
M
mahaifeng 已提交
46
    var array = [1, 2, 3]
M
mahaifeng 已提交
47 48
    int8.set(array, 1);
    expect(int8.toString()).toEqual("0,1,2,3,0,0,0,0");
M
mahaifeng 已提交
49 50 51 52
  }

  testCopyWith() {
    console.log("testCopyWith 1")
M
mahaifeng 已提交
53 54
    let int8 = new Int8Array(8);
    int8.set([1, 2, 3], 1);
M
mahaifeng 已提交
55
    console.log("testCopyWith 1")
M
mahaifeng 已提交
56
    int8.copyWithin(3, 0, 3);
M
mahaifeng 已提交
57
    console.log("testCopyWith 1")
M
mahaifeng 已提交
58
    expect(int8.toString()).toEqual("0,1,2,0,1,2,0,0");
M
mahaifeng 已提交
59 60 61 62
  }

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

  testFill() {
M
mahaifeng 已提交
69 70
    let int8 = new Int8Array([1, 2, 3]).fill(4);
    expect(int8.toString()).toEqual("4,4,4");
M
mahaifeng 已提交
71

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

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

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

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

  testFilter() {
    // const isBelowThreshold = (currentValue: number, index: number, _): boolean => currentValue >= 10;

M
mahaifeng 已提交
88
    let int8 = new Int8Array([12, 5, 8, 44]).filter((value: number, _: number, _a: Int8Array): boolean =>
M
mahaifeng 已提交
89
      value >= 10);
M
mahaifeng 已提交
90
    expect(int8.toString()).toEqual("12,44");
M
mahaifeng 已提交
91 92 93
  }

  find() {
M
mahaifeng 已提交
94 95
    let int8 = new Int8Array([4, 5, 8, 12]);
    let res = int8.find((value: number, _: number, _a: Int8Array): boolean => value > 5);
M
mahaifeng 已提交
96 97 98 99
    expect(res).toEqual(8);
  }

  findIndex() {
M
mahaifeng 已提交
100 101
    let int8 = new Int8Array([4, 6, 8, 12]);
    let res = int8.findIndex((value: number, _: number, _a: Int8Array): boolean => value > 100);
M
mahaifeng 已提交
102 103
    expect(res).toEqual(-1);

M
mahaifeng 已提交
104 105
    int8 = new Int8Array([4, 6, 7, 120]);
    res = int8.findIndex((value: number, _: number, _a: Int8Array): boolean => value > 100);
M
mahaifeng 已提交
106 107 108 109
    expect(res).toEqual(3);
  }

  foreach() {
M
mahaifeng 已提交
110
    new Int8Array([0, 1, 2, 3]).forEach((value: number, index: number, _: Int8Array) => {
M
mahaifeng 已提交
111 112 113 114 115 116 117 118 119 120 121 122
      console.log(`a[${index}] = ${value}`);
    });
  }

  iterator() {
    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);
  }

  includes() {
M
mahaifeng 已提交
123 124
    let int8 = new Int8Array([1, 2, 3]);
    let res = int8.includes(2);
M
mahaifeng 已提交
125 126
    expect(res).toEqual(true);

M
mahaifeng 已提交
127
    res = int8.includes(4);
M
mahaifeng 已提交
128 129
    expect(res).toEqual(false);

M
mahaifeng 已提交
130
    res = int8.includes(3, 3);
M
mahaifeng 已提交
131 132 133 134
    expect(res).toEqual(false);
  }

  indexOf() {
M
mahaifeng 已提交
135 136
    let int8 = new Int8Array([2, 5, 9]);
    let res = int8.indexOf(2);
M
mahaifeng 已提交
137 138
    expect(res).toEqual(0);

M
mahaifeng 已提交
139
    res = int8.indexOf(7);
M
mahaifeng 已提交
140 141
    expect(res).toEqual(-1);

M
mahaifeng 已提交
142
    res = int8.indexOf(9, 2);
M
mahaifeng 已提交
143 144
    expect(res).toEqual(2);

M
mahaifeng 已提交
145
    res = int8.indexOf(2, -1);
M
mahaifeng 已提交
146 147
    expect(res).toEqual(-1);

M
mahaifeng 已提交
148
    res = int8.indexOf(2, -3);
M
mahaifeng 已提交
149 150 151 152
    expect(res).toEqual(0);
  }

  join() {
M
mahaifeng 已提交
153 154
    let int8 = new Int8Array([1, 2, 3]);
    let res = int8.join();
M
mahaifeng 已提交
155 156
    expect(res).toEqual("1,2,3");

M
mahaifeng 已提交
157
    res = int8.join(" / ");
M
mahaifeng 已提交
158 159
    expect(res).toEqual("1 / 2 / 3");

M
mahaifeng 已提交
160
    res = int8.join("");
M
mahaifeng 已提交
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
    expect(res).toEqual("123");
  }

  keys() {
    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);
  }

  map() {
    let numbers = new Int8Array([1, 4, 9]);
M
mahaifeng 已提交
176
    let doubles = numbers.map((value: number, _: number, _a: Int8Array): number => value * 2);
M
mahaifeng 已提交
177 178 179 180 181 182
    expect(numbers.toString()).toEqual("1,4,9");
    expect(doubles.toString()).toEqual("2,8,18");
  }

  reduce() {
    let total = new Int8Array([0, 1, 2, 3]);
M
mahaifeng 已提交
183
    let res = total.reduce((accumulator: number, currentValue: number, _: number, _a: Int8Array):
M
mahaifeng 已提交
184
      number => accumulator + currentValue);
M
mahaifeng 已提交
185
    expect(res).toEqual(6);
M
mahaifeng 已提交
186 187

    total = new Int8Array([0, 1, 2, 3]);
M
mahaifeng 已提交
188
    res = total.reduce((accumulator: number, currentValue: number, _: number, _a: Int8Array): number =>
M
mahaifeng 已提交
189
      accumulator + currentValue, 8);
M
mahaifeng 已提交
190
    expect(res).toEqual(14);
M
mahaifeng 已提交
191 192 193 194
  }

  reduceRight() {
    let total = new Int8Array([0, 1, 2, 3]);
M
mahaifeng 已提交
195
    let res = total.reduceRight((accumulator: number, currentValue: number, _: number, _a: Int8Array):
M
mahaifeng 已提交
196
      number => accumulator + currentValue);
M
mahaifeng 已提交
197
    expect(res).toEqual(6);
M
mahaifeng 已提交
198 199

    total = new Int8Array([0, 1, 2, 3]);
M
mahaifeng 已提交
200
    res = total.reduceRight((accumulator: number, currentValue: number, _: number, _a: Int8Array):
M
mahaifeng 已提交
201 202
      number => accumulator + currentValue, 8);
   
M
mahaifeng 已提交
203
    expect(res).toEqual(14);
M
mahaifeng 已提交
204 205 206
  }

  reverse() {
M
mahaifeng 已提交
207 208 209
    let int8 = new Int8Array([1, 2, 3]);
    int8.reverse();
    expect(int8.toString()).toEqual("3,2,1");
M
mahaifeng 已提交
210 211 212
  }

  slice() {
M
mahaifeng 已提交
213 214
    let int8 = new Int8Array([1, 2, 3]);
    let res = int8.slice(1);
M
mahaifeng 已提交
215 216
    expect(res.toString()).toEqual("2,3");

M
mahaifeng 已提交
217
    res = int8.slice(2);
M
mahaifeng 已提交
218 219
    expect(res.toString()).toEqual("3");

M
mahaifeng 已提交
220
    res = int8.slice(-2);
M
mahaifeng 已提交
221 222
    expect(res.toString()).toEqual("2,3");

M
mahaifeng 已提交
223
    res = int8.slice(0, 1);
M
mahaifeng 已提交
224 225 226 227 228 229 230 231
    expect(res.toString()).toEqual("1");
  }

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

232
    numbers.sort((a, b): number => a - b);
M
mahaifeng 已提交
233 234 235 236 237
    expect(numbers.toString()).toEqual("1,5,40");
  }

  subarray() {
    let buffer = new ArrayBuffer(8);
M
mahaifeng 已提交
238 239 240
    let int8 = new Int8Array(buffer);
    int8.set([1, 2, 3]);
    expect(int8.toString()).toEqual("1,2,3,0,0,0,0,0");
M
mahaifeng 已提交
241

M
mahaifeng 已提交
242
    let sub = int8.subarray(0, 4);
M
mahaifeng 已提交
243 244 245 246 247 248 249 250 251 252 253 254 255
    expect(sub.toString()).toEqual("1,2,3,0");
  }

  values() {
    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);
  }

  arrayBufferSlice() {
    let buffer = new ArrayBuffer(16);
M
mahaifeng 已提交
256 257 258
    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 已提交
259 260 261 262 263 264

    let res = buffer.slice(4, 12);
    let sliced = new Int8Array(res);
    expect(sliced[0]).toEqual(42);
  }
}