summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/DataView/prototype/setFloat16/toindex-byteoffset.js
blob: 2e637768deff63c90f9e99f6d388bab73e6ebce9 (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
// |reftest| shell-option(--enable-float16array) skip-if(!this.hasOwnProperty('Float16Array')||!xulRuntime.shell) -- Float16Array is not enabled unconditionally, requires shell-options
// Copyright (C) 2024 Kevin Gibbons. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-dataview.prototype.setfloat16
description: >
  ToIndex conversions on byteOffset
features: [Float16Array]
---*/

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

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

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

sample.setFloat16(0, 0);
sample.setFloat16(-0, 42);
assert.sameValue(sample.getFloat16(0), 42, "-0");

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

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

sample.setFloat16(0, 0);
sample.setFloat16("", 42);
assert.sameValue(sample.getFloat16(0), 42, "the Empty string");

sample.setFloat16(0, 0);
sample.setFloat16("0", 42);
assert.sameValue(sample.getFloat16(0), 42, "string '0'");

sample.setFloat16(2, 0);
sample.setFloat16("2", 42);
assert.sameValue(sample.getFloat16(2), 42, "string '2'");

sample.setFloat16(1, 0);
sample.setFloat16(true, 42);
assert.sameValue(sample.getFloat16(1), 42, "true");

sample.setFloat16(0, 0);
sample.setFloat16(false, 42);
assert.sameValue(sample.getFloat16(0), 42, "false");

sample.setFloat16(0, 0);
sample.setFloat16(NaN, 42);
assert.sameValue(sample.getFloat16(0), 42, "NaN");

sample.setFloat16(0, 0);
sample.setFloat16(null, 42);
assert.sameValue(sample.getFloat16(0), 42, "null");

sample.setFloat16(0, 0);
sample.setFloat16(0.1, 42);
assert.sameValue(sample.getFloat16(0), 42, "0.1");

sample.setFloat16(0, 0);
sample.setFloat16(0.9, 42);
assert.sameValue(sample.getFloat16(0), 42, "0.9");

sample.setFloat16(1, 0);
sample.setFloat16(1.1, 42);
assert.sameValue(sample.getFloat16(1), 42, "1.1");

sample.setFloat16(1, 0);
sample.setFloat16(1.9, 42);
assert.sameValue(sample.getFloat16(1), 42, "1.9");

sample.setFloat16(0, 0);
sample.setFloat16(-0.1, 42);
assert.sameValue(sample.getFloat16(0), 42, "-0.1");

sample.setFloat16(0, 0);
sample.setFloat16(-0.99999, 42);
assert.sameValue(sample.getFloat16(0), 42, "-0.99999");

sample.setFloat16(0, 0);
sample.setFloat16(undefined, 42);
assert.sameValue(sample.getFloat16(0), 42, "undefined");

sample.setFloat16(0, 7);
sample.setFloat16();
assert.sameValue(sample.getFloat16(0), NaN, "no arg");

reportCompare(0, 0);