Rename QDeclarative symbols to QQuick and QQml
[profile/ivi/qtdeclarative.git] / tests / auto / qml / parserstress / 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 gTestfile = '15.8.2.9.js';
40
41 /**
42    File Name:          15.8.2.9.js
43    ECMA Section:       15.8.2.9  Math.floor(x)
44    Description:        return the greatest number value that is not greater
45    than the argument and is equal to a mathematical integer.
46    if the number is already an integer, return the number
47    itself.  special cases:
48    - if x is NaN       return NaN
49    - if x = +0         return +0
50    - if x = -0          return -0
51    - if x = Infinity   return Infinity
52    - if x = -Infinity  return -Infinity
53    - if ( -1 < x < 0 ) return -0
54    also:
55    -   the value of Math.floor(x) == -Math.ceil(-x)
56    Author:             christine@netscape.com
57    Date:               7 july 1997
58 */
59
60 var SECTION = "15.8.2.9";
61 var VERSION = "ECMA_1";
62 startTest();
63 var TITLE   = "Math.floor(x)";
64
65 writeHeaderToLog( SECTION + " "+ TITLE);
66
67 new TestCase( SECTION,
68               "Math.floor.length",
69               1,
70               Math.floor.length );
71
72 new TestCase( SECTION,
73               "Math.floor()",
74               Number.NaN,
75               Math.floor() );
76
77 new TestCase( SECTION,
78               "Math.floor(void 0)",
79               Number.NaN,
80               Math.floor(void 0) );
81
82 new TestCase( SECTION,
83               "Math.floor(null)",
84               0,
85               Math.floor(null) );
86
87 new TestCase( SECTION,
88               "Math.floor(true)",
89               1,
90               Math.floor(true) );
91
92 new TestCase( SECTION,
93               "Math.floor(false)",
94               0,
95               Math.floor(false) );
96
97 new TestCase( SECTION,
98               "Math.floor('1.1')",
99               1,
100               Math.floor("1.1") );
101
102 new TestCase( SECTION,
103               "Math.floor('-1.1')",
104               -2,
105               Math.floor("-1.1") );
106
107 new TestCase( SECTION,
108               "Math.floor('0.1')",
109               0,
110               Math.floor("0.1") );
111
112 new TestCase( SECTION,
113               "Math.floor('-0.1')",
114               -1,
115               Math.floor("-0.1") );
116
117 new TestCase( SECTION,
118               "Math.floor(NaN)",
119               Number.NaN,
120               Math.floor(Number.NaN)  );
121
122 new TestCase( SECTION,
123               "Math.floor(NaN)==-Math.ceil(-NaN)",
124               false,
125               Math.floor(Number.NaN) == -Math.ceil(-Number.NaN) );
126
127 new TestCase( SECTION,
128               "Math.floor(0)",
129               0,
130               Math.floor(0)           );
131
132 new TestCase( SECTION,
133               "Math.floor(0)==-Math.ceil(-0)",
134               true,
135               Math.floor(0) == -Math.ceil(-0) );
136
137 new TestCase( SECTION,
138               "Math.floor(-0)",
139               -0,
140               Math.floor(-0)          );
141
142 new TestCase( SECTION,
143               "Infinity/Math.floor(-0)",
144               -Infinity,
145               Infinity/Math.floor(-0)          );
146
147 new TestCase( SECTION,
148               "Math.floor(-0)==-Math.ceil(0)",
149               true,
150               Math.floor(-0)== -Math.ceil(0) );
151
152 new TestCase( SECTION,
153               "Math.floor(Infinity)",
154               Number.POSITIVE_INFINITY,
155               Math.floor(Number.POSITIVE_INFINITY) );
156
157 new TestCase( SECTION,
158               "Math.floor(Infinity)==-Math.ceil(-Infinity)",
159               true,
160               Math.floor(Number.POSITIVE_INFINITY) == -Math.ceil(Number.NEGATIVE_INFINITY) );
161
162 new TestCase( SECTION,
163               "Math.floor(-Infinity)",
164               Number.NEGATIVE_INFINITY,
165               Math.floor(Number.NEGATIVE_INFINITY) );
166
167 new TestCase( SECTION,
168               "Math.floor(-Infinity)==-Math.ceil(Infinity)",
169               true,
170               Math.floor(Number.NEGATIVE_INFINITY) == -Math.ceil(Number.POSITIVE_INFINITY) );
171
172 new TestCase( SECTION,
173               "Math.floor(0.0000001)",
174               0,
175               Math.floor(0.0000001) );
176
177 new TestCase( SECTION,
178               "Math.floor(0.0000001)==-Math.ceil(0.0000001)", true,
179               Math.floor(0.0000001)==-Math.ceil(-0.0000001) );
180
181 new TestCase( SECTION,
182               "Math.floor(-0.0000001)",
183               -1,
184               Math.floor(-0.0000001) );
185
186 new TestCase( SECTION,
187               "Math.floor(0.0000001)==-Math.ceil(0.0000001)",
188               true,
189               Math.floor(-0.0000001)==-Math.ceil(0.0000001) );
190
191 test();