Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / ecma / Math / 15.8.2.4.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.4.js
42    ECMA Section:       15.8.2.4 atan( x )
43    Description:        return an approximation to the arc tangent of the
44    argument.  the result is expressed in radians and
45    range is from -PI/2 to +PI/2.  special cases:
46    - if x is NaN,  the result is NaN
47    - if x == +0,   the result is +0
48    - if x == -0,   the result is -0
49    - if x == +Infinity,    the result is approximately +PI/2
50    - if x == -Infinity,    the result is approximately -PI/2
51    Author:             christine@netscape.com
52    Date:               7 july 1997
53
54 */
55
56 var SECTION = "15.8.2.4";
57 var VERSION = "ECMA_1";
58 var TITLE   = "Math.atan()";
59 var BUGNUMBER="77391";
60
61 startTest();
62
63 writeHeaderToLog( SECTION + " "+ TITLE);
64
65 new TestCase( SECTION,
66               "Math.atan.length",
67               1,
68               Math.atan.length );
69
70 new TestCase( SECTION,
71               "Math.atan()",
72               Number.NaN,
73               Math.atan() );
74
75 new TestCase( SECTION,
76               "Math.atan(void 0)",
77               Number.NaN,
78               Math.atan(void 0) );
79
80 new TestCase( SECTION,
81               "Math.atan(null)",
82               0,
83               Math.atan(null) );
84
85 new TestCase( SECTION,
86               "Math.atan(NaN)",
87               Number.NaN,
88               Math.atan(Number.NaN) );
89
90 new TestCase( SECTION,
91               "Math.atan('a string')",
92               Number.NaN,
93               Math.atan("a string") );
94
95 new TestCase( SECTION,
96               "Math.atan('0')",
97               0,
98               Math.atan('0') );
99
100 new TestCase( SECTION,
101               "Math.atan('1')",
102               Math.PI/4,
103               Math.atan('1') );
104
105 new TestCase( SECTION,
106               "Math.atan('-1')",
107               -Math.PI/4,
108               Math.atan('-1') );
109
110 new TestCase( SECTION,
111               "Math.atan('Infinity)",
112               Math.PI/2,
113               Math.atan('Infinity') );
114
115 new TestCase( SECTION,
116               "Math.atan('-Infinity)",
117               -Math.PI/2,
118               Math.atan('-Infinity') );
119
120 new TestCase( SECTION,
121               "Math.atan(0)",
122               0,
123               Math.atan(0)          );
124
125 new TestCase( SECTION,
126               "Math.atan(-0)",  
127               -0,
128               Math.atan(-0)         );
129
130 new TestCase( SECTION,
131               "Infinity/Math.atan(-0)",
132               -Infinity,
133               Infinity/Math.atan(-0) );
134
135 new TestCase( SECTION,
136               "Math.atan(Infinity)",
137               Math.PI/2,
138               Math.atan(Number.POSITIVE_INFINITY) );
139
140 new TestCase( SECTION,
141               "Math.atan(-Infinity)",
142               -Math.PI/2,
143               Math.atan(Number.NEGATIVE_INFINITY) );
144
145 new TestCase( SECTION,
146               "Math.atan(1)",
147               Math.PI/4,
148               Math.atan(1)          );
149
150 new TestCase( SECTION,
151               "Math.atan(-1)",
152               -Math.PI/4,
153               Math.atan(-1)         );
154
155 test();