aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/09_Type_Conversion/9.4_ToInteger/S9.4_A3_T2.js
blob: 7f482259bf67c4d9b13d5fb3046184f88e998775 (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
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/**
 * @name: S9.4_A3_T2;
 * @section: 9.4, 15.9;
 * @assertion: Result of ToInteger(value) conversion is the result of computing 
 * sign(ToNumber(value)) * floor(abs(ToNumber(value)));
 * @description: For testing constructor Date(NaN, Infinity, Infinity, +0 and -0) is used; 
*/


// Converted for Test262 from original Sputnik source

ES5Harness.registerTest( {
id: "S9.4_A3_T2",

path: "TestCases/09_Type_Conversion/9.4_ToInteger/S9.4_A3_T2.js",

assertion: "Result of ToInteger(value) conversion is the result of computing",

description: "For testing constructor Date(NaN, Infinity, Infinity, +0 and -0) is used",

test: function testcase() {
   // CHECK#1
var d1 = new Date(Number.NaN);
if (!isNaN(d1.valueOf())) {
  $ERROR('#1: var d1 = new Date(Number.NaN); d1.valueOf() === Number.NaN;');
}

// CHECK#2
var d2 = new Date(Infinity);
if (!isNaN(d2.valueOf())) {
  $ERROR('#2: var d2 = new Date(Infinity); d2.valueOf() === Number.NaN;');
}

// CHECK#3
var d3 = new Date(-Infinity);
if (!isNaN(d3.valueOf())) {
  $ERROR('#3: var d3 = new Date(-Infinity); d3.valueOf() === Number.NaN;');
}

// CHECK#4
var d4 = new Date(0);
if (d4.valueOf() !== 0) {
  $ERROR('#4: var d4 = new Date(0); d4.valueOf() === 0;');
}

// CHECK#5
var d5 = new Date(-0);
if (d5.valueOf() !== -0) {
  $ERROR('#5: var d5 = new Date(-0); d5.valueOf() === -0;');
}

 }
});