2002-07-16 21:34:26 -03:00
|
|
|
import sys
|
2004-11-04 00:31:30 -04:00
|
|
|
import unittest
|
|
|
|
import StringIO
|
2000-06-28 12:07:31 -03:00
|
|
|
import atexit
|
2004-11-04 00:31:30 -04:00
|
|
|
from test import test_support
|
2000-06-28 12:07:31 -03:00
|
|
|
|
2004-11-04 00:31:30 -04:00
|
|
|
class TestCase(unittest.TestCase):
|
2008-10-06 22:55:20 -03:00
|
|
|
def setUp(self):
|
2004-11-04 00:31:30 -04:00
|
|
|
s = StringIO.StringIO()
|
2008-10-07 12:03:40 -03:00
|
|
|
self.save_stdout = sys.stdout
|
|
|
|
self.save_stderr = sys.stderr
|
2008-10-06 22:55:20 -03:00
|
|
|
sys.stdout = sys.stderr = self.subst_io = s
|
|
|
|
self.save_handlers = atexit._exithandlers
|
2004-11-04 00:31:30 -04:00
|
|
|
atexit._exithandlers = []
|
2008-10-06 22:55:20 -03:00
|
|
|
|
|
|
|
def tearDown(self):
|
2008-10-07 12:03:40 -03:00
|
|
|
sys.stdout = self.save_stdout
|
|
|
|
sys.stderr = self.save_stderr
|
2008-10-06 22:55:20 -03:00
|
|
|
atexit._exithandlers = self.save_handlers
|
|
|
|
|
|
|
|
def test_args(self):
|
|
|
|
atexit.register(self.h1)
|
|
|
|
atexit.register(self.h4)
|
|
|
|
atexit.register(self.h4, 4, kw="abc")
|
|
|
|
atexit._run_exitfuncs()
|
|
|
|
self.assertEqual(self.subst_io.getvalue(),
|
|
|
|
"h4 (4,) {'kw': 'abc'}\nh4 () {}\nh1\n")
|
2000-06-28 12:07:31 -03:00
|
|
|
|
2008-09-23 17:43:09 -03:00
|
|
|
def test_badargs(self):
|
2008-10-06 22:55:20 -03:00
|
|
|
atexit.register(lambda: 1, 0, 0, (x for x in (1,2)), 0, 0)
|
|
|
|
self.assertRaises(TypeError, atexit._run_exitfuncs)
|
2008-09-23 17:43:09 -03:00
|
|
|
|
2004-11-04 00:31:30 -04:00
|
|
|
def test_order(self):
|
2008-10-06 22:55:20 -03:00
|
|
|
atexit.register(self.h1)
|
|
|
|
atexit.register(self.h2)
|
|
|
|
atexit.register(self.h3)
|
|
|
|
atexit._run_exitfuncs()
|
|
|
|
self.assertEqual(self.subst_io.getvalue(), "h3\nh2\nh1\n")
|
2000-06-28 12:07:31 -03:00
|
|
|
|
2004-11-04 00:31:30 -04:00
|
|
|
def test_sys_override(self):
|
|
|
|
# be sure a preset sys.exitfunc is handled properly
|
|
|
|
exfunc = sys.exitfunc
|
|
|
|
sys.exitfunc = self.h1
|
|
|
|
reload(atexit)
|
|
|
|
try:
|
|
|
|
atexit.register(self.h2)
|
|
|
|
atexit._run_exitfuncs()
|
|
|
|
finally:
|
|
|
|
sys.exitfunc = exfunc
|
2008-10-06 22:55:20 -03:00
|
|
|
self.assertEqual(self.subst_io.getvalue(), "h2\nh1\n")
|
2002-07-16 16:30:59 -03:00
|
|
|
|
2004-11-04 00:31:30 -04:00
|
|
|
def test_raise(self):
|
2008-10-06 22:55:20 -03:00
|
|
|
atexit.register(self.raise1)
|
|
|
|
atexit.register(self.raise2)
|
|
|
|
self.assertRaises(TypeError, atexit._run_exitfuncs)
|
2004-11-07 00:52:29 -04:00
|
|
|
|
2004-11-04 00:31:30 -04:00
|
|
|
### helpers
|
|
|
|
def h1(self):
|
|
|
|
print "h1"
|
2002-07-16 16:30:59 -03:00
|
|
|
|
2004-11-04 00:31:30 -04:00
|
|
|
def h2(self):
|
|
|
|
print "h2"
|
2002-07-16 16:30:59 -03:00
|
|
|
|
2004-11-04 00:31:30 -04:00
|
|
|
def h3(self):
|
|
|
|
print "h3"
|
2002-07-16 16:30:59 -03:00
|
|
|
|
2004-11-04 00:31:30 -04:00
|
|
|
def h4(self, *args, **kwargs):
|
|
|
|
print "h4", args, kwargs
|
2002-07-16 16:30:59 -03:00
|
|
|
|
2004-11-04 00:31:30 -04:00
|
|
|
def raise1(self):
|
|
|
|
raise TypeError
|
2002-07-16 16:30:59 -03:00
|
|
|
|
2004-11-04 00:31:30 -04:00
|
|
|
def raise2(self):
|
|
|
|
raise SystemError
|
2002-07-16 16:30:59 -03:00
|
|
|
|
2004-11-04 00:31:30 -04:00
|
|
|
def test_main():
|
|
|
|
test_support.run_unittest(TestCase)
|
2000-06-28 12:07:31 -03:00
|
|
|
|
|
|
|
|
2004-11-04 00:31:30 -04:00
|
|
|
if __name__ == "__main__":
|
|
|
|
test_main()
|