forked from IronLanguages/ironpython3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_complex.py
More file actions
97 lines (80 loc) · 2.94 KB
/
Copy pathtest_complex.py
File metadata and controls
97 lines (80 loc) · 2.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#####################################################################################
#
# Copyright (c) Microsoft Corporation. All rights reserved.
#
# This source code is subject to terms and conditions of the Apache License, Version 2.0. A
# copy of the license can be found in the License.html file at the root of this distribution. If
# you cannot locate the Apache License, Version 2.0, please send an email to
# ironpy@microsoft.com. By using this source code in any fashion, you are agreeing to be bound
# by the terms of the Apache License, Version 2.0.
#
# You must not remove this notice, or any other, from this software.
#
#
#####################################################################################
from iptest.assert_util import *
from iptest.type_util import *
from iptest.warning_util import warning_trapper
def test_from_string():
# complex from string: negative
# - space related
l = ['1.2', '.3', '4e3', '.3e-4', "0.031"]
for x in l:
for y in l:
AssertError(ValueError, complex, "%s +%sj" % (x, y))
AssertError(ValueError, complex, "%s+ %sj" % (x, y))
AssertError(ValueError, complex, "%s - %sj" % (x, y))
AssertError(ValueError, complex, "%s- %sj" % (x, y))
AssertError(ValueError, complex, "%s-\t%sj" % (x, y))
AssertError(ValueError, complex, "%sj+%sj" % (x, y))
AreEqual(complex(" %s+%sj" % (x, y)), complex(" %s+%sj " % (x, y)))
def test_misc():
AreEqual(mycomplex(), complex())
a = mycomplex(1)
b = mycomplex(1,0)
c = complex(1)
d = complex(1,0)
for x in [a,b,c,d]:
for y in [a,b,c,d]:
AreEqual(x,y)
AreEqual(a ** 2, a)
AreEqual(a-complex(), a)
AreEqual(a+complex(), a)
AreEqual(complex()/a, complex())
AreEqual(complex()*a, complex())
AreEqual(complex()%a, complex())
AreEqual(complex() // a, complex())
Assert(complex(2) == complex(2, 0))
def test_inherit():
class mycomplex(complex): pass
a = mycomplex(2+1j)
AreEqual(a.real, 2)
AreEqual(a.imag, 1)
def test_repr():
AreEqual(repr(1-6j), '(1-6j)')
def test_infinite():
AreEqual(repr(1.0e340j), 'infj')
AreEqual(repr(-1.0e340j),'-infj')
# Test must sort alphabetically ahead of other uses of the deprecated functions
@skip("silverlight", "multiple_execute")
def test_deprecations():
if is_cpython:
expected_num = 3
else:
expected_num = 1
with stderr_trapper() as trapper:
a = 3j
b = 5j
c = 2j
x = a // 4
x = b % c
x = divmod(b, a)
m = trapper.messages[0:6:2]
m = [x.split(": ", 1)[1] for x in m]
expected = ['DeprecationWarning: complex divmod(), // and % are deprecated'] * expected_num
if is_ironpython: #CodePlex 21921
AreEqual(m, expected)
else:
AreEqual(m, [])
#--MAIN------------------------------------------------------------------------
run_test(__name__)