Exceptions raised during renaming in rotating file handlers are now passed to handleE...
[python.git] / Lib / test / test_new.py
blob4aab1e268b06f64abd23796ec397847be448cbab
1 from test.test_support import verbose, verify, TestFailed
2 import sys
3 import new
5 class Eggs:
6 def get_yolks(self):
7 return self.yolks
9 print 'new.module()'
10 m = new.module('Spam')
11 if verbose:
12 print m
13 m.Eggs = Eggs
14 sys.modules['Spam'] = m
15 import Spam
17 def get_more_yolks(self):
18 return self.yolks + 3
20 print 'new.classobj()'
21 C = new.classobj('Spam', (Spam.Eggs,), {'get_more_yolks': get_more_yolks})
22 if verbose:
23 print C
24 print 'new.instance()'
25 c = new.instance(C, {'yolks': 3})
26 if verbose:
27 print c
28 o = new.instance(C)
29 verify(o.__dict__ == {},
30 "new __dict__ should be empty")
31 del o
32 o = new.instance(C, None)
33 verify(o.__dict__ == {},
34 "new __dict__ should be empty")
35 del o
37 def break_yolks(self):
38 self.yolks = self.yolks - 2
39 print 'new.instancemethod()'
40 im = new.instancemethod(break_yolks, c, C)
41 if verbose:
42 print im
44 verify(c.get_yolks() == 3 and c.get_more_yolks() == 6,
45 'Broken call of hand-crafted class instance')
46 im()
47 verify(c.get_yolks() == 1 and c.get_more_yolks() == 4,
48 'Broken call of hand-crafted instance method')
50 im = new.instancemethod(break_yolks, c)
51 im()
52 verify(c.get_yolks() == -1)
53 try:
54 new.instancemethod(break_yolks, None)
55 except TypeError:
56 pass
57 else:
58 raise TestFailed, "dangerous instance method creation allowed"
60 # It's unclear what the semantics should be for a code object compiled at
61 # module scope, but bound and run in a function. In CPython, `c' is global
62 # (by accident?) while in Jython, `c' is local. The intent of the test
63 # clearly is to make `c' global, so let's be explicit about it.
64 codestr = '''
65 global c
66 a = 1
67 b = 2
68 c = a + b
69 '''
71 ccode = compile(codestr, '<string>', 'exec')
72 # Jython doesn't have a __builtins__, so use a portable alternative
73 import __builtin__
74 g = {'c': 0, '__builtins__': __builtin__}
75 # this test could be more robust
76 print 'new.function()'
77 func = new.function(ccode, g)
78 if verbose:
79 print func
80 func()
81 verify(g['c'] == 3,
82 'Could not create a proper function object')
84 # test the various extended flavors of function.new
85 def f(x):
86 def g(y):
87 return x + y
88 return g
89 g = f(4)
90 new.function(f.func_code, {}, "blah")
91 g2 = new.function(g.func_code, {}, "blah", (2,), g.func_closure)
92 verify(g2() == 6)
93 g3 = new.function(g.func_code, {}, "blah", None, g.func_closure)
94 verify(g3(5) == 9)
95 def test_closure(func, closure, exc):
96 try:
97 new.function(func.func_code, {}, "", None, closure)
98 except exc:
99 pass
100 else:
101 print "corrupt closure accepted"
103 test_closure(g, None, TypeError) # invalid closure
104 test_closure(g, (1,), TypeError) # non-cell in closure
105 test_closure(g, (1, 1), ValueError) # closure is wrong size
106 test_closure(f, g.func_closure, ValueError) # no closure needed
108 print 'new.code()'
109 # bogus test of new.code()
110 # Note: Jython will never have new.code()
111 if hasattr(new, 'code'):
112 def f(a): pass
114 c = f.func_code
115 argcount = c.co_argcount
116 nlocals = c.co_nlocals
117 stacksize = c.co_stacksize
118 flags = c.co_flags
119 codestring = c.co_code
120 constants = c.co_consts
121 names = c.co_names
122 varnames = c.co_varnames
123 filename = c.co_filename
124 name = c.co_name
125 firstlineno = c.co_firstlineno
126 lnotab = c.co_lnotab
127 freevars = c.co_freevars
128 cellvars = c.co_cellvars
130 d = new.code(argcount, nlocals, stacksize, flags, codestring,
131 constants, names, varnames, filename, name,
132 firstlineno, lnotab, freevars, cellvars)
134 # test backwards-compatibility version with no freevars or cellvars
135 d = new.code(argcount, nlocals, stacksize, flags, codestring,
136 constants, names, varnames, filename, name,
137 firstlineno, lnotab)
139 try: # this used to trigger a SystemError
140 d = new.code(-argcount, nlocals, stacksize, flags, codestring,
141 constants, names, varnames, filename, name,
142 firstlineno, lnotab)
143 except ValueError:
144 pass
145 else:
146 raise TestFailed, "negative co_argcount didn't trigger an exception"
148 try: # this used to trigger a SystemError
149 d = new.code(argcount, -nlocals, stacksize, flags, codestring,
150 constants, names, varnames, filename, name,
151 firstlineno, lnotab)
152 except ValueError:
153 pass
154 else:
155 raise TestFailed, "negative co_nlocals didn't trigger an exception"
157 try: # this used to trigger a Py_FatalError!
158 d = new.code(argcount, nlocals, stacksize, flags, codestring,
159 constants, (5,), varnames, filename, name,
160 firstlineno, lnotab)
161 except TypeError:
162 pass
163 else:
164 raise TestFailed, "non-string co_name didn't trigger an exception"
166 # new.code used to be a way to mutate a tuple...
167 class S(str): pass
168 t = (S("ab"),)
169 d = new.code(argcount, nlocals, stacksize, flags, codestring,
170 constants, t, varnames, filename, name,
171 firstlineno, lnotab)
172 verify(type(t[0]) is S, "eek, tuple changed under us!")
174 if verbose:
175 print d