summaryrefslogtreecommitdiff
path: root/external/contributions/Google/sputnik_conformance_modified/15_Native/15.1_The_Global_Object/15.1.2_Function_Properties_of_the_Global_Object/15.1.2.5_isFinite/S15.1.2.5_A1_T1.js
blob: 660a44603d8cd5dfba371becd2ba3741647628bb (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
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/**
 * @name: S15.1.2.5_A1_T1;
 * @section: 15.1.2.5;
 * @assertion: isFinite applies ToNumber to its argument, then return false if the result is NaN, +Infinity, -Infinity, and otherwise return true;
 * @description: Checking all primitive;
*/

// CHECK#1
if (!(isFinite(NaN) === false)) {
  $ERROR('#1: NaN === Not-a-Finite. Actual: ' + (NaN)); 
}

// CHECK#2
if (!(isFinite(Number.NaN) === false)) {
  $ERROR('#2: Number.NaN === Not-a-Finite. Actual: ' + (Number.NaN)); 
}

// CHECK#3
if (!(isFinite(Number(void 0)) === false)) {
  $ERROR('#3: Number(void 0) === Not-a-Finite. Actual: ' + (Number(void 0))); 
}

// CHECK#4
if (!(isFinite(void 0) === false)) {
  $ERROR('#4: void 0 === Not-a-Finite. Actual: ' + (void 0)); 
}

// CHECK#5
if (!(isFinite("string") === false)) {
  $ERROR('#5: "string" === Not-a-Finite. Actual: ' + ("string")); 
}

// CHECK#6
if (isFinite(Number.POSITIVE_INFINITY) !== false) {
  $ERROR('#6: Number.POSITIVE_INFINITY === Not-a-Finite. Actual: ' + (Number.POSITIVE_INFINITY)); 
}

// CHECK#7
if (isFinite(Number.NEGATIVE_INFINITY) !== false) {
  $ERROR('#7: Number.NEGATIVE_INFINITY === Not-a-Finite. Actual: ' + (Number.NEGATIVE_INFINITY)); 
}

// CHECK#8
if (isFinite(Number.MAX_VALUE) === false) {
  $ERROR('#8: Number.MAX_VALUE !== Not-a-Finite'); 
}

// CHECK#9
if (isFinite(Number.MIN_VALUE) === false) {
  $ERROR('#9: Number.MIN_VALUE !== Not-a-Finite'); 
}

// CHECK#10
if (isFinite(-0) === false) {
  $ERROR('#10: -0 !== Not-a-Finite'); 
}

// CHECK#11
if (isFinite(false) === false) {
  $ERROR('#11: false !== Not-a-Finite'); 
}

// CHECK#12
if (isFinite("1") === false) {
  $ERROR('#12: "1" !== Not-a-Finite'); 
}