TUInt8ClampedArray.uts 7.5 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 35 36
import {
  describe,
  test,
  expect,
  Result
} from './tests.uts'

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

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

  testConstructor() {
    let buffer = new ArrayBuffer(16);
M
mahaifeng 已提交
44 45 46
    let uint8Clamped = new Uint8ClampedArray(buffer);
    uint8Clamped[5] = 42;
    expect(uint8Clamped.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 uint8Clamped = new Uint8ClampedArray(8);
M
mahaifeng 已提交
51
    var array = [1, 2, 3]
M
mahaifeng 已提交
52 53
    uint8Clamped.set(array, 1);
    expect(uint8Clamped.toString()).toEqual("0,1,2,3,0,0,0,0");
M
mahaifeng 已提交
54 55 56 57
  }

  testCopyWith() {
    console.log("testCopyWith 1")
M
mahaifeng 已提交
58 59 60
    let uint8Clamped = new Uint8ClampedArray(8);
    uint8Clamped.set([1, 2, 3], 1);
    uint8Clamped.copyWithin(3, 0, 3);
M
mahaifeng 已提交
61

M
mahaifeng 已提交
62
    expect(uint8Clamped.toString()).toEqual("0,1,2,0,1,2,0,0");
M
mahaifeng 已提交
63 64 65 66
  }

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

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

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

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

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

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

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

M
mahaifeng 已提交
92
    let uint8Clamped = new Uint8ClampedArray([12, 5, 8, 44]).filter((value: number, _: number, _a:
M
mahaifeng 已提交
93
      Uint8ClampedArray): boolean => value >= 10);
M
mahaifeng 已提交
94
    expect(uint8Clamped.toString()).toEqual("12,44");
M
mahaifeng 已提交
95 96 97
  }

  find() {
M
mahaifeng 已提交
98 99
    let uint8Clamped = new Uint8ClampedArray([4, 5, 8, 12]);
    let res = uint8Clamped.find((value: number, _: number, _a: Uint8ClampedArray): boolean => value > 5);
M
mahaifeng 已提交
100 101 102 103
    expect(res).toEqual(8);
  }

  findIndex() {
M
mahaifeng 已提交
104 105
    let uint8Clamped = new Uint8ClampedArray([4, 6, 8, 12]);
    let res = uint8Clamped.findIndex((value: number, _: number, _a: Uint8ClampedArray): boolean => value > 100);
M
mahaifeng 已提交
106 107
    expect(res).toEqual(-1);

M
mahaifeng 已提交
108 109
    let uuint8Clamped = new Uint8ClampedArray([4, 6, 7, 120]);
    res = uuint8Clamped.findIndex((value: number, _: number, _a: Uint8ClampedArray): boolean => value > 100);
M
mahaifeng 已提交
110 111 112 113
    expect(res).toEqual(3);
  }

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

  iterator() {
    let arr = new Uint8ClampedArray([10, 20, 30, 40, 50]);
    let entries = arr.entries();
    expect(entries.next().value[1]).toEqual(10);

  }

  includes() {
M
mahaifeng 已提交
127 128
    let uint8Clamped = new Uint8ClampedArray([1, 2, 3]);
    let res = uint8Clamped.includes(2);
M
mahaifeng 已提交
129 130
    expect(res).toEqual(true);

M
mahaifeng 已提交
131
    res = uint8Clamped.includes(4);
M
mahaifeng 已提交
132 133
    expect(res).toEqual(false);

M
mahaifeng 已提交
134
    res = uint8Clamped.includes(3, 3);
M
mahaifeng 已提交
135 136 137 138
    expect(res).toEqual(false);
  }

  indexOf() {
M
mahaifeng 已提交
139 140
    let uint8Clamped = new Uint8ClampedArray([2, 5, 9]);
    let res = uint8Clamped.indexOf(2);
M
mahaifeng 已提交
141 142
    expect(res).toEqual(0);

M
mahaifeng 已提交
143
    res = uint8Clamped.indexOf(7);
M
mahaifeng 已提交
144 145
    expect(res).toEqual(-1);

M
mahaifeng 已提交
146
    res = uint8Clamped.indexOf(9, 2);
M
mahaifeng 已提交
147 148
    expect(res).toEqual(2);

M
mahaifeng 已提交
149
    res = uint8Clamped.indexOf(2, -1);
M
mahaifeng 已提交
150 151
    expect(res).toEqual(-1);

M
mahaifeng 已提交
152
    res = uint8Clamped.indexOf(2, -3);
M
mahaifeng 已提交
153 154 155 156
    expect(res).toEqual(0);
  }

  join() {
M
mahaifeng 已提交
157 158
    let uint8Clamped = new Uint8ClampedArray([1, 2, 3]);
    let res = uint8Clamped.join();
M
mahaifeng 已提交
159 160
    expect(res).toEqual("1,2,3");

M
mahaifeng 已提交
161
    res = uint8Clamped.join(" / ");
M
mahaifeng 已提交
162 163
    expect(res).toEqual("1 / 2 / 3");

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

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

  map() {
    let numbers = new Uint8ClampedArray([1, 4, 9]);
M
mahaifeng 已提交
176
    let doubles = numbers.map((value: number, _: number, _a: Uint8ClampedArray): 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 Uint8ClampedArray([0, 1, 2, 3]);
M
mahaifeng 已提交
183
    let res = total.reduce((accumulator: number, currentValue: number, _: number, _a:
M
mahaifeng 已提交
184
      Uint8ClampedArray): number => accumulator + currentValue);
M
mahaifeng 已提交
185
    expect(res).toEqual(6);
M
mahaifeng 已提交
186 187

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

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

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

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

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

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

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

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

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

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

  subarray() {
    let buffer = new ArrayBuffer(16);
M
mahaifeng 已提交
237 238 239
    let uint8Clamped = new Uint8ClampedArray(buffer);
    uint8Clamped.set([1, 2, 3]);
    expect(uint8Clamped.toString()).toEqual("1,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0");
M
mahaifeng 已提交
240

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

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

  }

  arrayBufferSlice() {
    let buffer = new ArrayBuffer(16);
M
mahaifeng 已提交
254 255 256
    let uint8Clamped = new Uint8ClampedArray(buffer);
    uint8Clamped[4] = 42;
    expect(uint8Clamped.toString()).toEqual("0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0");
M
mahaifeng 已提交
257 258 259 260 261 262

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