TUInt8Array.js 7.0 KB
Newer Older
M
mahaifeng 已提交
1 2 3 4 5 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
import {
  describe,
  test,
  expect,
  Result
} from './tests.uts'

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

M
mahaifeng 已提交
36
  testMAX() {
M
mahaifeng 已提交
37 38 39
    let float32 = new Uint8Array(16);
    float32[0] = 255;
    expect(float32[0]).toEqual(255);
M
mahaifeng 已提交
40 41 42 43
  }

  testConstructor() {
    let buffer = new ArrayBuffer(16);
M
mahaifeng 已提交
44 45 46
    let float32 = new Uint8Array(buffer);
    float32[5] = 42;
    expect(float32.toString()).toEqual("0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0");
M
mahaifeng 已提交
47 48 49
  }

  testSet() {
M
mahaifeng 已提交
50
    let float32 = new Uint8Array(8);
51
    var array =[1, 2, 3]
M
mahaifeng 已提交
52 53
    float32.set(array, 1);
    expect(float32.toString()).toEqual("0,1,2,3,0,0,0,0");
M
mahaifeng 已提交
54 55 56
  }

  testCopyWith() {
57
    console.log("testCopyWith 1")
M
mahaifeng 已提交
58 59 60
    let float32 = new Uint8Array(8);
    float32.set([1, 2, 3], 1);
    float32.copyWithin(3, 0, 3);
61
    
M
mahaifeng 已提交
62
    expect(float32.toString()).toEqual("0,1,2,0,1,2,0,0");
M
mahaifeng 已提交
63 64 65
  }

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

  testFill() {
M
mahaifeng 已提交
72 73
    let float32 = new Uint8Array([1, 2, 3]).fill(4);
    expect(float32.toString()).toEqual("4,4,4");
M
mahaifeng 已提交
74

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

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

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

M
mahaifeng 已提交
84 85
    float32 = new Uint8Array([1, 2, 3]).fill(4, -3, -2);
    expect(float32.toString()).toEqual("4,2,3");
M
mahaifeng 已提交
86 87 88 89
  }

  testFilter() {
    // const isBelowThreshold = (currentValue: number, index: number, _): boolean => currentValue >= 10;
90
      
M
mahaifeng 已提交
91
    let float32 = new Uint8Array([12, 5, 8, 44]).filter((value : number, index : number, array : Uint8Array): boolean => value>= 10);
M
mahaifeng 已提交
92
    expect(float32.toString()).toEqual("12,44");
M
mahaifeng 已提交
93
  }
94

M
mahaifeng 已提交
95
  find() {
M
mahaifeng 已提交
96
    let float32 = new Uint8Array([4, 5, 8, 12]);
M
mahaifeng 已提交
97
    let res = float32.find((value : number, index : number, obj : Uint8Array): boolean => value > 5);
M
mahaifeng 已提交
98 99 100 101
    expect(res).toEqual(8);
  }

  findIndex() {
M
mahaifeng 已提交
102
    let float32 = new Uint8Array([4, 6, 8, 12]);
M
mahaifeng 已提交
103
    let res = float32.findIndex((value : number, index : number, obj : Uint8Array): boolean => value > 100);
M
mahaifeng 已提交
104 105
    expect(res).toEqual(-1);

M
mahaifeng 已提交
106
    let ufloat32 = new Uint8Array([4, 6, 7, 120]);
M
mahaifeng 已提交
107
    res = ufloat32.findIndex((value : number, index : number, obj : Uint8Array): boolean => value > 100);
M
mahaifeng 已提交
108 109 110 111
    expect(res).toEqual(3);
  }

  foreach() {
M
mahaifeng 已提交
112
    new Uint8Array([0, 1, 2, 3]).forEach((value : number, index : number, array : Uint8Array) => {
M
mahaifeng 已提交
113 114 115
      console.log(`a[${index}] = ${value}`);
    });
  }
116

M
mahaifeng 已提交
117 118 119 120
  iterator() {
    let arr = new Uint8Array([10, 20, 30, 40, 50]);
    let entries = arr.entries();
    expect(entries.next().value[1]).toEqual(10);
121
   
M
mahaifeng 已提交
122 123 124
  }

  includes() {
M
mahaifeng 已提交
125
    let float32 = new Uint8Array([1, 2, 3]);
126
    let res = float32.includes(2.0);
M
mahaifeng 已提交
127 128
    expect(res).toEqual(true);

129
    res = float32.includes(4.0);
M
mahaifeng 已提交
130 131
    expect(res).toEqual(false);

132
    res = float32.includes(3.0, 3);
M
mahaifeng 已提交
133 134 135 136
    expect(res).toEqual(false);
  }

  indexOf() {
M
mahaifeng 已提交
137 138
    let float32 = new Uint8Array([2, 5, 9]);
    let res = float32.indexOf(2);
M
mahaifeng 已提交
139 140
    expect(res).toEqual(0);

M
mahaifeng 已提交
141
    res = float32.indexOf(7);
M
mahaifeng 已提交
142 143
    expect(res).toEqual(-1);

M
mahaifeng 已提交
144
    res = float32.indexOf(9, 2);
M
mahaifeng 已提交
145 146
    expect(res).toEqual(2);

M
mahaifeng 已提交
147
    res = float32.indexOf(2, -1);
M
mahaifeng 已提交
148 149
    expect(res).toEqual(-1);

M
mahaifeng 已提交
150
    res = float32.indexOf(2, -3);
M
mahaifeng 已提交
151 152 153 154
    expect(res).toEqual(0);
  }

  join() {
M
mahaifeng 已提交
155 156
    let float32 = new Uint8Array([1, 2, 3]);
    let res = float32.join();
M
mahaifeng 已提交
157 158
    expect(res).toEqual("1,2,3");

M
mahaifeng 已提交
159
    res = float32.join(" / ");
M
mahaifeng 已提交
160 161
    expect(res).toEqual("1 / 2 / 3");

M
mahaifeng 已提交
162
    res = float32.join("");
M
mahaifeng 已提交
163 164
    expect(res).toEqual("123");
  }
165

M
mahaifeng 已提交
166 167 168 169 170 171 172 173
  keys() {
    let arr = new Uint8Array([10, 20, 30, 40, 50]);
    let keys = arr.keys();
    expect(keys.next().value).toEqual(0);
  }

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

  reduce() {
    let total = new Uint8Array([0, 1, 2, 3]);
M
mahaifeng 已提交
181
    let res = total.reduce((accumulator : number, currentValue : number, currentIndex : number, array : Uint8Array): number => accumulator + currentValue);
182
    expect(res).toEqual(6.0);
M
mahaifeng 已提交
183 184

    total = new Uint8Array([0, 1, 2, 3]);
M
mahaifeng 已提交
185
    res = total.reduce((accumulator : number, currentValue : number, currentIndex : number, array : Uint8Array): number => accumulator + currentValue, 8);
186
    expect(res).toEqual(14.0);
M
mahaifeng 已提交
187 188 189 190
  }

  reduceRight() {
    let total = new Uint8Array([0, 1, 2, 3]);
M
mahaifeng 已提交
191
    let res = total.reduceRight((accumulator: number, currentValue : number, currentIndex : number, array : Uint8Array): number => accumulator + currentValue);
192
    expect(res).toEqual(6.0);
M
mahaifeng 已提交
193 194

    total = new Uint8Array([0, 1, 2, 3]);
M
mahaifeng 已提交
195
    res = total.reduceRight((accumulator: number, currentValue : number, currentIndex : number, array : Uint8Array): number => accumulator + currentValue, 8);
196
    expect(res).toEqual(14.0);
M
mahaifeng 已提交
197
  }
198

M
mahaifeng 已提交
199
  reverse() {
M
mahaifeng 已提交
200 201 202
    let float32 = new Uint8Array([1, 2, 3]);
    float32.reverse();
    expect(float32.toString()).toEqual("3,2,1");
M
mahaifeng 已提交
203 204 205
  }

  slice() {
M
mahaifeng 已提交
206 207
    let float32 = new Uint8Array([1, 2, 3]);
    let res = float32.slice(1);
M
mahaifeng 已提交
208 209
    expect(res.toString()).toEqual("2,3");

M
mahaifeng 已提交
210
    res = float32.slice(2);
M
mahaifeng 已提交
211 212
    expect(res.toString()).toEqual("3");

M
mahaifeng 已提交
213
    res = float32.slice(-2);
M
mahaifeng 已提交
214 215
    expect(res.toString()).toEqual("2,3");

M
mahaifeng 已提交
216
    res = float32.slice(0, 1);
M
mahaifeng 已提交
217 218 219 220 221 222 223 224
    expect(res.toString()).toEqual("1");
  }

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

225
    numbers.sort((a, b):Number => a - b);
M
mahaifeng 已提交
226 227 228 229 230
    expect(numbers.toString()).toEqual("1,5,40");
  }

  subarray() {
    let buffer = new ArrayBuffer(16);
M
mahaifeng 已提交
231 232 233
    let float32 = new Uint8Array(buffer);
    float32.set([1, 2, 3]);
    expect(float32.toString()).toEqual("1,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0");
M
mahaifeng 已提交
234

M
mahaifeng 已提交
235
    let sub = float32.subarray(0, 4);
M
mahaifeng 已提交
236 237 238 239 240 241 242
    expect(sub.toString()).toEqual("1,2,3,0");
  }

  values() {
    let arr = new Uint8Array([1, 2, 3]);
    let values = arr.values();
    expect(values.next().value).toEqual(1);
243
  
M
mahaifeng 已提交
244 245 246 247
  }

  arrayBufferSlice() {
    let buffer = new ArrayBuffer(16);
M
mahaifeng 已提交
248 249 250
    let float32 = new Uint8Array(buffer);
    float32[4] = 42;
    expect(float32.toString()).toEqual("0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0");
M
mahaifeng 已提交
251 252 253 254

    let res = buffer.slice(4, 12);
    let sliced = new Uint8Array(res);
    expect(sliced[0]).toEqual(42);
M
mahaifeng 已提交
255
  }
256
}