| 
									
										
										
										
											2006-01-23 07:49:36 +00:00
										 |  |  | from test import test_support | 
					
						
							| 
									
										
										
										
											2001-02-02 18:24:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-25 03:15:49 +00:00
										 |  |  | import symtable | 
					
						
							| 
									
										
										
										
											2006-01-23 07:49:36 +00:00
										 |  |  | import unittest | 
					
						
							| 
									
										
										
										
											2001-02-02 18:24:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-02-09 22:57:10 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-20 14:27:21 +00:00
										 |  |  | ## XXX | 
					
						
							|  |  |  | ## Test disabled because symtable module needs to be rewritten for new compiler | 
					
						
							| 
									
										
										
										
											2003-07-15 20:24:27 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-20 14:27:21 +00:00
										 |  |  | ##vereq(symbols[0].name, "global") | 
					
						
							|  |  |  | ##vereq(len([ste for ste in symbols.values() if ste.name == "f"]), 1) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ### Bug tickler: SyntaxError file name correct whether error raised | 
					
						
							|  |  |  | ### while parsing or building symbol table. | 
					
						
							|  |  |  | ##def checkfilename(brokencode): | 
					
						
							|  |  |  | ##    try: | 
					
						
							|  |  |  | ##        _symtable.symtable(brokencode, "spam", "exec") | 
					
						
							|  |  |  | ##    except SyntaxError, e: | 
					
						
							|  |  |  | ##        vereq(e.filename, "spam") | 
					
						
							|  |  |  | ##    else: | 
					
						
							|  |  |  | ##        raise TestFailed("no SyntaxError for %r" % (brokencode,)) | 
					
						
							|  |  |  | ##checkfilename("def f(x): foo)(")  # parse-time | 
					
						
							|  |  |  | ##checkfilename("def f(x): global x")  # symtable-build-time | 
					
						
							| 
									
										
										
										
											2006-01-23 07:49:36 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | class SymtableTest(unittest.TestCase): | 
					
						
							|  |  |  |     def test_invalid_args(self): | 
					
						
							|  |  |  |         self.assertRaises(TypeError, symtable.symtable, "42") | 
					
						
							|  |  |  |         self.assertRaises(ValueError, symtable.symtable, "42", "?", "") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_eval(self): | 
					
						
							|  |  |  |         symbols = symtable.symtable("42", "?", "eval") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_single(self): | 
					
						
							|  |  |  |         symbols = symtable.symtable("42", "?", "single") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_exec(self): | 
					
						
							|  |  |  |         symbols = symtable.symtable("def f(x): return x", "?", "exec") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def test_main(): | 
					
						
							|  |  |  |     test_support.run_unittest(SymtableTest) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if __name__ == '__main__': | 
					
						
							|  |  |  |     test_main() |