Ejemplo n.º 1
0
    def test__call__raise_errors_false_callsall_returns_exceptions(self):
        calls = []

        def raise_exception1():
            calls.append('1')
            raise Exception('woo')

        def raise_exception2():
            calls.append('2')
            raise Exception('woo')

        call = CallMany()
        call.push(raise_exception2)
        call.push(raise_exception1)
        exceptions = call(raise_errors=False)
        self.assertEqual(['1', '2'], calls)
        # There should be two exceptions
        self.assertEqual(2, len(exceptions))
        # They should be a sys.exc_info tuple.
        self.assertEqual(3, len(exceptions[0]))
        type, value, tb = exceptions[0]
        self.assertEqual(Exception, type)
        self.assertIsInstance(value, Exception)
        self.assertEqual(('woo', ), value.args)
        self.assertIsInstance(tb, types.TracebackType)
Ejemplo n.º 2
0
 def test_exit_runs_all_raises_first_exception(self):
     calls = []
     def raise_exception1():
         calls.append('1')
         raise Exception('woo')
     def raise_exception2():
         calls.append('2')
         raise Exception('hoo')
     call = CallMany()
     call.push(raise_exception2)
     call.push(raise_exception1)
     call.__enter__()
     exc = self.assertRaises(Exception, call.__exit__, None, None, None)
     self.assertEqual(('woo',), exc.args[0][1].args)
     self.assertEqual(('hoo',), exc.args[1][1].args)
     self.assertEqual(['1', '2'], calls)
Ejemplo n.º 3
0
    def _clear_cleanups(self):
        """Clean the cleanup queue without running them.

        This is a helper that can be useful for subclasses which define
        reset(): they may perform something equivalent to a typical cleanUp
        without actually calling the cleanups.

        This also clears the details dict.
        """
        self._cleanups = CallMany()
        self._details = {}
        self._detail_sources = []
Ejemplo n.º 4
0
 def test__call__raise_errors_false_callsall_returns_exceptions(self):
     calls = []
     def raise_exception1():
         calls.append('1')
         raise Exception('woo')
     def raise_exception2():
         calls.append('2')
         raise Exception('woo')
     call = CallMany()
     call.push(raise_exception2)
     call.push(raise_exception1)
     exceptions = call(raise_errors=False)
     self.assertEqual(['1', '2'], calls)
     # There should be two exceptions
     self.assertEqual(2, len(exceptions))
     # They should be a sys.exc_info tuple.
     self.assertEqual(3, len(exceptions[0]))
     type, value, tb = exceptions[0]
     self.assertEqual(Exception, type)
     self.assertIsInstance(value, Exception)
     self.assertEqual(('woo',), value.args)
     self.assertIsInstance(tb, types.TracebackType)
 def test_exit_runs_all_raises_first_exception(self):
     calls = []
     def raise_exception1():
         calls.append('1')
         raise Exception('woo')
     def raise_exception2():
         calls.append('2')
         raise Exception('hoo')
     call = CallMany()
     call.push(raise_exception2)
     call.push(raise_exception1)
     call.__enter__()
     exc = self.assertRaises(Exception, call.__exit__, None, None, None)
     self.assertEqual(('woo',), exc.args[0][1].args)
     self.assertEqual(('hoo',), exc.args[1][1].args)
     self.assertEqual(['1', '2'], calls)
Ejemplo n.º 6
0
 def test_exit_propogates_exceptions(self):
     call = CallMany()
     call.__enter__()
     self.assertEqual(False, call.__exit__(None, None, None))
 def test_exit_propagates_exceptions(self):
     call = CallMany()
     call.__enter__()
     self.assertEqual(False, call.__exit__(None, None, None))