Merge "fix: the incorrect version of tarball generated by gbs export" into tizen
[platform/upstream/js.git] / js / src / tests / ecma / Math / 15.8.2.9.js
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
4  *
5  * The contents of this file are subject to the Mozilla Public License Version
6  * 1.1 (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  * http://www.mozilla.org/MPL/
9  *
10  * Software distributed under the License is distributed on an "AS IS" basis,
11  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12  * for the specific language governing rights and limitations under the
13  * License.
14  *
15  * The Original Code is Mozilla Communicator client code, released
16  * March 31, 1998.
17  *
18  * The Initial Developer of the Original Code is
19  * Netscape Communications Corporation.
20  * Portions created by the Initial Developer are Copyright (C) 1998
21  * the Initial Developer. All Rights Reserved.
22  *
23  * Contributor(s):
24  *
25  * Alternatively, the contents of this file may be used under the terms of
26  * either the GNU General Public License Version 2 or later (the "GPL"), or
27  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28  * in which case the provisions of the GPL or the LGPL are applicable instead
29  * of those above. If you wish to allow use of your version of this file only
30  * under the terms of either the GPL or the LGPL, and not to allow others to
31  * use your version of this file under the terms of the MPL, indicate your
32  * decision by deleting the provisions above and replace them with the notice
33  * and other provisions required by the GPL or the LGPL. If you do not delete
34  * the provisions above, a recipient may use your version of this file under
35  * the terms of any one of the MPL, the GPL or the LGPL.
36  *
37  * ***** END LICENSE BLOCK ***** */
38
39
40 /**
41    File Name:          15.8.2.9.js
42    ECMA Section:       15.8.2.9  Math.floor(x)
43    Description:        return the greatest number value that is not greater
44    than the argument and is equal to a mathematical integer.
45    if the number is already an integer, return the number
46    itself.  special cases:
47    - if x is NaN       return NaN
48    - if x = +0         return +0
49    - if x = -0          return -0
50    - if x = Infinity   return Infinity
51    - if x = -Infinity  return -Infinity
52    - if ( -1 < x < 0 ) return -0
53    also:
54    -   the value of Math.floor(x) == -Math.ceil(-x)
55    Author:             christine@netscape.com
56    Date:               7 july 1997
57 */
58
59 var SECTION = "15.8.2.9";
60 var VERSION = "ECMA_1";
61 startTest();
62 var TITLE   = "Math.floor(x)";
63
64 writeHeaderToLog( SECTION + " "+ TITLE);
65
66 new TestCase( SECTION,
67               "Math.floor.length",
68               1,
69               Math.floor.length );
70
71 new TestCase( SECTION,
72               "Math.floor()",
73               Number.NaN,
74               Math.floor() );
75
76 new TestCase( SECTION,
77               "Math.floor(void 0)",
78               Number.NaN,
79               Math.floor(void 0) );
80
81 new TestCase( SECTION,
82               "Math.floor(null)",
83               0,
84               Math.floor(null) );
85
86 new TestCase( SECTION,
87               "Math.floor(true)",
88               1,
89               Math.floor(true) );
90
91 new TestCase( SECTION,
92               "Math.floor(false)",
93               0,
94               Math.floor(false) );
95
96 new TestCase( SECTION,
97               "Math.floor('1.1')",
98               1,
99               Math.floor("1.1") );
100
101 new TestCase( SECTION,
102               "Math.floor('-1.1')",
103               -2,
104               Math.floor("-1.1") );
105
106 new TestCase( SECTION,
107               "Math.floor('0.1')",
108               0,
109               Math.floor("0.1") );
110
111 new TestCase( SECTION,
112               "Math.floor('-0.1')",
113               -1,
114               Math.floor("-0.1") );
115
116 new TestCase( SECTION,
117               "Math.floor(NaN)",
118               Number.NaN,
119               Math.floor(Number.NaN)  );
120
121 new TestCase( SECTION,
122               "Math.floor(NaN)==-Math.ceil(-NaN)",
123               false,
124               Math.floor(Number.NaN) == -Math.ceil(-Number.NaN) );
125
126 new TestCase( SECTION,
127               "Math.floor(0)",
128               0,
129               Math.floor(0)           );
130
131 new TestCase( SECTION,
132               "Math.floor(0)==-Math.ceil(-0)",
133               true,
134               Math.floor(0) == -Math.ceil(-0) );
135
136 new TestCase( SECTION,
137               "Math.floor(-0)",
138               -0,
139               Math.floor(-0)          );
140
141 new TestCase( SECTION,
142               "Infinity/Math.floor(-0)",
143               -Infinity,
144               Infinity/Math.floor(-0)          );
145
146 new TestCase( SECTION,
147               "Math.floor(-0)==-Math.ceil(0)",
148               true,
149               Math.floor(-0)== -Math.ceil(0) );
150
151 new TestCase( SECTION,
152               "Math.floor(Infinity)",
153               Number.POSITIVE_INFINITY,
154               Math.floor(Number.POSITIVE_INFINITY) );
155
156 new TestCase( SECTION,
157               "Math.floor(Infinity)==-Math.ceil(-Infinity)",
158               true,
159               Math.floor(Number.POSITIVE_INFINITY) == -Math.ceil(Number.NEGATIVE_INFINITY) );
160
161 new TestCase( SECTION,
162               "Math.floor(-Infinity)",
163               Number.NEGATIVE_INFINITY,
164               Math.floor(Number.NEGATIVE_INFINITY) );
165
166 new TestCase( SECTION,
167               "Math.floor(-Infinity)==-Math.ceil(Infinity)",
168               true,
169               Math.floor(Number.NEGATIVE_INFINITY) == -Math.ceil(Number.POSITIVE_INFINITY) );
170
171 new TestCase( SECTION,
172               "Math.floor(0.0000001)",
173               0,
174               Math.floor(0.0000001) );
175
176 new TestCase( SECTION,
177               "Math.floor(0.0000001)==-Math.ceil(0.0000001)", true,
178               Math.floor(0.0000001)==-Math.ceil(-0.0000001) );
179
180 new TestCase( SECTION,
181               "Math.floor(-0.0000001)",
182               -1,
183               Math.floor(-0.0000001) );
184
185 new TestCase( SECTION,
186               "Math.floor(0.0000001)==-Math.ceil(0.0000001)",
187               true,
188               Math.floor(-0.0000001)==-Math.ceil(0.0000001) );
189
190 test();