Current Path: > > usr > lib64 > python2.7 > unittest > test >
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__init__.py | File | 514 bytes | April 10 2024 04:58:35. | |
__init__.pyc | File | 906 bytes | April 10 2024 04:58:46. | |
__init__.pyo | File | 906 bytes | April 10 2024 04:58:46. | |
dummy.py | File | 50 bytes | April 10 2024 04:58:35. | |
dummy.pyc | File | 130 bytes | April 10 2024 04:58:46. | |
dummy.pyo | File | 130 bytes | April 10 2024 04:58:46. | |
support.py | File | 3471 bytes | April 10 2024 04:58:35. | |
support.pyc | File | 6004 bytes | April 10 2024 04:58:46. | |
support.pyo | File | 6004 bytes | April 10 2024 04:58:46. | |
test_assertions.py | File | 11961 bytes | April 10 2024 04:58:35. | |
test_assertions.pyc | File | 13434 bytes | April 10 2024 04:58:46. | |
test_assertions.pyo | File | 13434 bytes | April 10 2024 04:58:46. | |
test_break.py | File | 9641 bytes | April 10 2024 04:58:35. | |
test_break.pyc | File | 10143 bytes | April 10 2024 04:58:46. | |
test_break.pyo | File | 10143 bytes | April 10 2024 04:58:46. | |
test_case.py | File | 45719 bytes | April 10 2024 04:58:35. | |
test_case.pyc | File | 47022 bytes | April 10 2024 04:58:46. | |
test_case.pyo | File | 47022 bytes | April 10 2024 04:58:46. | |
test_discovery.py | File | 14313 bytes | April 10 2024 04:58:35. | |
test_discovery.pyc | File | 17667 bytes | April 10 2024 04:58:46. | |
test_discovery.pyo | File | 17667 bytes | April 10 2024 04:58:46. | |
test_functiontestcase.py | File | 5547 bytes | April 10 2024 04:58:36. | |
test_functiontestcase.pyc | File | 6087 bytes | April 10 2024 04:58:46. | |
test_functiontestcase.pyo | File | 6087 bytes | April 10 2024 04:58:46. | |
test_loader.py | File | 49866 bytes | April 10 2024 04:58:36. | |
test_loader.pyc | File | 49820 bytes | April 10 2024 04:58:46. | |
test_loader.pyo | File | 49820 bytes | April 10 2024 04:58:46. | |
test_program.py | File | 7576 bytes | April 10 2024 04:58:36. | |
test_program.pyc | File | 10473 bytes | April 10 2024 04:58:46. | |
test_program.pyo | File | 10415 bytes | April 10 2024 04:58:44. | |
test_result.py | File | 19056 bytes | April 10 2024 04:58:36. | |
test_result.pyc | File | 21399 bytes | April 10 2024 04:58:46. | |
test_result.pyo | File | 21399 bytes | April 10 2024 04:58:46. | |
test_runner.py | File | 8609 bytes | April 10 2024 04:58:36. | |
test_runner.pyc | File | 14125 bytes | April 10 2024 04:58:46. | |
test_runner.pyo | File | 14125 bytes | April 10 2024 04:58:46. | |
test_setups.py | File | 16460 bytes | April 10 2024 04:58:36. | |
test_setups.pyc | File | 29173 bytes | April 10 2024 04:58:46. | |
test_setups.pyo | File | 29173 bytes | April 10 2024 04:58:46. | |
test_skipping.py | File | 5744 bytes | April 10 2024 04:58:36. | |
test_skipping.pyc | File | 9601 bytes | April 10 2024 04:58:46. | |
test_skipping.pyo | File | 9601 bytes | April 10 2024 04:58:46. | |
test_suite.py | File | 12082 bytes | April 10 2024 04:58:36. | |
test_suite.pyc | File | 15502 bytes | April 10 2024 04:58:46. | |
test_suite.pyo | File | 15502 bytes | April 10 2024 04:58:46. |
import gc import os import sys import signal import weakref from cStringIO import StringIO import unittest @unittest.skipUnless(hasattr(os, 'kill'), "Test requires os.kill") @unittest.skipIf(sys.platform =="win32", "Test cannot run on Windows") @unittest.skipIf(sys.platform == 'freebsd6', "Test kills regrtest on freebsd6 " "if threads have been used") class TestBreak(unittest.TestCase): int_handler = None def setUp(self): self._default_handler = signal.getsignal(signal.SIGINT) if self.int_handler is not None: signal.signal(signal.SIGINT, self.int_handler) def tearDown(self): signal.signal(signal.SIGINT, self._default_handler) unittest.signals._results = weakref.WeakKeyDictionary() unittest.signals._interrupt_handler = None def testInstallHandler(self): default_handler = signal.getsignal(signal.SIGINT) unittest.installHandler() self.assertNotEqual(signal.getsignal(signal.SIGINT), default_handler) try: pid = os.getpid() os.kill(pid, signal.SIGINT) except KeyboardInterrupt: self.fail("KeyboardInterrupt not handled") self.assertTrue(unittest.signals._interrupt_handler.called) def testRegisterResult(self): result = unittest.TestResult() unittest.registerResult(result) for ref in unittest.signals._results: if ref is result: break elif ref is not result: self.fail("odd object in result set") else: self.fail("result not found") def testInterruptCaught(self): default_handler = signal.getsignal(signal.SIGINT) result = unittest.TestResult() unittest.installHandler() unittest.registerResult(result) self.assertNotEqual(signal.getsignal(signal.SIGINT), default_handler) def test(result): pid = os.getpid() os.kill(pid, signal.SIGINT) result.breakCaught = True self.assertTrue(result.shouldStop) try: test(result) except KeyboardInterrupt: self.fail("KeyboardInterrupt not handled") self.assertTrue(result.breakCaught) def testSecondInterrupt(self): # Can't use skipIf decorator because the signal handler may have # been changed after defining this method. if signal.getsignal(signal.SIGINT) == signal.SIG_IGN: self.skipTest("test requires SIGINT to not be ignored") result = unittest.TestResult() unittest.installHandler() unittest.registerResult(result) def test(result): pid = os.getpid() os.kill(pid, signal.SIGINT) result.breakCaught = True self.assertTrue(result.shouldStop) os.kill(pid, signal.SIGINT) self.fail("Second KeyboardInterrupt not raised") try: test(result) except KeyboardInterrupt: pass else: self.fail("Second KeyboardInterrupt not raised") self.assertTrue(result.breakCaught) def testTwoResults(self): unittest.installHandler() result = unittest.TestResult() unittest.registerResult(result) new_handler = signal.getsignal(signal.SIGINT) result2 = unittest.TestResult() unittest.registerResult(result2) self.assertEqual(signal.getsignal(signal.SIGINT), new_handler) result3 = unittest.TestResult() def test(result): pid = os.getpid() os.kill(pid, signal.SIGINT) try: test(result) except KeyboardInterrupt: self.fail("KeyboardInterrupt not handled") self.assertTrue(result.shouldStop) self.assertTrue(result2.shouldStop) self.assertFalse(result3.shouldStop) def testHandlerReplacedButCalled(self): # Can't use skipIf decorator because the signal handler may have # been changed after defining this method. if signal.getsignal(signal.SIGINT) == signal.SIG_IGN: self.skipTest("test requires SIGINT to not be ignored") # If our handler has been replaced (is no longer installed) but is # called by the *new* handler, then it isn't safe to delay the # SIGINT and we should immediately delegate to the default handler unittest.installHandler() handler = signal.getsignal(signal.SIGINT) def new_handler(frame, signum): handler(frame, signum) signal.signal(signal.SIGINT, new_handler) try: pid = os.getpid() os.kill(pid, signal.SIGINT) except KeyboardInterrupt: pass else: self.fail("replaced but delegated handler doesn't raise interrupt") def testRunner(self): # Creating a TextTestRunner with the appropriate argument should # register the TextTestResult it creates runner = unittest.TextTestRunner(stream=StringIO()) result = runner.run(unittest.TestSuite()) self.assertIn(result, unittest.signals._results) def testWeakReferences(self): # Calling registerResult on a result should not keep it alive result = unittest.TestResult() unittest.registerResult(result) ref = weakref.ref(result) del result # For non-reference counting implementations gc.collect();gc.collect() self.assertIsNone(ref()) def testRemoveResult(self): result = unittest.TestResult() unittest.registerResult(result) unittest.installHandler() self.assertTrue(unittest.removeResult(result)) # Should this raise an error instead? self.assertFalse(unittest.removeResult(unittest.TestResult())) try: pid = os.getpid() os.kill(pid, signal.SIGINT) except KeyboardInterrupt: pass self.assertFalse(result.shouldStop) def testMainInstallsHandler(self): failfast = object() test = object() verbosity = object() result = object() default_handler = signal.getsignal(signal.SIGINT) class FakeRunner(object): initArgs = [] runArgs = [] def __init__(self, *args, **kwargs): self.initArgs.append((args, kwargs)) def run(self, test): self.runArgs.append(test) return result class Program(unittest.TestProgram): def __init__(self, catchbreak): self.exit = False self.verbosity = verbosity self.failfast = failfast self.catchbreak = catchbreak self.testRunner = FakeRunner self.test = test self.result = None p = Program(False) p.runTests() self.assertEqual(FakeRunner.initArgs, [((), {'buffer': None, 'verbosity': verbosity, 'failfast': failfast})]) self.assertEqual(FakeRunner.runArgs, [test]) self.assertEqual(p.result, result) self.assertEqual(signal.getsignal(signal.SIGINT), default_handler) FakeRunner.initArgs = [] FakeRunner.runArgs = [] p = Program(True) p.runTests() self.assertEqual(FakeRunner.initArgs, [((), {'buffer': None, 'verbosity': verbosity, 'failfast': failfast})]) self.assertEqual(FakeRunner.runArgs, [test]) self.assertEqual(p.result, result) self.assertNotEqual(signal.getsignal(signal.SIGINT), default_handler) def testRemoveHandler(self): default_handler = signal.getsignal(signal.SIGINT) unittest.installHandler() unittest.removeHandler() self.assertEqual(signal.getsignal(signal.SIGINT), default_handler) # check that calling removeHandler multiple times has no ill-effect unittest.removeHandler() self.assertEqual(signal.getsignal(signal.SIGINT), default_handler) def testRemoveHandlerAsDecorator(self): default_handler = signal.getsignal(signal.SIGINT) unittest.installHandler() @unittest.removeHandler def test(): self.assertEqual(signal.getsignal(signal.SIGINT), default_handler) test() self.assertNotEqual(signal.getsignal(signal.SIGINT), default_handler) @unittest.skipUnless(hasattr(os, 'kill'), "Test requires os.kill") @unittest.skipIf(sys.platform =="win32", "Test cannot run on Windows") @unittest.skipIf(sys.platform == 'freebsd6', "Test kills regrtest on freebsd6 " "if threads have been used") class TestBreakDefaultIntHandler(TestBreak): int_handler = signal.default_int_handler @unittest.skipUnless(hasattr(os, 'kill'), "Test requires os.kill") @unittest.skipIf(sys.platform =="win32", "Test cannot run on Windows") @unittest.skipIf(sys.platform == 'freebsd6', "Test kills regrtest on freebsd6 " "if threads have been used") class TestBreakSignalIgnored(TestBreak): int_handler = signal.SIG_IGN @unittest.skipUnless(hasattr(os, 'kill'), "Test requires os.kill") @unittest.skipIf(sys.platform =="win32", "Test cannot run on Windows") @unittest.skipIf(sys.platform == 'freebsd6', "Test kills regrtest on freebsd6 " "if threads have been used") class TestBreakSignalDefault(TestBreak): int_handler = signal.SIG_DFL
SILENT KILLER Tool