1 # Python test set -- part 4a, built-in functions a-m
3 from test_support
import *
9 try: __import__('spamspam')
10 except ImportError: pass
11 else: raise TestFailed
, "__import__('spamspam') should fail"
14 if abs(0) <> 0: raise TestFailed
, 'abs(0)'
15 if abs(1234) <> 1234: raise TestFailed
, 'abs(1234)'
16 if abs(-1234) <> 1234: raise TestFailed
, 'abs(-1234)'
18 if abs(0.0) <> 0.0: raise TestFailed
, 'abs(0.0)'
19 if abs(3.14) <> 3.14: raise TestFailed
, 'abs(3.14)'
20 if abs(-3.14) <> 3.14: raise TestFailed
, 'abs(-3.14)'
22 if abs(0L) <> 0L: raise TestFailed
, 'abs(0L)'
23 if abs(1234L) <> 1234L: raise TestFailed
, 'abs(1234L)'
24 if abs(-1234L) <> 1234L: raise TestFailed
, 'abs(-1234L)'
28 if args
!= (): raise TestFailed
, 'f0 called with ' + `args`
30 if a1
!= 1: raise TestFailed
, 'f1 called with ' + `a1`
32 if a1
!= 1 or a2
!= 2:
33 raise TestFailed
, 'f2 called with ' + `a1
, a2`
35 if a1
!= 1 or a2
!= 2 or a3
!= 3:
36 raise TestFailed
, 'f3 called with ' + `a1
, a2
, a3`
43 if not callable(len):raise TestFailed
, 'callable(len)'
45 if not callable(f
): raise TestFailed
, 'callable(f)'
48 if not callable(C
): raise TestFailed
, 'callable(C)'
50 if not callable(x
.meth
): raise TestFailed
, 'callable(x.meth)'
51 if callable(x
): raise TestFailed
, 'callable(x)'
53 def __call__(self
): pass
55 if not callable(y
): raise TestFailed
, 'callable(y)'
58 if chr(32) <> ' ': raise TestFailed
, 'chr(32)'
59 if chr(65) <> 'A': raise TestFailed
, 'chr(65)'
60 if chr(97) <> 'a': raise TestFailed
, 'chr(97)'
63 if cmp(-1, 1) <> -1: raise TestFailed
, 'cmp(-1, 1)'
64 if cmp(1, -1) <> 1: raise TestFailed
, 'cmp(1, -1)'
65 if cmp(1, 1) <> 0: raise TestFailed
, 'cmp(1, 1)'
66 # verify that circular objects are handled
69 from UserList
import UserList
70 c
= UserList(); c
.append(c
)
71 if cmp(a
, b
) != 0: raise TestFailed
, "cmp(%s, %s)" % (a
, b
)
72 if cmp(b
, c
) != 0: raise TestFailed
, "cmp(%s, %s)" % (b
, c
)
73 if cmp(c
, a
) != 0: raise TestFailed
, "cmp(%s, %s)" % (c
, a
)
74 if cmp(a
, c
) != 0: raise TestFailed
, "cmp(%s, %s)" % (a
, c
)
75 # okay, now break the cycles
76 a
.pop(); b
.pop(); c
.pop()
79 if fcmp(coerce(1, 1.1), (1.0, 1.1)): raise TestFailed
, 'coerce(1, 1.1)'
80 if coerce(1, 1L) <> (1L, 1L): raise TestFailed
, 'coerce(1, 1L)'
81 if fcmp(coerce(1L, 1.1), (1.0, 1.1)): raise TestFailed
, 'coerce(1L, 1.1)'
84 compile('print 1\n', '', 'exec')
87 if complex(1,10) <> 1+10j
: raise TestFailed
, 'complex(1,10)'
88 if complex(1,10L) <> 1+10j
: raise TestFailed
, 'complex(1,10L)'
89 if complex(1,10.0) <> 1+10j
: raise TestFailed
, 'complex(1,10.0)'
90 if complex(1L,10) <> 1+10j
: raise TestFailed
, 'complex(1L,10)'
91 if complex(1L,10L) <> 1+10j
: raise TestFailed
, 'complex(1L,10L)'
92 if complex(1L,10.0) <> 1+10j
: raise TestFailed
, 'complex(1L,10.0)'
93 if complex(1.0,10) <> 1+10j
: raise TestFailed
, 'complex(1.0,10)'
94 if complex(1.0,10L) <> 1+10j
: raise TestFailed
, 'complex(1.0,10L)'
95 if complex(1.0,10.0) <> 1+10j
: raise TestFailed
, 'complex(1.0,10.0)'
96 if complex(3.14+0j
) <> 3.14+0j
: raise TestFailed
, 'complex(3.14)'
97 if complex(3.14) <> 3.14+0j
: raise TestFailed
, 'complex(3.14)'
98 if complex(314) <> 314.0+0j
: raise TestFailed
, 'complex(314)'
99 if complex(314L) <> 314.0+0j
: raise TestFailed
, 'complex(314L)'
100 if complex(3.14+0j
, 0j
) <> 3.14+0j
: raise TestFailed
, 'complex(3.14, 0j)'
101 if complex(3.14, 0.0) <> 3.14+0j
: raise TestFailed
, 'complex(3.14, 0.0)'
102 if complex(314, 0) <> 314.0+0j
: raise TestFailed
, 'complex(314, 0)'
103 if complex(314L, 0L) <> 314.0+0j
: raise TestFailed
, 'complex(314L, 0L)'
104 if complex(0j
, 3.14j
) <> -3.14+0j
: raise TestFailed
, 'complex(0j, 3.14j)'
105 if complex(0.0, 3.14j
) <> -3.14+0j
: raise TestFailed
, 'complex(0.0, 3.14j)'
106 if complex(0j
, 3.14) <> 3.14j
: raise TestFailed
, 'complex(0j, 3.14)'
107 if complex(0.0, 3.14) <> 3.14j
: raise TestFailed
, 'complex(0.0, 3.14)'
108 if complex(" 3.14+J ") <> 3.14+1j
: raise TestFailed
, 'complex(" 3.14+J )"'
109 if complex(u
" 3.14+J ") <> 3.14+1j
: raise TestFailed
, 'complex(u" 3.14+J )"'
111 def __complex__(self
): return 3.14j
113 if complex(z
) <> 3.14j
: raise TestFailed
, 'complex(classinstance)'
122 if 'x' not in dir(): raise TestFailed
, 'dir()'
124 if 'modules' not in dir(sys
): raise TestFailed
, 'dir(sys)'
127 if divmod(12, 7) <> (1, 5): raise TestFailed
, 'divmod(12, 7)'
128 if divmod(-12, 7) <> (-2, 2): raise TestFailed
, 'divmod(-12, 7)'
129 if divmod(12, -7) <> (-2, -2): raise TestFailed
, 'divmod(12, -7)'
130 if divmod(-12, -7) <> (1, -5): raise TestFailed
, 'divmod(-12, -7)'
132 if divmod(12L, 7L) <> (1L, 5L): raise TestFailed
, 'divmod(12L, 7L)'
133 if divmod(-12L, 7L) <> (-2L, 2L): raise TestFailed
, 'divmod(-12L, 7L)'
134 if divmod(12L, -7L) <> (-2L, -2L): raise TestFailed
, 'divmod(12L, -7L)'
135 if divmod(-12L, -7L) <> (1L, -5L): raise TestFailed
, 'divmod(-12L, -7L)'
137 if divmod(12, 7L) <> (1, 5L): raise TestFailed
, 'divmod(12, 7L)'
138 if divmod(-12, 7L) <> (-2, 2L): raise TestFailed
, 'divmod(-12, 7L)'
139 if divmod(12L, -7) <> (-2L, -2): raise TestFailed
, 'divmod(12L, -7)'
140 if divmod(-12L, -7) <> (1L, -5): raise TestFailed
, 'divmod(-12L, -7)'
142 if fcmp(divmod(3.25, 1.0), (3.0, 0.25)):
143 raise TestFailed
, 'divmod(3.25, 1.0)'
144 if fcmp(divmod(-3.25, 1.0), (-4.0, 0.75)):
145 raise TestFailed
, 'divmod(-3.25, 1.0)'
146 if fcmp(divmod(3.25, -1.0), (-4.0, -0.75)):
147 raise TestFailed
, 'divmod(3.25, -1.0)'
148 if fcmp(divmod(-3.25, -1.0), (3.0, -0.25)):
149 raise TestFailed
, 'divmod(-3.25, -1.0)'
152 if eval('1+1') <> 2: raise TestFailed
, 'eval(\'1+1\')'
153 if eval(' 1+1\n') <> 2: raise TestFailed
, 'eval(\' 1+1\\n\')'
154 globals = {'a': 1, 'b': 2}
155 locals = {'b': 200, 'c': 300}
156 if eval('a', globals) <> 1:
157 raise TestFailed
, "eval(1) == %s" % eval('a', globals)
158 if eval('a', globals, locals) <> 1:
159 raise TestFailed
, "eval(2)"
160 if eval('b', globals, locals) <> 200:
161 raise TestFailed
, "eval(3)"
162 if eval('c', globals, locals) <> 300:
163 raise TestFailed
, "eval(4)"
164 if eval(u
'1+1') <> 2: raise TestFailed
, 'eval(u\'1+1\')'
165 if eval(u
' 1+1\n') <> 2: raise TestFailed
, 'eval(u\' 1+1\\n\')'
166 globals = {'a': 1, 'b': 2}
167 locals = {'b': 200, 'c': 300}
168 if eval(u
'a', globals) <> 1:
169 raise TestFailed
, "eval(1) == %s" % eval(u
'a', globals)
170 if eval(u
'a', globals, locals) <> 1:
171 raise TestFailed
, "eval(2)"
172 if eval(u
'b', globals, locals) <> 200:
173 raise TestFailed
, "eval(3)"
174 if eval(u
'c', globals, locals) <> 300:
175 raise TestFailed
, "eval(4)"
179 f
= open(TESTFN
, 'w')
184 if z
<> 2: raise TestFailed
, "execfile(1)"
186 execfile(TESTFN
, globals)
187 if globals['z'] <> 2: raise TestFailed
, "execfile(1)"
189 execfile(TESTFN
, globals, locals)
190 if locals['z'] <> 2: raise TestFailed
, "execfile(1)"
194 if filter(lambda c
: 'a' <= c
<= 'z', 'Hello World') <> 'elloorld':
195 raise TestFailed
, 'filter (filter a string)'
196 if filter(None, [1, 'hello', [], [3], '', None, 9, 0]) <> [1, 'hello', [3], 9]:
197 raise TestFailed
, 'filter (remove false values)'
198 if filter(lambda x
: x
> 0, [1, -3, 9, 0, 2]) <> [1, 9, 2]:
199 raise TestFailed
, 'filter (keep positives)'
201 def __init__(self
, max):
204 def __len__(self
): return len(self
.sofar
)
205 def __getitem__(self
, i
):
206 if not 0 <= i
< self
.max: raise IndexError
209 self
.sofar
.append(n
*n
)
212 if filter(None, Squares(10)) != [1, 4, 9, 16, 25, 36, 49, 64, 81]:
213 raise TestFailed
, 'filter(None, Squares(10))'
214 if filter(lambda x
: x
%2, Squares(10)) != [1, 9, 25, 49, 81]:
215 raise TestFailed
, 'filter(oddp, Squares(10))'
217 def __init__(self
, max):
221 return len(self
.sofar
)
222 def __getitem__(self
, i
):
223 if not 0 <= i
< self
.max:
227 self
.sofar
.append(str(n
*n
))
232 filter(identity
, Squares(5))
235 if float(3.14) <> 3.14: raise TestFailed
, 'float(3.14)'
236 if float(314) <> 314.0: raise TestFailed
, 'float(314)'
237 if float(314L) <> 314.0: raise TestFailed
, 'float(314L)'
238 if float(" 3.14 ") <> 3.14: raise TestFailed
, 'float(" 3.14 ")'
239 if float(u
" 3.14 ") <> 3.14: raise TestFailed
, 'float(u" 3.14 ")'
240 if float(u
" \u0663.\u0661\u0664 ") <> 3.14:
241 raise TestFailed
, 'float(u" \u0663.\u0661\u0664 ")'
245 if getattr(sys
, 'stdout') is not sys
.stdout
: raise TestFailed
, 'getattr'
249 if not hasattr(sys
, 'stdout'): raise TestFailed
, 'hasattr'
253 if not hash(1) == hash(1L) == hash(1.0): raise TestFailed
, 'numeric hash()'
259 if hex(16) != '0x10': raise TestFailed
, 'hex(16)'
260 if hex(16L) != '0x10L': raise TestFailed
, 'hex(16L)'
261 if len(hex(-1)) != len(hex(sys
.maxint
)): raise TestFailed
, 'len(hex(-1))'
262 if hex(-16) not in ('0xfffffff0', '0xfffffffffffffff0'):
263 raise TestFailed
, 'hex(-16)'
264 if hex(-16L) != '-0x10L': raise TestFailed
, 'hex(-16L)'
274 id({'spam': 1, 'eggs': 2, 'ham': 3})
276 # Test input() later, together with raw_input
279 if int(314) <> 314: raise TestFailed
, 'int(314)'
280 if int(3.14) <> 3: raise TestFailed
, 'int(3.14)'
281 if int(314L) <> 314: raise TestFailed
, 'int(314L)'
282 # Check that conversion from float truncates towards zero
283 if int(-3.14) <> -3: raise TestFailed
, 'int(-3.14)'
284 if int(3.9) <> 3: raise TestFailed
, 'int(3.9)'
285 if int(-3.9) <> -3: raise TestFailed
, 'int(-3.9)'
286 if int(3.5) <> 3: raise TestFailed
, 'int(3.5)'
287 if int(-3.5) <> -3: raise TestFailed
, 'int(-3.5)'
289 if int("10",16) <> 16L: raise TestFailed
, 'int("10",16)'
290 if int(u
"10",16) <> 16L: raise TestFailed
, 'int(u"10",16)'
291 # Test conversion from strings and various anomalies
302 (' \t\t 314 \t\t ', 314),
303 (`sys
.maxint`
, sys
.maxint
),
306 (' 1\02 ', ValueError),
309 (' \t\t ', ValueError),
318 (u
'\u0663\u0661\u0664 ', 314),
319 (u
' \t\t 314 \t\t ', 314),
320 (u
' 1x', ValueError),
322 (u
' 1\02 ', ValueError),
325 (u
' \t\t ', ValueError),
328 for sign
in "", "+", "-":
329 for prefix
in "", " ", "\t", " \t\t ":
330 ss
= prefix
+ sign
+ s
332 if sign
== "-" and v
is not ValueError:
336 raise TestFailed
, "int(%s)" % `ss`
339 except ValueError, e
:
340 raise TestFailed
, "int(%s) raised ValueError: %s" % (`ss`
, e
)
342 if int(s
)+1 != -sys
.maxint
:
343 raise TestFailed
, "int(%s)" % `s`
349 raise TestFailed
, "int(%s)" % `s
[1:]`
+ " should raise ValueError"
361 if not isinstance(c
, C
): raise TestFailed
, 'isinstance(c, C)'
362 if not isinstance(d
, C
): raise TestFailed
, 'isinstance(d, C)'
363 if isinstance(e
, C
): raise TestFailed
, 'isinstance(e, C)'
364 if isinstance(c
, D
): raise TestFailed
, 'isinstance(c, D)'
365 if isinstance('foo', E
): raise TestFailed
, 'isinstance("Foo", E)'
368 raise TestFailed
, 'isinstance(E, "foo")'
373 if not issubclass(D
, C
): raise TestFailed
, 'issubclass(D, C)'
374 if not issubclass(C
, C
): raise TestFailed
, 'issubclass(C, C)'
375 if issubclass(C
, D
): raise TestFailed
, 'issubclass(C, D)'
378 raise TestFailed
, 'issubclass("foo", E)'
383 raise TestFailed
, 'issubclass(E, "foo")'
388 if len('123') <> 3: raise TestFailed
, 'len(\'123\')'
389 if len(()) <> 0: raise TestFailed
, 'len(())'
390 if len((1, 2, 3, 4)) <> 4: raise TestFailed
, 'len((1, 2, 3, 4))'
391 if len([1, 2, 3, 4]) <> 4: raise TestFailed
, 'len([1, 2, 3, 4])'
392 if len({}) <> 0: raise TestFailed
, 'len({})'
393 if len({'a':1, 'b': 2}) <> 2: raise TestFailed
, 'len({\'a\':1, \'b\': 2})'
396 if long(314) <> 314L: raise TestFailed
, 'long(314)'
397 if long(3.14) <> 3L: raise TestFailed
, 'long(3.14)'
398 if long(314L) <> 314L: raise TestFailed
, 'long(314L)'
399 # Check that conversion from float truncates towards zero
400 if long(-3.14) <> -3L: raise TestFailed
, 'long(-3.14)'
401 if long(3.9) <> 3L: raise TestFailed
, 'long(3.9)'
402 if long(-3.9) <> -3L: raise TestFailed
, 'long(-3.9)'
403 if long(3.5) <> 3L: raise TestFailed
, 'long(3.5)'
404 if long(-3.5) <> -3L: raise TestFailed
, 'long(-3.5)'
405 if long("-3") <> -3L: raise TestFailed
, 'long("-3")'
406 if long(u
"-3") <> -3L: raise TestFailed
, 'long(u"-3")'
408 if long("10",16) <> 16L: raise TestFailed
, 'long("10",16)'
409 if long(u
"10",16) <> 16L: raise TestFailed
, 'long(u"10",16)'
410 # Check conversions from string (same test set as for int(), and then some)
412 ('1' + '0'*20, 10L**20),
413 ('1' + '0'*100, 10L**100),
414 (u
'1' + u
'0'*20, 10L**20),
415 (u
'1' + u
'0'*100, 10L**100),
418 for sign
in "", "+", "-":
419 for prefix
in "", " ", "\t", " \t\t ":
420 ss
= prefix
+ sign
+ s
422 if sign
== "-" and v
is not ValueError:
425 if long(ss
) != long(vv
):
426 raise TestFailed
, "long(%s)" % `ss`
429 except ValueError, e
:
430 raise TestFailed
, "long(%s) raised ValueError: %s" % (`ss`
, e
)
433 if map(None, 'hello world') <> ['h','e','l','l','o',' ','w','o','r','l','d']:
434 raise TestFailed
, 'map(None, \'hello world\')'
435 if map(None, 'abcd', 'efg') <> \
436 [('a', 'e'), ('b', 'f'), ('c', 'g'), ('d', None)]:
437 raise TestFailed
, 'map(None, \'abcd\', \'efg\')'
438 if map(None, range(10)) <> [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]:
439 raise TestFailed
, 'map(None, range(10))'
440 if map(lambda x
: x
*x
, range(1,4)) <> [1, 4, 9]:
441 raise TestFailed
, 'map(lambda x: x*x, range(1,4))'
443 from math
import sqrt
447 if map(lambda x
: map(sqrt
,x
), [[16, 4], [81, 9]]) <> [[4.0, 2.0], [9.0, 3.0]]:
448 raise TestFailed
, 'map(lambda x: map(sqrt,x), [[16, 4], [81, 9]])'
449 if map(lambda x
, y
: x
+y
, [1,3,2], [9,1,4]) <> [10, 4, 6]:
450 raise TestFailed
, 'map(lambda x,y: x+y, [1,3,2], [9,1,4])'
453 for i
in v
: accu
= accu
+ i
455 if map(plus
, [1, 3, 7]) <> [1, 3, 7]:
456 raise TestFailed
, 'map(plus, [1, 3, 7])'
457 if map(plus
, [1, 3, 7], [4, 9, 2]) <> [1+4, 3+9, 7+2]:
458 raise TestFailed
, 'map(plus, [1, 3, 7], [4, 9, 2])'
459 if map(plus
, [1, 3, 7], [4, 9, 2], [1, 1, 0]) <> [1+4+1, 3+9+1, 7+2+0]:
460 raise TestFailed
, 'map(plus, [1, 3, 7], [4, 9, 2], [1, 1, 0])'
461 if map(None, Squares(10)) != [0, 1, 4, 9, 16, 25, 36, 49, 64, 81]:
462 raise TestFailed
, 'map(None, Squares(10))'
463 if map(int, Squares(10)) != [0, 1, 4, 9, 16, 25, 36, 49, 64, 81]:
464 raise TestFailed
, 'map(int, Squares(10))'
465 if map(None, Squares(3), Squares(2)) != [(0,0), (1,1), (4,None)]:
466 raise TestFailed
, 'map(None, Squares(3), Squares(2))'
467 if map(max, Squares(3), Squares(2)) != [0, 1, None]:
468 raise TestFailed
, 'map(max, Squares(3), Squares(2))'
471 if max('123123') <> '3': raise TestFailed
, 'max(\'123123\')'
472 if max(1, 2, 3) <> 3: raise TestFailed
, 'max(1, 2, 3)'
473 if max((1, 2, 3, 1, 2, 3)) <> 3: raise TestFailed
, 'max((1, 2, 3, 1, 2, 3))'
474 if max([1, 2, 3, 1, 2, 3]) <> 3: raise TestFailed
, 'max([1, 2, 3, 1, 2, 3])'
476 if max(1, 2L, 3.0) <> 3.0: raise TestFailed
, 'max(1, 2L, 3.0)'
477 if max(1L, 2.0, 3) <> 3: raise TestFailed
, 'max(1L, 2.0, 3)'
478 if max(1.0, 2, 3L) <> 3L: raise TestFailed
, 'max(1.0, 2, 3L)'
481 if min('123123') <> '1': raise TestFailed
, 'min(\'123123\')'
482 if min(1, 2, 3) <> 1: raise TestFailed
, 'min(1, 2, 3)'
483 if min((1, 2, 3, 1, 2, 3)) <> 1: raise TestFailed
, 'min((1, 2, 3, 1, 2, 3))'
484 if min([1, 2, 3, 1, 2, 3]) <> 1: raise TestFailed
, 'min([1, 2, 3, 1, 2, 3])'
486 if min(1, 2L, 3.0) <> 1: raise TestFailed
, 'min(1, 2L, 3.0)'
487 if min(1L, 2.0, 3) <> 1L: raise TestFailed
, 'min(1L, 2.0, 3)'
488 if min(1.0, 2, 3L) <> 1.0: raise TestFailed
, 'min(1.0, 2, 3L)'