Initial commit of OpenSPARC T2 architecture model.
[OpenSPARC-T2-SAM] / sam-t2 / devtools / v9 / lib / python2.4 / test / test_new.py
CommitLineData
920dae64
AT
1from test.test_support import verbose, verify, TestFailed
2import sys
3import new
4
5class Eggs:
6 def get_yolks(self):
7 return self.yolks
8
9print 'new.module()'
10m = new.module('Spam')
11if verbose:
12 print m
13m.Eggs = Eggs
14sys.modules['Spam'] = m
15import Spam
16
17def get_more_yolks(self):
18 return self.yolks + 3
19
20print 'new.classobj()'
21C = new.classobj('Spam', (Spam.Eggs,), {'get_more_yolks': get_more_yolks})
22if verbose:
23 print C
24print 'new.instance()'
25c = new.instance(C, {'yolks': 3})
26if verbose:
27 print c
28o = new.instance(C)
29verify(o.__dict__ == {},
30 "new __dict__ should be empty")
31del o
32o = new.instance(C, None)
33verify(o.__dict__ == {},
34 "new __dict__ should be empty")
35del o
36
37def break_yolks(self):
38 self.yolks = self.yolks - 2
39print 'new.instancemethod()'
40im = new.instancemethod(break_yolks, c, C)
41if verbose:
42 print im
43
44verify(c.get_yolks() == 3 and c.get_more_yolks() == 6,
45 'Broken call of hand-crafted class instance')
46im()
47verify(c.get_yolks() == 1 and c.get_more_yolks() == 4,
48 'Broken call of hand-crafted instance method')
49
50im = new.instancemethod(break_yolks, c)
51im()
52verify(c.get_yolks() == -1)
53try:
54 new.instancemethod(break_yolks, None)
55except TypeError:
56 pass
57else:
58 raise TestFailed, "dangerous instance method creation allowed"
59
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.
64codestr = '''
65global c
66a = 1
67b = 2
68c = a + b
69'''
70
71ccode = compile(codestr, '<string>', 'exec')
72# Jython doesn't have a __builtins__, so use a portable alternative
73import __builtin__
74g = {'c': 0, '__builtins__': __builtin__}
75# this test could be more robust
76print 'new.function()'
77func = new.function(ccode, g)
78if verbose:
79 print func
80func()
81verify(g['c'] == 3,
82 'Could not create a proper function object')
83
84# test the various extended flavors of function.new
85def f(x):
86 def g(y):
87 return x + y
88 return g
89g = f(4)
90new.function(f.func_code, {}, "blah")
91g2 = new.function(g.func_code, {}, "blah", (2,), g.func_closure)
92verify(g2() == 6)
93g3 = new.function(g.func_code, {}, "blah", None, g.func_closure)
94verify(g3(5) == 9)
95def 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"
102
103test_closure(g, None, TypeError) # invalid closure
104test_closure(g, (1,), TypeError) # non-cell in closure
105test_closure(g, (1, 1), ValueError) # closure is wrong size
106test_closure(f, g.func_closure, ValueError) # no closure needed
107
108print 'new.code()'
109# bogus test of new.code()
110# Note: Jython will never have new.code()
111if hasattr(new, 'code'):
112 def f(a): pass
113
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
129
130 d = new.code(argcount, nlocals, stacksize, flags, codestring,
131 constants, names, varnames, filename, name,
132 firstlineno, lnotab, freevars, cellvars)
133
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)
138
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"
147
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"
156
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"
165
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!")
173
174 if verbose:
175 print d