2001-03-21 16:33:04 -04:00
|
|
|
"""Test cases for traceback module"""
|
|
|
|
|
|
|
|
import unittest
|
2002-11-06 07:45:15 -04:00
|
|
|
from test.test_support import run_unittest, is_jython
|
2001-03-21 16:33:04 -04:00
|
|
|
|
|
|
|
import traceback
|
|
|
|
|
|
|
|
class TracebackCases(unittest.TestCase):
|
|
|
|
# For now, a very minimal set of tests. I want to be sure that
|
|
|
|
# formatting of SyntaxErrors works based on changes for 2.1.
|
|
|
|
|
|
|
|
def get_exception_format(self, func, exc):
|
|
|
|
try:
|
|
|
|
func()
|
|
|
|
except exc, value:
|
|
|
|
return traceback.format_exception_only(exc, value)
|
|
|
|
else:
|
|
|
|
raise ValueError, "call did not raise exception"
|
2001-04-08 04:44:07 -03:00
|
|
|
|
2001-03-21 16:33:04 -04:00
|
|
|
def syntax_error_with_caret(self):
|
|
|
|
compile("def fact(x):\n\treturn x!\n", "?", "exec")
|
|
|
|
|
|
|
|
def syntax_error_without_caret(self):
|
|
|
|
# XXX why doesn't compile raise the same traceback?
|
2002-07-30 20:27:12 -03:00
|
|
|
import test.badsyntax_nocaret
|
2001-03-21 16:33:04 -04:00
|
|
|
|
|
|
|
def test_caret(self):
|
|
|
|
err = self.get_exception_format(self.syntax_error_with_caret,
|
|
|
|
SyntaxError)
|
|
|
|
self.assert_(len(err) == 4)
|
|
|
|
self.assert_("^" in err[2]) # third line has caret
|
|
|
|
self.assert_(err[1].strip() == "return x!")
|
2001-04-08 04:44:07 -03:00
|
|
|
|
2001-03-21 16:33:04 -04:00
|
|
|
def test_nocaret(self):
|
2002-11-06 07:45:15 -04:00
|
|
|
if is_jython:
|
|
|
|
# jython adds a caret in this case (why shouldn't it?)
|
|
|
|
return
|
2001-03-21 16:33:04 -04:00
|
|
|
err = self.get_exception_format(self.syntax_error_without_caret,
|
|
|
|
SyntaxError)
|
|
|
|
self.assert_(len(err) == 3)
|
|
|
|
self.assert_(err[1].strip() == "[x for x in x] = x")
|
|
|
|
|
2004-10-26 06:16:42 -03:00
|
|
|
def test_bug737473(self):
|
2004-10-26 23:33:15 -03:00
|
|
|
import sys, os, tempfile, time
|
|
|
|
|
2004-10-26 06:16:42 -03:00
|
|
|
savedpath = sys.path[:]
|
|
|
|
testdir = tempfile.mkdtemp()
|
|
|
|
try:
|
|
|
|
sys.path.insert(0, testdir)
|
|
|
|
testfile = os.path.join(testdir, 'test_bug737473.py')
|
|
|
|
print >> open(testfile, 'w'), """\
|
|
|
|
def test():
|
|
|
|
raise ValueError"""
|
|
|
|
|
2004-10-27 00:12:05 -03:00
|
|
|
# if this test runs fast, test_bug737473.py will have same mtime
|
|
|
|
# even if it's rewrited and it'll not reloaded. so adjust mtime
|
|
|
|
# of original to past.
|
2004-10-26 06:16:42 -03:00
|
|
|
if hasattr(os, 'utime'):
|
2004-10-26 23:33:15 -03:00
|
|
|
past = time.time() - 3
|
|
|
|
os.utime(testfile, (past, past))
|
2004-10-26 06:16:42 -03:00
|
|
|
else:
|
2004-10-27 00:12:05 -03:00
|
|
|
time.sleep(3)
|
2004-10-26 06:16:42 -03:00
|
|
|
|
|
|
|
if 'test_bug737473' in sys.modules:
|
|
|
|
del sys.modules['test_bug737473']
|
|
|
|
import test_bug737473
|
|
|
|
|
|
|
|
try:
|
|
|
|
test_bug737473.test()
|
|
|
|
except ValueError:
|
2004-10-26 23:43:25 -03:00
|
|
|
# this loads source code to linecache
|
2004-10-26 06:16:42 -03:00
|
|
|
traceback.extract_tb(sys.exc_traceback)
|
|
|
|
|
|
|
|
print >> open(testfile, 'w'), """\
|
|
|
|
def test():
|
|
|
|
raise NotImplementedError"""
|
|
|
|
reload(test_bug737473)
|
|
|
|
try:
|
|
|
|
test_bug737473.test()
|
|
|
|
except NotImplementedError:
|
|
|
|
src = traceback.extract_tb(sys.exc_traceback)[-1][-1]
|
|
|
|
self.failUnlessEqual(src, 'raise NotImplementedError')
|
|
|
|
finally:
|
|
|
|
sys.path[:] = savedpath
|
|
|
|
for f in os.listdir(testdir):
|
|
|
|
os.unlink(os.path.join(testdir, f))
|
|
|
|
os.rmdir(testdir)
|
2001-09-20 18:33:42 -03:00
|
|
|
|
|
|
|
def test_main():
|
|
|
|
run_unittest(TracebackCases)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
test_main()
|