summaryrefslogtreecommitdiff
path: root/test/built-ins/TypedArray/prototype/slice/results-with-different-length.js
blob: 34a4ad11b3e1cfa540087a0b05fc4a6282347b5e (plain)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.slice
description: slice may return a new instance with a smaller length
includes: [testTypedArray.js, compareArray.js]
features: [TypedArray]
---*/

testWithTypedArrayConstructors(function(TA) {
  var sample = new TA([40, 41, 42, 43]);

  function testRes(result, expected, msg) {
    assert(compareArray(result, expected), msg + ", result: [" + result + "]");
  }

  testRes(sample.slice(1), [41, 42, 43], "begin == 1");
  testRes(sample.slice(2), [42, 43], "begin == 2");
  testRes(sample.slice(3), [43], "begin == 3");

  testRes(sample.slice(1, 4), [41, 42, 43], "begin == 1, end == length");
  testRes(sample.slice(2, 4), [42, 43], "begin == 2, end == length");
  testRes(sample.slice(3, 4), [43], "begin == 3, end == length");

  testRes(sample.slice(0, 1), [40], "begin == 0, end == 1");
  testRes(sample.slice(0, 2), [40, 41], "begin == 0, end == 2");
  testRes(sample.slice(0, 3), [40, 41, 42], "begin == 0, end == 3");

  testRes(sample.slice(-1), [43], "begin == -1");
  testRes(sample.slice(-2), [42, 43], "begin == -2");
  testRes(sample.slice(-3), [41, 42, 43], "begin == -3");

  testRes(sample.slice(-1, 4), [43], "begin == -1, end == length");
  testRes(sample.slice(-2, 4), [42, 43], "begin == -2, end == length");
  testRes(sample.slice(-3, 4), [41, 42, 43], "begin == -3, end == length");

  testRes(sample.slice(0, -1), [40, 41, 42], "begin == 0, end == -1");
  testRes(sample.slice(0, -2), [40, 41], "begin == 0, end == -2");
  testRes(sample.slice(0, -3), [40], "begin == 0, end == -3");

  testRes(sample.slice(-0, -1), [40, 41, 42], "begin == -0, end == -1");
  testRes(sample.slice(-0, -2), [40, 41], "begin == -0, end == -2");
  testRes(sample.slice(-0, -3), [40], "begin == -0, end == -3");

  testRes(sample.slice(-2, -1), [42], "length == 4, begin == -2, end == -1");
  testRes(sample.slice(1, -1), [41, 42], "length == 4, begin == 1, end == -1");
  testRes(sample.slice(1, -2), [41], "length == 4, begin == 1, end == -2");
  testRes(sample.slice(2, -1), [42], "length == 4, begin == 2, end == -1");

  testRes(sample.slice(-1, 5), [43], "begin == -1, end > length");
  testRes(sample.slice(-2, 4), [42, 43], "begin == -2, end > length");
  testRes(sample.slice(-3, 4), [41, 42, 43], "begin == -3, end > length");
});