summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/DataView/prototype/setFloat64/toindex-byteoffset.js
blob: 8e283a06623e767dfe7780f9c810f1741e3cbcf2 (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
99
100
101
102
103
104
105
106
107
108
109
110
// 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-dataview.prototype.setfloat64
description: >
  ToIndex conversions on byteOffset
info: |
  24.2.4.14 DataView.prototype.setFloat64 ( byteOffset, value [ , littleEndian ] )

  1. Let v be the this value.
  2. If littleEndian is not present, let littleEndian be false.
  3. Return ? SetViewValue(v, byteOffset, littleEndian, "Float64", value).

  24.2.1.2 SetViewValue ( view, requestIndex, isLittleEndian, type, value )

  ...
  4. Let getIndex be ? ToIndex(requestIndex).
  ...
features: [DataView.prototype.getFloat64]
---*/

var buffer = new ArrayBuffer(12);
var sample = new DataView(buffer, 0);

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

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

sample.setFloat64(0, 0);
sample.setFloat64(-0, 42);
assert.sameValue(sample.getFloat64(0), 42, "-0");

sample.setFloat64(3, 0);
sample.setFloat64(obj1, 42);
assert.sameValue(sample.getFloat64(3), 42, "object's valueOf");

sample.setFloat64(4, 0);
sample.setFloat64(obj2, 42);
assert.sameValue(sample.getFloat64(4), 42, "object's toString");

sample.setFloat64(0, 0);
sample.setFloat64("", 42);
assert.sameValue(sample.getFloat64(0), 42, "the Empty string");

sample.setFloat64(0, 0);
sample.setFloat64("0", 42);
assert.sameValue(sample.getFloat64(0), 42, "string '0'");

sample.setFloat64(2, 0);
sample.setFloat64("2", 42);
assert.sameValue(sample.getFloat64(2), 42, "string '2'");

sample.setFloat64(1, 0);
sample.setFloat64(true, 42);
assert.sameValue(sample.getFloat64(1), 42, "true");

sample.setFloat64(0, 0);
sample.setFloat64(false, 42);
assert.sameValue(sample.getFloat64(0), 42, "false");

sample.setFloat64(0, 0);
sample.setFloat64(NaN, 42);
assert.sameValue(sample.getFloat64(0), 42, "NaN");

sample.setFloat64(0, 0);
sample.setFloat64(null, 42);
assert.sameValue(sample.getFloat64(0), 42, "null");

sample.setFloat64(0, 0);
sample.setFloat64(0.1, 42);
assert.sameValue(sample.getFloat64(0), 42, "0.1");

sample.setFloat64(0, 0);
sample.setFloat64(0.9, 42);
assert.sameValue(sample.getFloat64(0), 42, "0.9");

sample.setFloat64(1, 0);
sample.setFloat64(1.1, 42);
assert.sameValue(sample.getFloat64(1), 42, "1.1");

sample.setFloat64(1, 0);
sample.setFloat64(1.9, 42);
assert.sameValue(sample.getFloat64(1), 42, "1.9");

sample.setFloat64(0, 0);
sample.setFloat64(-0.1, 42);
assert.sameValue(sample.getFloat64(0), 42, "-0.1");

sample.setFloat64(0, 0);
sample.setFloat64(-0.99999, 42);
assert.sameValue(sample.getFloat64(0), 42, "-0.99999");

sample.setFloat64(0, 0);
sample.setFloat64(undefined, 42);
assert.sameValue(sample.getFloat64(0), 42, "undefined");

sample.setFloat64(0, 7);
sample.setFloat64();
assert.sameValue(sample.getFloat64(0), NaN, "no arg");

reportCompare(0, 0);