summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/DataView/toindex-bytelength-sab.js
blob: 9514d7b8c34aba611009f95c33252e1e34a4eafc (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
// |reftest| skip-if(!this.hasOwnProperty('SharedArrayBuffer')) -- SharedArrayBuffer is not enabled unconditionally
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// Copyright (C) 2017 Mozilla Corporation. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-dataview-buffer-byteoffset-bytelength
description: >
  ToIndex conversions on byteLength
info: |
  24.2.2.1 DataView ( buffer, byteOffset, byteLength )

  ...
  8. If byteLength is either not present or undefined, then
    a. Let viewByteLength be bufferByteLength - offset.
  9. Else,
    a. Let viewByteLength be ? ToIndex(byteLength).
    b. If offset + viewByteLength > bufferByteLength, throw a RangeError
    exception.
  ...

  ToIndex( value )

  1. If value is undefined, then
    a. Let index be 0.
  2. Else,
    a. Let integerIndex be ? ToInteger(value).
    b. If integerIndex < 0, throw a RangeError exception.
    c. Let index be ! ToLength(integerIndex).
    d. If SameValueZero(integerIndex, index) is false, throw a RangeError exception.
  3. Return index.
features: [SharedArrayBuffer]
---*/

var obj1 = {
  valueOf: function() {
    return 3;
  }
};

var obj2 = {
  toString: function() {
    return 4;
  }
};

var sample;
var ab = new SharedArrayBuffer(42);

sample = new DataView(ab, 0, -0);
assert.sameValue(sample.byteLength, 0, "-0");

sample = new DataView(ab, 0, obj1);
assert.sameValue(sample.byteLength, 3, "object's valueOf");

sample = new DataView(ab, 0, obj2);
assert.sameValue(sample.byteLength, 4, "object's toString");

sample = new DataView(ab, 0, "");
assert.sameValue(sample.byteLength, 0, "the Empty string");

sample = new DataView(ab, 0, "0");
assert.sameValue(sample.byteLength, 0, "string '0'");

sample = new DataView(ab, 0, "1");
assert.sameValue(sample.byteLength, 1, "string '1'");

sample = new DataView(ab, 0, true);
assert.sameValue(sample.byteLength, 1, "true");

sample = new DataView(ab, 0, false);
assert.sameValue(sample.byteLength, 0, "false");

sample = new DataView(ab, 0, NaN);
assert.sameValue(sample.byteLength, 0, "NaN");

sample = new DataView(ab, 0, null);
assert.sameValue(sample.byteLength, 0, "null");

sample = new DataView(ab, 0, 0.1);
assert.sameValue(sample.byteLength, 0, "0.1");

sample = new DataView(ab, 0, 0.9);
assert.sameValue(sample.byteLength, 0, "0.9");

sample = new DataView(ab, 0, 1.1);
assert.sameValue(sample.byteLength, 1, "1.1");

sample = new DataView(ab, 0, 1.9);
assert.sameValue(sample.byteLength, 1, "1.9");

sample = new DataView(ab, 0, -0.1);
assert.sameValue(sample.byteLength, 0, "-0.1");

sample = new DataView(ab, 0, -0.99999);
assert.sameValue(sample.byteLength, 0, "-0.99999");

reportCompare(0, 0);