Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / ecma / Math / 15.8.2.15.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.15.js
42    ECMA Section:       15.8.2.15  Math.round(x)
43    Description:        return the greatest number value that is closest to the
44    argument and is an integer.  if two integers are equally
45    close to the argument. then the result is the number value
46    that is closer to Infinity.  if the argument is an integer,
47    return the argument.
48    special cases:
49    - if x is NaN       return NaN
50    - if x = +0         return +0
51    - if x = -0          return -0
52    - if x = Infinity   return Infinity
53    - if x = -Infinity  return -Infinity
54    - if 0 < x < 0.5    return 0
55    - if -0.5 <= x < 0  return -0
56    example:
57    Math.round( 3.5 ) == 4
58    Math.round( -3.5 ) == 3
59    also:
60    - Math.round(x) == Math.floor( x + 0.5 )
61    except if x = -0.  in that case, Math.round(x) = -0
62
63    and Math.floor( x+0.5 ) = +0
64
65
66    Author:             christine@netscape.com
67    Date:               7 july 1997
68 */
69
70 var SECTION = "15.8.2.15";
71 var VERSION = "ECMA_1";
72 var TITLE   = "Math.round(x)";
73 var BUGNUMBER="331411";
74
75 var EXCLUDE = "true";
76
77 startTest();
78
79 writeHeaderToLog( SECTION + " "+ TITLE);
80
81 new TestCase( SECTION,
82               "Math.round.length",
83               1,
84               Math.round.length );
85
86 new TestCase( SECTION,
87               "Math.round()",
88               Number.NaN,
89               Math.round() );
90
91 new TestCase( SECTION,
92               "Math.round(null)",
93               0,
94               Math.round(0) );
95
96 new TestCase( SECTION,
97               "Math.round(void 0)",
98               Number.NaN,
99               Math.round(void 0) );
100
101 new TestCase( SECTION,
102               "Math.round(true)",
103               1,
104               Math.round(true) );
105
106 new TestCase( SECTION,
107               "Math.round(false)",
108               0,
109               Math.round(false) );
110
111 new TestCase( SECTION,
112               "Math.round('.99999')",
113               1,
114               Math.round('.99999') );
115
116 new TestCase( SECTION,
117               "Math.round('12345e-2')",
118               123,
119               Math.round('12345e-2') );
120
121 new TestCase( SECTION,
122               "Math.round(NaN)",
123               Number.NaN,
124               Math.round(Number.NaN) );
125
126 new TestCase( SECTION,
127               "Math.round(0)",
128               0,
129               Math.round(0) );
130
131 new TestCase( SECTION,
132               "Math.round(-0)",
133               -0,
134               Math.round(-0));
135
136 new TestCase( SECTION,
137               "Infinity/Math.round(-0)",
138               -Infinity,
139               Infinity/Math.round(-0) );
140
141 new TestCase( SECTION,
142               "Math.round(Infinity)",
143               Number.POSITIVE_INFINITY,
144               Math.round(Number.POSITIVE_INFINITY));
145
146 new TestCase( SECTION,
147               "Math.round(-Infinity)",
148               Number.NEGATIVE_INFINITY,
149               Math.round(Number.NEGATIVE_INFINITY));
150
151 new TestCase( SECTION,
152               "Math.round(0.49)",
153               0,
154               Math.round(0.49));
155
156 new TestCase( SECTION,
157               "Math.round(0.5)",
158               1,
159               Math.round(0.5));
160
161 new TestCase( SECTION,
162               "Math.round(0.51)",
163               1,
164               Math.round(0.51));
165
166 new TestCase( SECTION,
167               "Math.round(-0.49)",
168               -0,
169               Math.round(-0.49));
170
171 new TestCase( SECTION,
172               "Math.round(-0.5)",
173               -0,
174               Math.round(-0.5));
175
176 new TestCase( SECTION,
177               "Infinity/Math.round(-0.49)",
178               -Infinity,
179               Infinity/Math.round(-0.49));
180
181 new TestCase( SECTION,
182               "Infinity/Math.round(-0.5)",
183               -Infinity,
184               Infinity/Math.round(-0.5));
185
186 new TestCase( SECTION,
187               "Math.round(-0.51)",
188               -1,
189               Math.round(-0.51));
190
191 new TestCase( SECTION,
192               "Math.round(3.5)",
193               4,
194               Math.round(3.5));
195
196 new TestCase( SECTION,
197               "Math.round(-3.5)",
198               -3,
199               Math.round(-3));
200
201 test();