blob: 401fc1efc81245e17ef0a4b66bccba6185bcbe78 [file] [log] [blame]
Guido van Rossumfcce6301996-08-08 18:26:25 +00001# Python test set -- math module
2# XXXX Should not do tests around zero only
3
Thomas Wouters89f507f2006-12-13 04:49:30 +00004from test.test_support import run_unittest, verbose
5import unittest
6import math
Christian Heimes53876d92008-04-19 00:31:39 +00007import os
8import sys
Guido van Rossumfcce6301996-08-08 18:26:25 +00009
Christian Heimes53876d92008-04-19 00:31:39 +000010eps = 1E-05
11NAN = float('nan')
12INF = float('inf')
13NINF = float('-inf')
14
15# locate file with test values
16if __name__ == '__main__':
17 file = sys.argv[0]
18else:
19 file = __file__
20test_dir = os.path.dirname(file) or os.curdir
21test_file = os.path.join(test_dir, 'cmath_testcases.txt')
22
23def parse_testfile(fname):
24 """Parse a file with test values
25
26 Empty lines or lines starting with -- are ignored
27 yields id, fn, arg_real, arg_imag, exp_real, exp_imag
28 """
29 with open(fname) as fp:
30 for line in fp:
31 # skip comment lines and blank lines
32 if line.startswith('--') or not line.strip():
33 continue
34
35 lhs, rhs = line.split('->')
36 id, fn, arg_real, arg_imag = lhs.split()
37 rhs_pieces = rhs.split()
38 exp_real, exp_imag = rhs_pieces[0], rhs_pieces[1]
39 flags = rhs_pieces[2:]
40
41 yield (id, fn,
42 float(arg_real), float(arg_imag),
43 float(exp_real), float(exp_imag),
44 flags
45 )
Guido van Rossumfcce6301996-08-08 18:26:25 +000046
Thomas Wouters89f507f2006-12-13 04:49:30 +000047class MathTests(unittest.TestCase):
Guido van Rossumfcce6301996-08-08 18:26:25 +000048
Thomas Wouters89f507f2006-12-13 04:49:30 +000049 def ftest(self, name, value, expected):
50 if abs(value-expected) > eps:
Guido van Rossum806c2462007-08-06 23:33:07 +000051 # Use %r instead of %f so the error message
52 # displays full precision. Otherwise discrepancies
53 # in the last few bits will lead to very confusing
54 # error messages
55 self.fail('%s returned %r, expected %r' %
Thomas Wouters89f507f2006-12-13 04:49:30 +000056 (name, value, expected))
Guido van Rossumfcce6301996-08-08 18:26:25 +000057
Thomas Wouters89f507f2006-12-13 04:49:30 +000058 def testConstants(self):
59 self.ftest('pi', math.pi, 3.1415926)
60 self.ftest('e', math.e, 2.7182818)
Guido van Rossumfcce6301996-08-08 18:26:25 +000061
Thomas Wouters89f507f2006-12-13 04:49:30 +000062 def testAcos(self):
63 self.assertRaises(TypeError, math.acos)
64 self.ftest('acos(-1)', math.acos(-1), math.pi)
65 self.ftest('acos(0)', math.acos(0), math.pi/2)
66 self.ftest('acos(1)', math.acos(1), 0)
Christian Heimes53876d92008-04-19 00:31:39 +000067 self.assertRaises(ValueError, math.acos, INF)
68 self.assertRaises(ValueError, math.acos, NINF)
69 self.assert_(math.isnan(math.acos(NAN)))
70
71 def testAcosh(self):
72 self.assertRaises(TypeError, math.acosh)
73 self.ftest('acosh(1)', math.acosh(1), 0)
74 self.ftest('acosh(2)', math.acosh(2), 1.3169578969248168)
75 self.assertRaises(ValueError, math.acosh, 0)
76 self.assertRaises(ValueError, math.acosh, -1)
77 self.assertEquals(math.acosh(INF), INF)
78 self.assertRaises(ValueError, math.acosh, NINF)
79 self.assert_(math.isnan(math.acosh(NAN)))
Guido van Rossumfcce6301996-08-08 18:26:25 +000080
Thomas Wouters89f507f2006-12-13 04:49:30 +000081 def testAsin(self):
82 self.assertRaises(TypeError, math.asin)
83 self.ftest('asin(-1)', math.asin(-1), -math.pi/2)
84 self.ftest('asin(0)', math.asin(0), 0)
85 self.ftest('asin(1)', math.asin(1), math.pi/2)
Christian Heimes53876d92008-04-19 00:31:39 +000086 self.assertRaises(ValueError, math.asin, INF)
87 self.assertRaises(ValueError, math.asin, NINF)
88 self.assert_(math.isnan(math.asin(NAN)))
89
90 def testAsinh(self):
91 self.assertRaises(TypeError, math.asinh)
92 self.ftest('asinh(0)', math.asinh(0), 0)
93 self.ftest('asinh(1)', math.asinh(1), 0.88137358701954305)
94 self.ftest('asinh(-1)', math.asinh(-1), -0.88137358701954305)
95 self.assertEquals(math.asinh(INF), INF)
96 self.assertEquals(math.asinh(NINF), NINF)
97 self.assert_(math.isnan(math.asinh(NAN)))
Guido van Rossumfcce6301996-08-08 18:26:25 +000098
Thomas Wouters89f507f2006-12-13 04:49:30 +000099 def testAtan(self):
100 self.assertRaises(TypeError, math.atan)
101 self.ftest('atan(-1)', math.atan(-1), -math.pi/4)
102 self.ftest('atan(0)', math.atan(0), 0)
103 self.ftest('atan(1)', math.atan(1), math.pi/4)
Christian Heimes53876d92008-04-19 00:31:39 +0000104 self.ftest('atan(inf)', math.atan(INF), math.pi/2)
Christian Heimesa342c012008-04-20 21:01:16 +0000105 self.ftest('atan(-inf)', math.atan(NINF), -math.pi/2)
Christian Heimes53876d92008-04-19 00:31:39 +0000106 self.assert_(math.isnan(math.atan(NAN)))
107
108 def testAtanh(self):
109 self.assertRaises(TypeError, math.atan)
110 self.ftest('atanh(0)', math.atanh(0), 0)
111 self.ftest('atanh(0.5)', math.atanh(0.5), 0.54930614433405489)
112 self.ftest('atanh(-0.5)', math.atanh(-0.5), -0.54930614433405489)
113 self.assertRaises(ValueError, math.atanh, 1)
114 self.assertRaises(ValueError, math.atanh, -1)
115 self.assertRaises(ValueError, math.atanh, INF)
116 self.assertRaises(ValueError, math.atanh, NINF)
117 self.assert_(math.isnan(math.atanh(NAN)))
Guido van Rossumfcce6301996-08-08 18:26:25 +0000118
Thomas Wouters89f507f2006-12-13 04:49:30 +0000119 def testAtan2(self):
120 self.assertRaises(TypeError, math.atan2)
121 self.ftest('atan2(-1, 0)', math.atan2(-1, 0), -math.pi/2)
122 self.ftest('atan2(-1, 1)', math.atan2(-1, 1), -math.pi/4)
123 self.ftest('atan2(0, 1)', math.atan2(0, 1), 0)
124 self.ftest('atan2(1, 1)', math.atan2(1, 1), math.pi/4)
125 self.ftest('atan2(1, 0)', math.atan2(1, 0), math.pi/2)
Guido van Rossumfcce6301996-08-08 18:26:25 +0000126
Thomas Wouters89f507f2006-12-13 04:49:30 +0000127 def testCeil(self):
128 self.assertRaises(TypeError, math.ceil)
Jeffrey Yasskinc2155832008-01-05 20:03:11 +0000129 self.assertEquals(int, type(math.ceil(0.5)))
Thomas Wouters89f507f2006-12-13 04:49:30 +0000130 self.ftest('ceil(0.5)', math.ceil(0.5), 1)
131 self.ftest('ceil(1.0)', math.ceil(1.0), 1)
132 self.ftest('ceil(1.5)', math.ceil(1.5), 2)
133 self.ftest('ceil(-0.5)', math.ceil(-0.5), 0)
134 self.ftest('ceil(-1.0)', math.ceil(-1.0), -1)
135 self.ftest('ceil(-1.5)', math.ceil(-1.5), -1)
Christian Heimes53876d92008-04-19 00:31:39 +0000136 #self.assertEquals(math.ceil(INF), INF)
137 #self.assertEquals(math.ceil(NINF), NINF)
138 #self.assert_(math.isnan(math.ceil(NAN)))
Guido van Rossumfcce6301996-08-08 18:26:25 +0000139
Guido van Rossum13e05de2007-08-23 22:56:55 +0000140 class TestCeil:
141 def __ceil__(self):
142 return 42
143 class TestNoCeil:
144 pass
145 self.ftest('ceil(TestCeil())', math.ceil(TestCeil()), 42)
146 self.assertRaises(TypeError, math.ceil, TestNoCeil())
147
148 t = TestNoCeil()
149 t.__ceil__ = lambda *args: args
150 self.assertRaises(TypeError, math.ceil, t)
151 self.assertRaises(TypeError, math.ceil, t, 0)
152
Christian Heimes53876d92008-04-19 00:31:39 +0000153 if float.__getformat__("double").startswith("IEEE"):
154 def testCopysign(self):
155 self.assertRaises(TypeError, math.copysign)
156 # copysign should let us distinguish signs of zeros
157 self.assertEquals(copysign(1., 0.), 1.)
158 self.assertEquals(copysign(1., -0.), -1.)
159 self.assertEquals(copysign(INF, 0.), INF)
160 self.assertEquals(copysign(INF, -0.), NINF)
161 self.assertEquals(copysign(NINF, 0.), INF)
162 self.assertEquals(copysign(NINF, -0.), NINF)
163 # and of infinities
164 self.assertEquals(copysign(1., INF), 1.)
165 self.assertEquals(copysign(1., NINF), -1.)
166 self.assertEquals(copysign(INF, INF), INF)
167 self.assertEquals(copysign(INF, NINF), NINF)
168 self.assertEquals(copysign(NINF, INF), INF)
169 self.assertEquals(copysign(NINF, NINF), NINF)
170 self.assert_(math.isnan(copysign(NAN, 1.)))
171 self.assert_(math.isnan(copysign(NAN, INF)))
172 self.assert_(math.isnan(copysign(NAN, NINF)))
173 self.assert_(math.isnan(copysign(NAN, NAN)))
174 # copysign(INF, NAN) may be INF or it may be NINF, since
175 # we don't know whether the sign bit of NAN is set on any
176 # given platform.
177 self.assert_(math.isinf(copysign(INF, NAN)))
178 # similarly, copysign(2., NAN) could be 2. or -2.
179 self.assertEquals(abs(copysign(2., NAN)), 2.)
180
Thomas Wouters89f507f2006-12-13 04:49:30 +0000181 def testCos(self):
182 self.assertRaises(TypeError, math.cos)
183 self.ftest('cos(-pi/2)', math.cos(-math.pi/2), 0)
184 self.ftest('cos(0)', math.cos(0), 1)
185 self.ftest('cos(pi/2)', math.cos(math.pi/2), 0)
186 self.ftest('cos(pi)', math.cos(math.pi), -1)
Christian Heimes53876d92008-04-19 00:31:39 +0000187 try:
188 self.assert_(math.isnan(math.cos(INF)))
189 self.assert_(math.isnan(math.cos(NINF)))
190 except ValueError:
191 self.assertRaises(ValueError, math.cos, INF)
192 self.assertRaises(ValueError, math.cos, NINF)
193 self.assert_(math.isnan(math.cos(NAN)))
Guido van Rossumfcce6301996-08-08 18:26:25 +0000194
Thomas Wouters89f507f2006-12-13 04:49:30 +0000195 def testCosh(self):
196 self.assertRaises(TypeError, math.cosh)
197 self.ftest('cosh(0)', math.cosh(0), 1)
198 self.ftest('cosh(2)-2*cosh(1)**2', math.cosh(2)-2*math.cosh(1)**2, -1) # Thanks to Lambert
Christian Heimes53876d92008-04-19 00:31:39 +0000199 self.assertEquals(math.cosh(INF), INF)
200 self.assertEquals(math.cosh(NINF), INF)
201 self.assert_(math.isnan(math.cosh(NAN)))
Raymond Hettinger64108af2002-05-13 03:55:01 +0000202
Thomas Wouters89f507f2006-12-13 04:49:30 +0000203 def testDegrees(self):
204 self.assertRaises(TypeError, math.degrees)
205 self.ftest('degrees(pi)', math.degrees(math.pi), 180.0)
206 self.ftest('degrees(pi/2)', math.degrees(math.pi/2), 90.0)
207 self.ftest('degrees(-pi/4)', math.degrees(-math.pi/4), -45.0)
Guido van Rossumfcce6301996-08-08 18:26:25 +0000208
Thomas Wouters89f507f2006-12-13 04:49:30 +0000209 def testExp(self):
210 self.assertRaises(TypeError, math.exp)
211 self.ftest('exp(-1)', math.exp(-1), 1/math.e)
212 self.ftest('exp(0)', math.exp(0), 1)
213 self.ftest('exp(1)', math.exp(1), math.e)
Christian Heimes53876d92008-04-19 00:31:39 +0000214 self.assertEquals(math.exp(INF), INF)
215 self.assertEquals(math.exp(NINF), 0.)
216 self.assert_(math.isnan(math.exp(NAN)))
Guido van Rossumfcce6301996-08-08 18:26:25 +0000217
Thomas Wouters89f507f2006-12-13 04:49:30 +0000218 def testFabs(self):
219 self.assertRaises(TypeError, math.fabs)
220 self.ftest('fabs(-1)', math.fabs(-1), 1)
221 self.ftest('fabs(0)', math.fabs(0), 0)
222 self.ftest('fabs(1)', math.fabs(1), 1)
Guido van Rossumfcce6301996-08-08 18:26:25 +0000223
Thomas Wouters89f507f2006-12-13 04:49:30 +0000224 def testFloor(self):
225 self.assertRaises(TypeError, math.floor)
Jeffrey Yasskinc2155832008-01-05 20:03:11 +0000226 self.assertEquals(int, type(math.floor(0.5)))
Thomas Wouters89f507f2006-12-13 04:49:30 +0000227 self.ftest('floor(0.5)', math.floor(0.5), 0)
228 self.ftest('floor(1.0)', math.floor(1.0), 1)
229 self.ftest('floor(1.5)', math.floor(1.5), 1)
230 self.ftest('floor(-0.5)', math.floor(-0.5), -1)
231 self.ftest('floor(-1.0)', math.floor(-1.0), -1)
232 self.ftest('floor(-1.5)', math.floor(-1.5), -2)
Guido van Rossum806c2462007-08-06 23:33:07 +0000233 # pow() relies on floor() to check for integers
234 # This fails on some platforms - so check it here
235 self.ftest('floor(1.23e167)', math.floor(1.23e167), 1.23e167)
236 self.ftest('floor(-1.23e167)', math.floor(-1.23e167), -1.23e167)
Christian Heimes53876d92008-04-19 00:31:39 +0000237 #self.assertEquals(math.ceil(INF), INF)
238 #self.assertEquals(math.ceil(NINF), NINF)
239 #self.assert_(math.isnan(math.floor(NAN)))
Guido van Rossumfcce6301996-08-08 18:26:25 +0000240
Guido van Rossum13e05de2007-08-23 22:56:55 +0000241 class TestFloor:
242 def __floor__(self):
243 return 42
244 class TestNoFloor:
245 pass
246 self.ftest('floor(TestFloor())', math.floor(TestFloor()), 42)
247 self.assertRaises(TypeError, math.floor, TestNoFloor())
248
249 t = TestNoFloor()
250 t.__floor__ = lambda *args: args
251 self.assertRaises(TypeError, math.floor, t)
252 self.assertRaises(TypeError, math.floor, t, 0)
253
Thomas Wouters89f507f2006-12-13 04:49:30 +0000254 def testFmod(self):
255 self.assertRaises(TypeError, math.fmod)
256 self.ftest('fmod(10,1)', math.fmod(10,1), 0)
257 self.ftest('fmod(10,0.5)', math.fmod(10,0.5), 0)
258 self.ftest('fmod(10,1.5)', math.fmod(10,1.5), 1)
259 self.ftest('fmod(-10,1)', math.fmod(-10,1), 0)
260 self.ftest('fmod(-10,0.5)', math.fmod(-10,0.5), 0)
261 self.ftest('fmod(-10,1.5)', math.fmod(-10,1.5), -1)
Christian Heimes53876d92008-04-19 00:31:39 +0000262 self.assert_(math.isnan(math.fmod(NAN, 1.)))
263 self.assert_(math.isnan(math.fmod(1., NAN)))
264 self.assert_(math.isnan(math.fmod(NAN, NAN)))
265 self.assertRaises(ValueError, math.fmod, 1., 0.)
266 self.assertRaises(ValueError, math.fmod, INF, 1.)
267 self.assertRaises(ValueError, math.fmod, NINF, 1.)
268 self.assertRaises(ValueError, math.fmod, INF, 0.)
269 self.assertEquals(math.fmod(3.0, INF), 3.0)
270 self.assertEquals(math.fmod(-3.0, INF), -3.0)
271 self.assertEquals(math.fmod(3.0, NINF), 3.0)
272 self.assertEquals(math.fmod(-3.0, NINF), -3.0)
273 self.assertEquals(math.fmod(0.0, 3.0), 0.0)
274 self.assertEquals(math.fmod(0.0, NINF), 0.0)
Guido van Rossumfcce6301996-08-08 18:26:25 +0000275
Thomas Wouters89f507f2006-12-13 04:49:30 +0000276 def testFrexp(self):
277 self.assertRaises(TypeError, math.frexp)
Guido van Rossumfcce6301996-08-08 18:26:25 +0000278
Guido van Rossum1bc535d2007-05-15 18:46:22 +0000279 def testfrexp(name, result, expected):
280 (mant, exp), (emant, eexp) = result, expected
Thomas Wouters89f507f2006-12-13 04:49:30 +0000281 if abs(mant-emant) > eps or exp != eexp:
282 self.fail('%s returned %r, expected %r'%\
Guido van Rossum1bc535d2007-05-15 18:46:22 +0000283 (name, result, expected))
Guido van Rossumfcce6301996-08-08 18:26:25 +0000284
Thomas Wouters89f507f2006-12-13 04:49:30 +0000285 testfrexp('frexp(-1)', math.frexp(-1), (-0.5, 1))
286 testfrexp('frexp(0)', math.frexp(0), (0, 0))
287 testfrexp('frexp(1)', math.frexp(1), (0.5, 1))
288 testfrexp('frexp(2)', math.frexp(2), (0.5, 2))
Guido van Rossumfcce6301996-08-08 18:26:25 +0000289
Christian Heimes53876d92008-04-19 00:31:39 +0000290 self.assertEquals(math.frexp(INF)[0], INF)
291 self.assertEquals(math.frexp(NINF)[0], NINF)
292 self.assert_(math.isnan(math.frexp(NAN)[0]))
293
Thomas Wouters89f507f2006-12-13 04:49:30 +0000294 def testHypot(self):
295 self.assertRaises(TypeError, math.hypot)
296 self.ftest('hypot(0,0)', math.hypot(0,0), 0)
297 self.ftest('hypot(3,4)', math.hypot(3,4), 5)
Christian Heimes53876d92008-04-19 00:31:39 +0000298 self.assertEqual(math.hypot(NAN, INF), INF)
299 self.assertEqual(math.hypot(INF, NAN), INF)
300 self.assertEqual(math.hypot(NAN, NINF), INF)
301 self.assertEqual(math.hypot(NINF, NAN), INF)
302 self.assert_(math.isnan(math.hypot(1.0, NAN)))
303 self.assert_(math.isnan(math.hypot(NAN, -2.0)))
Guido van Rossumfcce6301996-08-08 18:26:25 +0000304
Thomas Wouters89f507f2006-12-13 04:49:30 +0000305 def testLdexp(self):
306 self.assertRaises(TypeError, math.ldexp)
307 self.ftest('ldexp(0,1)', math.ldexp(0,1), 0)
308 self.ftest('ldexp(1,1)', math.ldexp(1,1), 2)
309 self.ftest('ldexp(1,-1)', math.ldexp(1,-1), 0.5)
310 self.ftest('ldexp(-1,1)', math.ldexp(-1,1), -2)
Christian Heimes53876d92008-04-19 00:31:39 +0000311 self.assertRaises(OverflowError, math.ldexp, 1., 1000000)
312 self.assertRaises(OverflowError, math.ldexp, -1., 1000000)
313 self.assertEquals(math.ldexp(1., -1000000), 0.)
314 self.assertEquals(math.ldexp(-1., -1000000), -0.)
315 self.assertEquals(math.ldexp(INF, 30), INF)
316 self.assertEquals(math.ldexp(NINF, -213), NINF)
317 self.assert_(math.isnan(math.ldexp(NAN, 0)))
Guido van Rossumfcce6301996-08-08 18:26:25 +0000318
Thomas Wouters89f507f2006-12-13 04:49:30 +0000319 def testLog(self):
320 self.assertRaises(TypeError, math.log)
321 self.ftest('log(1/e)', math.log(1/math.e), -1)
322 self.ftest('log(1)', math.log(1), 0)
323 self.ftest('log(e)', math.log(math.e), 1)
324 self.ftest('log(32,2)', math.log(32,2), 5)
325 self.ftest('log(10**40, 10)', math.log(10**40, 10), 40)
326 self.ftest('log(10**40, 10**20)', math.log(10**40, 10**20), 2)
Christian Heimes53876d92008-04-19 00:31:39 +0000327 self.assertEquals(math.log(INF), INF)
328 self.assertRaises(ValueError, math.log, NINF)
329 self.assert_(math.isnan(math.log(NAN)))
330
331 def testLog1p(self):
332 self.assertRaises(TypeError, math.log1p)
333 self.ftest('log1p(1/e -1)', math.log1p(1/math.e-1), -1)
334 self.ftest('log1p(0)', math.log1p(0), 0)
335 self.ftest('log1p(e-1)', math.log1p(math.e-1), 1)
336 self.ftest('log1p(1)', math.log1p(1), math.log(2))
337 self.assertEquals(math.log1p(INF), INF)
338 self.assertRaises(ValueError, math.log1p, NINF)
339 self.assert_(math.isnan(math.log1p(NAN)))
340 n= 2**90
341 self.assertAlmostEquals(math.log1p(n), 62.383246250395075)
342 self.assertAlmostEquals(math.log1p(n), math.log1p(float(n)))
Guido van Rossumfcce6301996-08-08 18:26:25 +0000343
Thomas Wouters89f507f2006-12-13 04:49:30 +0000344 def testLog10(self):
345 self.assertRaises(TypeError, math.log10)
346 self.ftest('log10(0.1)', math.log10(0.1), -1)
347 self.ftest('log10(1)', math.log10(1), 0)
348 self.ftest('log10(10)', math.log10(10), 1)
Christian Heimes53876d92008-04-19 00:31:39 +0000349 self.assertEquals(math.log(INF), INF)
350 self.assertRaises(ValueError, math.log10, NINF)
351 self.assert_(math.isnan(math.log10(NAN)))
Guido van Rossumfcce6301996-08-08 18:26:25 +0000352
Thomas Wouters89f507f2006-12-13 04:49:30 +0000353 def testModf(self):
354 self.assertRaises(TypeError, math.modf)
Guido van Rossumfcce6301996-08-08 18:26:25 +0000355
Guido van Rossum1bc535d2007-05-15 18:46:22 +0000356 def testmodf(name, result, expected):
357 (v1, v2), (e1, e2) = result, expected
Thomas Wouters89f507f2006-12-13 04:49:30 +0000358 if abs(v1-e1) > eps or abs(v2-e2):
359 self.fail('%s returned %r, expected %r'%\
Guido van Rossum1bc535d2007-05-15 18:46:22 +0000360 (name, result, expected))
Raymond Hettinger64108af2002-05-13 03:55:01 +0000361
Thomas Wouters89f507f2006-12-13 04:49:30 +0000362 testmodf('modf(1.5)', math.modf(1.5), (0.5, 1.0))
363 testmodf('modf(-1.5)', math.modf(-1.5), (-0.5, -1.0))
Guido van Rossumfcce6301996-08-08 18:26:25 +0000364
Christian Heimes53876d92008-04-19 00:31:39 +0000365 self.assertEquals(math.modf(INF), (0.0, INF))
366 self.assertEquals(math.modf(NINF), (-0.0, NINF))
367
368 modf_nan = math.modf(NAN)
369 self.assert_(math.isnan(modf_nan[0]))
370 self.assert_(math.isnan(modf_nan[1]))
371
Thomas Wouters89f507f2006-12-13 04:49:30 +0000372 def testPow(self):
373 self.assertRaises(TypeError, math.pow)
374 self.ftest('pow(0,1)', math.pow(0,1), 0)
375 self.ftest('pow(1,0)', math.pow(1,0), 1)
376 self.ftest('pow(2,1)', math.pow(2,1), 2)
377 self.ftest('pow(2,-1)', math.pow(2,-1), 0.5)
Christian Heimes53876d92008-04-19 00:31:39 +0000378 self.assertEqual(math.pow(INF, 1), INF)
379 self.assertEqual(math.pow(NINF, 1), NINF)
380 self.assertEqual((math.pow(1, INF)), 1.)
381 self.assertEqual((math.pow(1, NINF)), 1.)
382 self.assert_(math.isnan(math.pow(NAN, 1)))
383 self.assert_(math.isnan(math.pow(2, NAN)))
384 self.assert_(math.isnan(math.pow(0, NAN)))
385 self.assertEqual(math.pow(1, NAN), 1)
Christian Heimesa342c012008-04-20 21:01:16 +0000386
387 # pow(0., x)
388 self.assertEqual(math.pow(0., INF), 0.)
389 self.assertEqual(math.pow(0., 3.), 0.)
390 self.assertEqual(math.pow(0., 2.3), 0.)
391 self.assertEqual(math.pow(0., 2.), 0.)
392 self.assertEqual(math.pow(0., 0.), 1.)
393 self.assertEqual(math.pow(0., -0.), 1.)
394 self.assertRaises(ValueError, math.pow, 0., -2.)
395 self.assertRaises(ValueError, math.pow, 0., -2.3)
396 self.assertRaises(ValueError, math.pow, 0., -3.)
397 self.assertRaises(ValueError, math.pow, 0., NINF)
398 self.assert_(math.isnan(math.pow(0., NAN)))
399
400 # pow(INF, x)
401 self.assertEqual(math.pow(INF, INF), INF)
402 self.assertEqual(math.pow(INF, 3.), INF)
403 self.assertEqual(math.pow(INF, 2.3), INF)
404 self.assertEqual(math.pow(INF, 2.), INF)
405 self.assertEqual(math.pow(INF, 0.), 1.)
406 self.assertEqual(math.pow(INF, -0.), 1.)
407 self.assertEqual(math.pow(INF, -2.), 0.)
408 self.assertEqual(math.pow(INF, -2.3), 0.)
409 self.assertEqual(math.pow(INF, -3.), 0.)
410 self.assertEqual(math.pow(INF, NINF), 0.)
411 self.assert_(math.isnan(math.pow(INF, NAN)))
412
413 # pow(-0., x)
414 self.assertEqual(math.pow(-0., INF), 0.)
415 self.assertEqual(math.pow(-0., 3.), -0.)
416 self.assertEqual(math.pow(-0., 2.3), 0.)
417 self.assertEqual(math.pow(-0., 2.), 0.)
418 self.assertEqual(math.pow(-0., 0.), 1.)
419 self.assertEqual(math.pow(-0., -0.), 1.)
420 self.assertRaises(ValueError, math.pow, -0., -2.)
421 self.assertRaises(ValueError, math.pow, -0., -2.3)
422 self.assertRaises(ValueError, math.pow, -0., -3.)
423 self.assertRaises(ValueError, math.pow, -0., NINF)
424 self.assert_(math.isnan(math.pow(-0., NAN)))
425
426 # pow(NINF, x)
427 self.assertEqual(math.pow(NINF, INF), INF)
428 self.assertEqual(math.pow(NINF, 3.), NINF)
429 self.assertEqual(math.pow(NINF, 2.3), INF)
430 self.assertEqual(math.pow(NINF, 2.), INF)
431 self.assertEqual(math.pow(NINF, 0.), 1.)
432 self.assertEqual(math.pow(NINF, -0.), 1.)
433 self.assertEqual(math.pow(NINF, -2.), 0.)
434 self.assertEqual(math.pow(NINF, -2.3), 0.)
435 self.assertEqual(math.pow(NINF, -3.), -0.)
436 self.assertEqual(math.pow(NINF, NINF), 0.)
437 self.assert_(math.isnan(math.pow(NINF, NAN)))
438
439 # pow(-1, x)
440 self.assertEqual(math.pow(-1., INF), 1.)
441 self.assertEqual(math.pow(-1., 3.), -1.)
442 self.assertRaises(ValueError, math.pow, -1., 2.3)
443 self.assertEqual(math.pow(-1., 2.), 1.)
444 self.assertEqual(math.pow(-1., 0.), 1.)
445 self.assertEqual(math.pow(-1., -0.), 1.)
446 self.assertEqual(math.pow(-1., -2.), 1.)
447 self.assertRaises(ValueError, math.pow, -1., -2.3)
448 self.assertEqual(math.pow(-1., -3.), -1.)
449 self.assertEqual(math.pow(-1., NINF), 1.)
450 self.assert_(math.isnan(math.pow(-1., NAN)))
451
452 # pow(1, x)
453 self.assertEqual(math.pow(1., INF), 1.)
454 self.assertEqual(math.pow(1., 3.), 1.)
455 self.assertEqual(math.pow(1., 2.3), 1.)
456 self.assertEqual(math.pow(1., 2.), 1.)
457 self.assertEqual(math.pow(1., 0.), 1.)
458 self.assertEqual(math.pow(1., -0.), 1.)
459 self.assertEqual(math.pow(1., -2.), 1.)
460 self.assertEqual(math.pow(1., -2.3), 1.)
461 self.assertEqual(math.pow(1., -3.), 1.)
462 self.assertEqual(math.pow(1., NINF), 1.)
463 self.assertEqual(math.pow(1., NAN), 1.)
464
465 # pow(x, 0) should be 1 for any x
466 self.assertEqual(math.pow(2.3, 0.), 1.)
467 self.assertEqual(math.pow(-2.3, 0.), 1.)
468 self.assertEqual(math.pow(NAN, 0.), 1.)
469 self.assertEqual(math.pow(2.3, -0.), 1.)
470 self.assertEqual(math.pow(-2.3, -0.), 1.)
471 self.assertEqual(math.pow(NAN, -0.), 1.)
472
473 # pow(x, y) is invalid if x is negative and y is not integral
474 self.assertRaises(ValueError, math.pow, -1., 2.3)
475 self.assertRaises(ValueError, math.pow, -15., -3.1)
476
477 # pow(x, NINF)
478 self.assertEqual(math.pow(1.9, NINF), 0.)
479 self.assertEqual(math.pow(1.1, NINF), 0.)
480 self.assertEqual(math.pow(0.9, NINF), INF)
481 self.assertEqual(math.pow(0.1, NINF), INF)
482 self.assertEqual(math.pow(-0.1, NINF), INF)
483 self.assertEqual(math.pow(-0.9, NINF), INF)
484 self.assertEqual(math.pow(-1.1, NINF), 0.)
485 self.assertEqual(math.pow(-1.9, NINF), 0.)
486
487 # pow(x, INF)
488 self.assertEqual(math.pow(1.9, INF), INF)
489 self.assertEqual(math.pow(1.1, INF), INF)
490 self.assertEqual(math.pow(0.9, INF), 0.)
491 self.assertEqual(math.pow(0.1, INF), 0.)
492 self.assertEqual(math.pow(-0.1, INF), 0.)
493 self.assertEqual(math.pow(-0.9, INF), 0.)
494 self.assertEqual(math.pow(-1.1, INF), INF)
495 self.assertEqual(math.pow(-1.9, INF), INF)
496
497 # pow(x, y) should work for x negative, y an integer
498 self.ftest('(-2.)**3.', math.pow(-2.0, 3.0), -8.0)
499 self.ftest('(-2.)**2.', math.pow(-2.0, 2.0), 4.0)
500 self.ftest('(-2.)**1.', math.pow(-2.0, 1.0), -2.0)
501 self.ftest('(-2.)**0.', math.pow(-2.0, 0.0), 1.0)
502 self.ftest('(-2.)**-0.', math.pow(-2.0, -0.0), 1.0)
503 self.ftest('(-2.)**-1.', math.pow(-2.0, -1.0), -0.5)
504 self.ftest('(-2.)**-2.', math.pow(-2.0, -2.0), 0.25)
505 self.ftest('(-2.)**-3.', math.pow(-2.0, -3.0), -0.125)
506 self.assertRaises(ValueError, math.pow, -2.0, -0.5)
507 self.assertRaises(ValueError, math.pow, -2.0, 0.5)
508
509 # the following tests have been commented out since they don't
510 # really belong here: the implementation of ** for floats is
511 # independent of the implemention of math.pow
512 #self.assertEqual(1**NAN, 1)
513 #self.assertEqual(1**INF, 1)
514 #self.assertEqual(1**NINF, 1)
515 #self.assertEqual(1**0, 1)
516 #self.assertEqual(1.**NAN, 1)
517 #self.assertEqual(1.**INF, 1)
518 #self.assertEqual(1.**NINF, 1)
519 #self.assertEqual(1.**0, 1)
Guido van Rossumfcce6301996-08-08 18:26:25 +0000520
Thomas Wouters89f507f2006-12-13 04:49:30 +0000521 def testRadians(self):
522 self.assertRaises(TypeError, math.radians)
523 self.ftest('radians(180)', math.radians(180), math.pi)
524 self.ftest('radians(90)', math.radians(90), math.pi/2)
525 self.ftest('radians(-45)', math.radians(-45), -math.pi/4)
Guido van Rossumfcce6301996-08-08 18:26:25 +0000526
Thomas Wouters89f507f2006-12-13 04:49:30 +0000527 def testSin(self):
528 self.assertRaises(TypeError, math.sin)
529 self.ftest('sin(0)', math.sin(0), 0)
530 self.ftest('sin(pi/2)', math.sin(math.pi/2), 1)
531 self.ftest('sin(-pi/2)', math.sin(-math.pi/2), -1)
Christian Heimes53876d92008-04-19 00:31:39 +0000532 try:
533 self.assert_(math.isnan(math.sin(INF)))
534 self.assert_(math.isnan(math.sin(NINF)))
535 except ValueError:
536 self.assertRaises(ValueError, math.sin, INF)
537 self.assertRaises(ValueError, math.sin, NINF)
538 self.assert_(math.isnan(math.sin(NAN)))
Guido van Rossumfcce6301996-08-08 18:26:25 +0000539
Thomas Wouters89f507f2006-12-13 04:49:30 +0000540 def testSinh(self):
541 self.assertRaises(TypeError, math.sinh)
542 self.ftest('sinh(0)', math.sinh(0), 0)
543 self.ftest('sinh(1)**2-cosh(1)**2', math.sinh(1)**2-math.cosh(1)**2, -1)
544 self.ftest('sinh(1)+sinh(-1)', math.sinh(1)+math.sinh(-1), 0)
Christian Heimes53876d92008-04-19 00:31:39 +0000545 self.assertEquals(math.sinh(INF), INF)
Christian Heimesa342c012008-04-20 21:01:16 +0000546 self.assertEquals(math.sinh(NINF), NINF)
Christian Heimes53876d92008-04-19 00:31:39 +0000547 self.assert_(math.isnan(math.sinh(NAN)))
Tim Peters1d120612000-10-12 06:10:25 +0000548
Thomas Wouters89f507f2006-12-13 04:49:30 +0000549 def testSqrt(self):
550 self.assertRaises(TypeError, math.sqrt)
551 self.ftest('sqrt(0)', math.sqrt(0), 0)
552 self.ftest('sqrt(1)', math.sqrt(1), 1)
553 self.ftest('sqrt(4)', math.sqrt(4), 2)
Christian Heimes53876d92008-04-19 00:31:39 +0000554 self.assertEquals(math.sqrt(INF), INF)
555 self.assertRaises(ValueError, math.sqrt, NINF)
556 self.assert_(math.isnan(math.sqrt(NAN)))
Tim Peters1d120612000-10-12 06:10:25 +0000557
Thomas Wouters89f507f2006-12-13 04:49:30 +0000558 def testTan(self):
559 self.assertRaises(TypeError, math.tan)
560 self.ftest('tan(0)', math.tan(0), 0)
561 self.ftest('tan(pi/4)', math.tan(math.pi/4), 1)
562 self.ftest('tan(-pi/4)', math.tan(-math.pi/4), -1)
Christian Heimes53876d92008-04-19 00:31:39 +0000563 try:
564 self.assert_(math.isnan(math.tan(INF)))
565 self.assert_(math.isnan(math.tan(NINF)))
566 except:
567 self.assertRaises(ValueError, math.tan, INF)
568 self.assertRaises(ValueError, math.tan, NINF)
569 self.assert_(math.isnan(math.tan(NAN)))
Tim Peters1d120612000-10-12 06:10:25 +0000570
Thomas Wouters89f507f2006-12-13 04:49:30 +0000571 def testTanh(self):
572 self.assertRaises(TypeError, math.tanh)
573 self.ftest('tanh(0)', math.tanh(0), 0)
574 self.ftest('tanh(1)+tanh(-1)', math.tanh(1)+math.tanh(-1), 0)
Christian Heimes53876d92008-04-19 00:31:39 +0000575 self.ftest('tanh(inf)', math.tanh(INF), 1)
576 self.ftest('tanh(-inf)', math.tanh(NINF), -1)
577 self.assert_(math.isnan(math.tanh(NAN)))
Tim Peters1d120612000-10-12 06:10:25 +0000578
Christian Heimes400adb02008-02-01 08:12:03 +0000579 def test_trunc(self):
580 self.assertEqual(math.trunc(1), 1)
581 self.assertEqual(math.trunc(-1), -1)
582 self.assertEqual(type(math.trunc(1)), int)
583 self.assertEqual(type(math.trunc(1.5)), int)
584 self.assertEqual(math.trunc(1.5), 1)
585 self.assertEqual(math.trunc(-1.5), -1)
586 self.assertEqual(math.trunc(1.999999), 1)
587 self.assertEqual(math.trunc(-1.999999), -1)
588 self.assertEqual(math.trunc(-0.999999), -0)
589 self.assertEqual(math.trunc(-100.999), -100)
590
591 class TestTrunc(object):
592 def __trunc__(self):
593 return 23
594
595 class TestNoTrunc(object):
596 pass
597
598 self.assertEqual(math.trunc(TestTrunc()), 23)
599
600 self.assertRaises(TypeError, math.trunc)
601 self.assertRaises(TypeError, math.trunc, 1, 2)
602 self.assertRaises(TypeError, math.trunc, TestNoTrunc())
603
604 # XXX Doesn't work because the method is looked up on
605 # the type only.
606 #t = TestNoTrunc()
607 #t.__trunc__ = lambda *args: args
608 #self.assertEquals((), math.trunc(t))
609 #self.assertRaises(TypeError, math.trunc, t, 0)
610
Christian Heimes072c0f12008-01-03 23:01:04 +0000611 def testCopysign(self):
612 self.assertEqual(math.copysign(1, 42), 1.0)
613 self.assertEqual(math.copysign(0., 42), 0.0)
614 self.assertEqual(math.copysign(1., -42), -1.0)
615 self.assertEqual(math.copysign(3, 0.), 3.0)
616 self.assertEqual(math.copysign(4., -0.), -4.0)
617
618 def testIsnan(self):
619 self.assert_(math.isnan(float("nan")))
620 self.assert_(math.isnan(float("inf")* 0.))
621 self.failIf(math.isnan(float("inf")))
622 self.failIf(math.isnan(0.))
623 self.failIf(math.isnan(1.))
624
625 def testIsinf(self):
626 self.assert_(math.isinf(float("inf")))
627 self.assert_(math.isinf(float("-inf")))
628 self.assert_(math.isinf(1E400))
629 self.assert_(math.isinf(-1E400))
630 self.failIf(math.isinf(float("nan")))
631 self.failIf(math.isinf(0.))
632 self.failIf(math.isinf(1.))
633
Thomas Wouters89f507f2006-12-13 04:49:30 +0000634 # RED_FLAG 16-Oct-2000 Tim
635 # While 2.0 is more consistent about exceptions than previous releases, it
636 # still fails this part of the test on some platforms. For now, we only
637 # *run* test_exceptions() in verbose mode, so that this isn't normally
638 # tested.
Tim Peters98c81842000-10-16 17:35:13 +0000639
Thomas Wouters89f507f2006-12-13 04:49:30 +0000640 if verbose:
641 def test_exceptions(self):
642 try:
643 x = math.exp(-1000000000)
644 except:
645 # mathmodule.c is failing to weed out underflows from libm, or
646 # we've got an fp format with huge dynamic range
647 self.fail("underflowing exp() should not have raised "
648 "an exception")
649 if x != 0:
650 self.fail("underflowing exp() should have returned 0")
651
652 # If this fails, probably using a strict IEEE-754 conforming libm, and x
653 # is +Inf afterwards. But Python wants overflows detected by default.
654 try:
655 x = math.exp(1000000000)
656 except OverflowError:
657 pass
658 else:
659 self.fail("overflowing exp() didn't trigger OverflowError")
660
661 # If this fails, it could be a puzzle. One odd possibility is that
662 # mathmodule.c's macros are getting confused while comparing
663 # Inf (HUGE_VAL) to a NaN, and artificially setting errno to ERANGE
664 # as a result (and so raising OverflowError instead).
665 try:
666 x = math.sqrt(-1.0)
667 except ValueError:
668 pass
669 else:
670 self.fail("sqrt(-1) didn't raise ValueError")
671
Christian Heimes53876d92008-04-19 00:31:39 +0000672 def test_testfile(self):
673 if not float.__getformat__("double").startswith("IEEE"):
674 return
675 for id, fn, ar, ai, er, ei, flags in parse_testfile(test_file):
676 # Skip if either the input or result is complex, or if
677 # flags is nonempty
678 if ai != 0. or ei != 0. or flags:
679 continue
680 if fn in ['rect', 'polar']:
681 # no real versions of rect, polar
682 continue
683 func = getattr(math, fn)
Christian Heimesa342c012008-04-20 21:01:16 +0000684 try:
685 result = func(ar)
686 except ValueError:
687 message = ("Unexpected ValueError in " +
688 "test %s:%s(%r)\n" % (id, fn, ar))
689 self.fail(message)
Christian Heimes53876d92008-04-19 00:31:39 +0000690 self.ftest("%s:%s(%r)" % (id, fn, ar), result, er)
Thomas Wouters89f507f2006-12-13 04:49:30 +0000691
692def test_main():
Christian Heimes53876d92008-04-19 00:31:39 +0000693 from doctest import DocFileSuite
694 suite = unittest.TestSuite()
695 suite.addTest(unittest.makeSuite(MathTests))
696 suite.addTest(DocFileSuite("ieee754.txt"))
697 run_unittest(suite)
Thomas Wouters89f507f2006-12-13 04:49:30 +0000698
699if __name__ == '__main__':
700 test_main()