home *** CD-ROM | disk | FTP | other *** search
/ Freelog 125 / Freelog_MarsAvril2015_No125.iso / Bureautique / LibreOffice / LibreOffice_4.3.5_Win_x86.msi / case.py < prev    next >
Text File  |  2014-12-12  |  49KB  |  1,215 lines

  1. """Test case implementation"""
  2.  
  3. import sys
  4. import functools
  5. import difflib
  6. import pprint
  7. import re
  8. import warnings
  9. import collections
  10.  
  11. from . import result
  12. from .util import (strclass, safe_repr, _count_diff_all_purpose,
  13.                    _count_diff_hashable)
  14.  
  15. __unittest = True
  16.  
  17.  
  18. DIFF_OMITTED = ('\nDiff is %s characters long. '
  19.                  'Set self.maxDiff to None to see it.')
  20.  
  21. class SkipTest(Exception):
  22.     """
  23.     Raise this exception in a test to skip it.
  24.  
  25.     Usually you can use TestCase.skipTest() or one of the skipping decorators
  26.     instead of raising this directly.
  27.     """
  28.  
  29. class _ExpectedFailure(Exception):
  30.     """
  31.     Raise this when a test is expected to fail.
  32.  
  33.     This is an implementation detail.
  34.     """
  35.  
  36.     def __init__(self, exc_info):
  37.         super(_ExpectedFailure, self).__init__()
  38.         self.exc_info = exc_info
  39.  
  40. class _UnexpectedSuccess(Exception):
  41.     """
  42.     The test was supposed to fail, but it didn't!
  43.     """
  44.  
  45.  
  46. class _Outcome(object):
  47.     def __init__(self):
  48.         self.success = True
  49.         self.skipped = None
  50.         self.unexpectedSuccess = None
  51.         self.expectedFailure = None
  52.         self.errors = []
  53.         self.failures = []
  54.  
  55.  
  56. def _id(obj):
  57.     return obj
  58.  
  59. def skip(reason):
  60.     """
  61.     Unconditionally skip a test.
  62.     """
  63.     def decorator(test_item):
  64.         if not isinstance(test_item, type):
  65.             @functools.wraps(test_item)
  66.             def skip_wrapper(*args, **kwargs):
  67.                 raise SkipTest(reason)
  68.             test_item = skip_wrapper
  69.  
  70.         test_item.__unittest_skip__ = True
  71.         test_item.__unittest_skip_why__ = reason
  72.         return test_item
  73.     return decorator
  74.  
  75. def skipIf(condition, reason):
  76.     """
  77.     Skip a test if the condition is true.
  78.     """
  79.     if condition:
  80.         return skip(reason)
  81.     return _id
  82.  
  83. def skipUnless(condition, reason):
  84.     """
  85.     Skip a test unless the condition is true.
  86.     """
  87.     if not condition:
  88.         return skip(reason)
  89.     return _id
  90.  
  91.  
  92. def expectedFailure(func):
  93.     @functools.wraps(func)
  94.     def wrapper(*args, **kwargs):
  95.         try:
  96.             func(*args, **kwargs)
  97.         except Exception:
  98.             raise _ExpectedFailure(sys.exc_info())
  99.         raise _UnexpectedSuccess
  100.     return wrapper
  101.  
  102.  
  103. class _AssertRaisesBaseContext(object):
  104.  
  105.     def __init__(self, expected, test_case, callable_obj=None,
  106.                  expected_regex=None):
  107.         self.expected = expected
  108.         self.test_case = test_case
  109.         if callable_obj is not None:
  110.             try:
  111.                 self.obj_name = callable_obj.__name__
  112.             except AttributeError:
  113.                 self.obj_name = str(callable_obj)
  114.         else:
  115.             self.obj_name = None
  116.         if isinstance(expected_regex, (bytes, str)):
  117.             expected_regex = re.compile(expected_regex)
  118.         self.expected_regex = expected_regex
  119.         self.msg = None
  120.  
  121.     def _raiseFailure(self, standardMsg):
  122.         msg = self.test_case._formatMessage(self.msg, standardMsg)
  123.         raise self.test_case.failureException(msg)
  124.  
  125.     def handle(self, name, callable_obj, args, kwargs):
  126.         """
  127.         If callable_obj is None, assertRaises/Warns is being used as a
  128.         context manager, so check for a 'msg' kwarg and return self.
  129.         If callable_obj is not None, call it passing args and kwargs.
  130.         """
  131.         if callable_obj is None:
  132.             self.msg = kwargs.pop('msg', None)
  133.             return self
  134.         with self:
  135.             callable_obj(*args, **kwargs)
  136.  
  137.  
  138.  
  139. class _AssertRaisesContext(_AssertRaisesBaseContext):
  140.     """A context manager used to implement TestCase.assertRaises* methods."""
  141.  
  142.     def __enter__(self):
  143.         return self
  144.  
  145.     def __exit__(self, exc_type, exc_value, tb):
  146.         if exc_type is None:
  147.             try:
  148.                 exc_name = self.expected.__name__
  149.             except AttributeError:
  150.                 exc_name = str(self.expected)
  151.             if self.obj_name:
  152.                 self._raiseFailure("{} not raised by {}".format(exc_name,
  153.                                                                 self.obj_name))
  154.             else:
  155.                 self._raiseFailure("{} not raised".format(exc_name))
  156.         if not issubclass(exc_type, self.expected):
  157.             # let unexpected exceptions pass through
  158.             return False
  159.         # store exception, without traceback, for later retrieval
  160.         self.exception = exc_value.with_traceback(None)
  161.         if self.expected_regex is None:
  162.             return True
  163.  
  164.         expected_regex = self.expected_regex
  165.         if not expected_regex.search(str(exc_value)):
  166.             self._raiseFailure('"{}" does not match "{}"'.format(
  167.                      expected_regex.pattern, str(exc_value)))
  168.         return True
  169.  
  170.  
  171. class _AssertWarnsContext(_AssertRaisesBaseContext):
  172.     """A context manager used to implement TestCase.assertWarns* methods."""
  173.  
  174.     def __enter__(self):
  175.         # The __warningregistry__'s need to be in a pristine state for tests
  176.         # to work properly.
  177.         for v in sys.modules.values():
  178.             if getattr(v, '__warningregistry__', None):
  179.                 v.__warningregistry__ = {}
  180.         self.warnings_manager = warnings.catch_warnings(record=True)
  181.         self.warnings = self.warnings_manager.__enter__()
  182.         warnings.simplefilter("always", self.expected)
  183.         return self
  184.  
  185.     def __exit__(self, exc_type, exc_value, tb):
  186.         self.warnings_manager.__exit__(exc_type, exc_value, tb)
  187.         if exc_type is not None:
  188.             # let unexpected exceptions pass through
  189.             return
  190.         try:
  191.             exc_name = self.expected.__name__
  192.         except AttributeError:
  193.             exc_name = str(self.expected)
  194.         first_matching = None
  195.         for m in self.warnings:
  196.             w = m.message
  197.             if not isinstance(w, self.expected):
  198.                 continue
  199.             if first_matching is None:
  200.                 first_matching = w
  201.             if (self.expected_regex is not None and
  202.                 not self.expected_regex.search(str(w))):
  203.                 continue
  204.             # store warning for later retrieval
  205.             self.warning = w
  206.             self.filename = m.filename
  207.             self.lineno = m.lineno
  208.             return
  209.         # Now we simply try to choose a helpful failure message
  210.         if first_matching is not None:
  211.             self._raiseFailure('"{}" does not match "{}"'.format(
  212.                      self.expected_regex.pattern, str(first_matching)))
  213.         if self.obj_name:
  214.             self._raiseFailure("{} not triggered by {}".format(exc_name,
  215.                                                                self.obj_name))
  216.         else:
  217.             self._raiseFailure("{} not triggered".format(exc_name))
  218.  
  219.  
  220. class TestCase(object):
  221.     """A class whose instances are single test cases.
  222.  
  223.     By default, the test code itself should be placed in a method named
  224.     'runTest'.
  225.  
  226.     If the fixture may be used for many test cases, create as
  227.     many test methods as are needed. When instantiating such a TestCase
  228.     subclass, specify in the constructor arguments the name of the test method
  229.     that the instance is to execute.
  230.  
  231.     Test authors should subclass TestCase for their own tests. Construction
  232.     and deconstruction of the test's environment ('fixture') can be
  233.     implemented by overriding the 'setUp' and 'tearDown' methods respectively.
  234.  
  235.     If it is necessary to override the __init__ method, the base class
  236.     __init__ method must always be called. It is important that subclasses
  237.     should not change the signature of their __init__ method, since instances
  238.     of the classes are instantiated automatically by parts of the framework
  239.     in order to be run.
  240.  
  241.     When subclassing TestCase, you can set these attributes:
  242.     * failureException: determines which exception will be raised when
  243.         the instance's assertion methods fail; test methods raising this
  244.         exception will be deemed to have 'failed' rather than 'errored'.
  245.     * longMessage: determines whether long messages (including repr of
  246.         objects used in assert methods) will be printed on failure in *addition*
  247.         to any explicit message passed.
  248.     * maxDiff: sets the maximum length of a diff in failure messages
  249.         by assert methods using difflib. It is looked up as an instance
  250.         attribute so can be configured by individual tests if required.
  251.     """
  252.  
  253.     failureException = AssertionError
  254.  
  255.     longMessage = True
  256.  
  257.     maxDiff = 80*8
  258.  
  259.     # If a string is longer than _diffThreshold, use normal comparison instead
  260.     # of difflib.  See #11763.
  261.     _diffThreshold = 2**16
  262.  
  263.     # Attribute used by TestSuite for classSetUp
  264.  
  265.     _classSetupFailed = False
  266.  
  267.     def __init__(self, methodName='runTest'):
  268.         """Create an instance of the class that will use the named test
  269.            method when executed. Raises a ValueError if the instance does
  270.            not have a method with the specified name.
  271.         """
  272.         self._testMethodName = methodName
  273.         self._outcomeForDoCleanups = None
  274.         self._testMethodDoc = 'No test'
  275.         try:
  276.             testMethod = getattr(self, methodName)
  277.         except AttributeError:
  278.             if methodName != 'runTest':
  279.                 # we allow instantiation with no explicit method name
  280.                 # but not an *incorrect* or missing method name
  281.                 raise ValueError("no such test method in %s: %s" %
  282.                       (self.__class__, methodName))
  283.         else:
  284.             self._testMethodDoc = testMethod.__doc__
  285.         self._cleanups = []
  286.  
  287.         # Map types to custom assertEqual functions that will compare
  288.         # instances of said type in more detail to generate a more useful
  289.         # error message.
  290.         self._type_equality_funcs = {}
  291.         self.addTypeEqualityFunc(dict, 'assertDictEqual')
  292.         self.addTypeEqualityFunc(list, 'assertListEqual')
  293.         self.addTypeEqualityFunc(tuple, 'assertTupleEqual')
  294.         self.addTypeEqualityFunc(set, 'assertSetEqual')
  295.         self.addTypeEqualityFunc(frozenset, 'assertSetEqual')
  296.         self.addTypeEqualityFunc(str, 'assertMultiLineEqual')
  297.  
  298.     def addTypeEqualityFunc(self, typeobj, function):
  299.         """Add a type specific assertEqual style function to compare a type.
  300.  
  301.         This method is for use by TestCase subclasses that need to register
  302.         their own type equality functions to provide nicer error messages.
  303.  
  304.         Args:
  305.             typeobj: The data type to call this function on when both values
  306.                     are of the same type in assertEqual().
  307.             function: The callable taking two arguments and an optional
  308.                     msg= argument that raises self.failureException with a
  309.                     useful error message when the two arguments are not equal.
  310.         """
  311.         self._type_equality_funcs[typeobj] = function
  312.  
  313.     def addCleanup(self, function, *args, **kwargs):
  314.         """Add a function, with arguments, to be called when the test is
  315.         completed. Functions added are called on a LIFO basis and are
  316.         called after tearDown on test failure or success.
  317.  
  318.         Cleanup items are called even if setUp fails (unlike tearDown)."""
  319.         self._cleanups.append((function, args, kwargs))
  320.  
  321.     def setUp(self):
  322.         "Hook method for setting up the test fixture before exercising it."
  323.         pass
  324.  
  325.     def tearDown(self):
  326.         "Hook method for deconstructing the test fixture after testing it."
  327.         pass
  328.  
  329.     @classmethod
  330.     def setUpClass(cls):
  331.         "Hook method for setting up class fixture before running tests in the class."
  332.  
  333.     @classmethod
  334.     def tearDownClass(cls):
  335.         "Hook method for deconstructing the class fixture after running all tests in the class."
  336.  
  337.     def countTestCases(self):
  338.         return 1
  339.  
  340.     def defaultTestResult(self):
  341.         return result.TestResult()
  342.  
  343.     def shortDescription(self):
  344.         """Returns a one-line description of the test, or None if no
  345.         description has been provided.
  346.  
  347.         The default implementation of this method returns the first line of
  348.         the specified test method's docstring.
  349.         """
  350.         doc = self._testMethodDoc
  351.         return doc and doc.split("\n")[0].strip() or None
  352.  
  353.  
  354.     def id(self):
  355.         return "%s.%s" % (strclass(self.__class__), self._testMethodName)
  356.  
  357.     def __eq__(self, other):
  358.         if type(self) is not type(other):
  359.             return NotImplemented
  360.  
  361.         return self._testMethodName == other._testMethodName
  362.  
  363.     def __hash__(self):
  364.         return hash((type(self), self._testMethodName))
  365.  
  366.     def __str__(self):
  367.         return "%s (%s)" % (self._testMethodName, strclass(self.__class__))
  368.  
  369.     def __repr__(self):
  370.         return "<%s testMethod=%s>" % \
  371.                (strclass(self.__class__), self._testMethodName)
  372.  
  373.     def _addSkip(self, result, reason):
  374.         addSkip = getattr(result, 'addSkip', None)
  375.         if addSkip is not None:
  376.             addSkip(self, reason)
  377.         else:
  378.             warnings.warn("TestResult has no addSkip method, skips not reported",
  379.                           RuntimeWarning, 2)
  380.             result.addSuccess(self)
  381.  
  382.     def _executeTestPart(self, function, outcome, isTest=False):
  383.         try:
  384.             function()
  385.         except KeyboardInterrupt:
  386.             raise
  387.         except SkipTest as e:
  388.             outcome.success = False
  389.             outcome.skipped = str(e)
  390.         except _UnexpectedSuccess:
  391.             exc_info = sys.exc_info()
  392.             outcome.success = False
  393.             if isTest:
  394.                 outcome.unexpectedSuccess = exc_info
  395.             else:
  396.                 outcome.errors.append(exc_info)
  397.         except _ExpectedFailure:
  398.             outcome.success = False
  399.             exc_info = sys.exc_info()
  400.             if isTest:
  401.                 outcome.expectedFailure = exc_info
  402.             else:
  403.                 outcome.errors.append(exc_info)
  404.         except self.failureException:
  405.             outcome.success = False
  406.             outcome.failures.append(sys.exc_info())
  407.             exc_info = sys.exc_info()
  408.         except:
  409.             outcome.success = False
  410.             outcome.errors.append(sys.exc_info())
  411.  
  412.     def run(self, result=None):
  413.         orig_result = result
  414.         if result is None:
  415.             result = self.defaultTestResult()
  416.             startTestRun = getattr(result, 'startTestRun', None)
  417.             if startTestRun is not None:
  418.                 startTestRun()
  419.  
  420.         result.startTest(self)
  421.  
  422.         testMethod = getattr(self, self._testMethodName)
  423.         if (getattr(self.__class__, "__unittest_skip__", False) or
  424.             getattr(testMethod, "__unittest_skip__", False)):
  425.             # If the class or method was skipped.
  426.             try:
  427.                 skip_why = (getattr(self.__class__, '__unittest_skip_why__', '')
  428.                             or getattr(testMethod, '__unittest_skip_why__', ''))
  429.                 self._addSkip(result, skip_why)
  430.             finally:
  431.                 result.stopTest(self)
  432.             return
  433.         try:
  434.             outcome = _Outcome()
  435.             self._outcomeForDoCleanups = outcome
  436.  
  437.             self._executeTestPart(self.setUp, outcome)
  438.             if outcome.success:
  439.                 self._executeTestPart(testMethod, outcome, isTest=True)
  440.                 self._executeTestPart(self.tearDown, outcome)
  441.  
  442.             self.doCleanups()
  443.             if outcome.success:
  444.                 result.addSuccess(self)
  445.             else:
  446.                 if outcome.skipped is not None:
  447.                     self._addSkip(result, outcome.skipped)
  448.                 for exc_info in outcome.errors:
  449.                     result.addError(self, exc_info)
  450.                 for exc_info in outcome.failures:
  451.                     result.addFailure(self, exc_info)
  452.                 if outcome.unexpectedSuccess is not None:
  453.                     addUnexpectedSuccess = getattr(result, 'addUnexpectedSuccess', None)
  454.                     if addUnexpectedSuccess is not None:
  455.                         addUnexpectedSuccess(self)
  456.                     else:
  457.                         warnings.warn("TestResult has no addUnexpectedSuccess method, reporting as failures",
  458.                                       RuntimeWarning)
  459.                         result.addFailure(self, outcome.unexpectedSuccess)
  460.  
  461.                 if outcome.expectedFailure is not None:
  462.                     addExpectedFailure = getattr(result, 'addExpectedFailure', None)
  463.                     if addExpectedFailure is not None:
  464.                         addExpectedFailure(self, outcome.expectedFailure)
  465.                     else:
  466.                         warnings.warn("TestResult has no addExpectedFailure method, reporting as passes",
  467.                                       RuntimeWarning)
  468.                         result.addSuccess(self)
  469.             return result
  470.         finally:
  471.             result.stopTest(self)
  472.             if orig_result is None:
  473.                 stopTestRun = getattr(result, 'stopTestRun', None)
  474.                 if stopTestRun is not None:
  475.                     stopTestRun()
  476.  
  477.     def doCleanups(self):
  478.         """Execute all cleanup functions. Normally called for you after
  479.         tearDown."""
  480.         outcome = self._outcomeForDoCleanups or _Outcome()
  481.         while self._cleanups:
  482.             function, args, kwargs = self._cleanups.pop()
  483.             part = lambda: function(*args, **kwargs)
  484.             self._executeTestPart(part, outcome)
  485.  
  486.         # return this for backwards compatibility
  487.         # even though we no longer us it internally
  488.         return outcome.success
  489.  
  490.     def __call__(self, *args, **kwds):
  491.         return self.run(*args, **kwds)
  492.  
  493.     def debug(self):
  494.         """Run the test without collecting errors in a TestResult"""
  495.         self.setUp()
  496.         getattr(self, self._testMethodName)()
  497.         self.tearDown()
  498.         while self._cleanups:
  499.             function, args, kwargs = self._cleanups.pop(-1)
  500.             function(*args, **kwargs)
  501.  
  502.     def skipTest(self, reason):
  503.         """Skip this test."""
  504.         raise SkipTest(reason)
  505.  
  506.     def fail(self, msg=None):
  507.         """Fail immediately, with the given message."""
  508.         raise self.failureException(msg)
  509.  
  510.     def assertFalse(self, expr, msg=None):
  511.         """Check that the expression is false."""
  512.         if expr:
  513.             msg = self._formatMessage(msg, "%s is not false" % safe_repr(expr))
  514.             raise self.failureException(msg)
  515.  
  516.     def assertTrue(self, expr, msg=None):
  517.         """Check that the expression is true."""
  518.         if not expr:
  519.             msg = self._formatMessage(msg, "%s is not true" % safe_repr(expr))
  520.             raise self.failureException(msg)
  521.  
  522.     def _formatMessage(self, msg, standardMsg):
  523.         """Honour the longMessage attribute when generating failure messages.
  524.         If longMessage is False this means:
  525.         * Use only an explicit message if it is provided
  526.         * Otherwise use the standard message for the assert
  527.  
  528.         If longMessage is True:
  529.         * Use the standard message
  530.         * If an explicit message is provided, plus ' : ' and the explicit message
  531.         """
  532.         if not self.longMessage:
  533.             return msg or standardMsg
  534.         if msg is None:
  535.             return standardMsg
  536.         try:
  537.             # don't switch to '{}' formatting in Python 2.X
  538.             # it changes the way unicode input is handled
  539.             return '%s : %s' % (standardMsg, msg)
  540.         except UnicodeDecodeError:
  541.             return  '%s : %s' % (safe_repr(standardMsg), safe_repr(msg))
  542.  
  543.     def assertRaises(self, excClass, callableObj=None, *args, **kwargs):
  544.         """Fail unless an exception of class excClass is raised
  545.            by callableObj when invoked with arguments args and keyword
  546.            arguments kwargs. If a different type of exception is
  547.            raised, it will not be caught, and the test case will be
  548.            deemed to have suffered an error, exactly as for an
  549.            unexpected exception.
  550.  
  551.            If called with callableObj omitted or None, will return a
  552.            context object used like this::
  553.  
  554.                 with self.assertRaises(SomeException):
  555.                     do_something()
  556.  
  557.            An optional keyword argument 'msg' can be provided when assertRaises
  558.            is used as a context object.
  559.  
  560.            The context manager keeps a reference to the exception as
  561.            the 'exception' attribute. This allows you to inspect the
  562.            exception after the assertion::
  563.  
  564.                with self.assertRaises(SomeException) as cm:
  565.                    do_something()
  566.                the_exception = cm.exception
  567.                self.assertEqual(the_exception.error_code, 3)
  568.         """
  569.         context = _AssertRaisesContext(excClass, self, callableObj)
  570.         return context.handle('assertRaises', callableObj, args, kwargs)
  571.  
  572.     def assertWarns(self, expected_warning, callable_obj=None, *args, **kwargs):
  573.         """Fail unless a warning of class warnClass is triggered
  574.            by callable_obj when invoked with arguments args and keyword
  575.            arguments kwargs.  If a different type of warning is
  576.            triggered, it will not be handled: depending on the other
  577.            warning filtering rules in effect, it might be silenced, printed
  578.            out, or raised as an exception.
  579.  
  580.            If called with callable_obj omitted or None, will return a
  581.            context object used like this::
  582.  
  583.                 with self.assertWarns(SomeWarning):
  584.                     do_something()
  585.  
  586.            An optional keyword argument 'msg' can be provided when assertWarns
  587.            is used as a context object.
  588.  
  589.            The context manager keeps a reference to the first matching
  590.            warning as the 'warning' attribute; similarly, the 'filename'
  591.            and 'lineno' attributes give you information about the line
  592.            of Python code from which the warning was triggered.
  593.            This allows you to inspect the warning after the assertion::
  594.  
  595.                with self.assertWarns(SomeWarning) as cm:
  596.                    do_something()
  597.                the_warning = cm.warning
  598.                self.assertEqual(the_warning.some_attribute, 147)
  599.         """
  600.         context = _AssertWarnsContext(expected_warning, self, callable_obj)
  601.         return context.handle('assertWarns', callable_obj, args, kwargs)
  602.  
  603.     def _getAssertEqualityFunc(self, first, second):
  604.         """Get a detailed comparison function for the types of the two args.
  605.  
  606.         Returns: A callable accepting (first, second, msg=None) that will
  607.         raise a failure exception if first != second with a useful human
  608.         readable error message for those types.
  609.         """
  610.         #
  611.         # NOTE(gregory.p.smith): I considered isinstance(first, type(second))
  612.         # and vice versa.  I opted for the conservative approach in case
  613.         # subclasses are not intended to be compared in detail to their super
  614.         # class instances using a type equality func.  This means testing
  615.         # subtypes won't automagically use the detailed comparison.  Callers
  616.         # should use their type specific assertSpamEqual method to compare
  617.         # subclasses if the detailed comparison is desired and appropriate.
  618.         # See the discussion in http://bugs.python.org/issue2578.
  619.         #
  620.         if type(first) is type(second):
  621.             asserter = self._type_equality_funcs.get(type(first))
  622.             if asserter is not None:
  623.                 if isinstance(asserter, str):
  624.                     asserter = getattr(self, asserter)
  625.                 return asserter
  626.  
  627.         return self._baseAssertEqual
  628.  
  629.     def _baseAssertEqual(self, first, second, msg=None):
  630.         """The default assertEqual implementation, not type specific."""
  631.         if not first == second:
  632.             standardMsg = '%s != %s' % (safe_repr(first), safe_repr(second))
  633.             msg = self._formatMessage(msg, standardMsg)
  634.             raise self.failureException(msg)
  635.  
  636.     def assertEqual(self, first, second, msg=None):
  637.         """Fail if the two objects are unequal as determined by the '=='
  638.            operator.
  639.         """
  640.         assertion_func = self._getAssertEqualityFunc(first, second)
  641.         assertion_func(first, second, msg=msg)
  642.  
  643.     def assertNotEqual(self, first, second, msg=None):
  644.         """Fail if the two objects are equal as determined by the '!='
  645.            operator.
  646.         """
  647.         if not first != second:
  648.             msg = self._formatMessage(msg, '%s == %s' % (safe_repr(first),
  649.                                                           safe_repr(second)))
  650.             raise self.failureException(msg)
  651.  
  652.     def assertAlmostEqual(self, first, second, places=None, msg=None,
  653.                           delta=None):
  654.         """Fail if the two objects are unequal as determined by their
  655.            difference rounded to the given number of decimal places
  656.            (default 7) and comparing to zero, or by comparing that the
  657.            between the two objects is more than the given delta.
  658.  
  659.            Note that decimal places (from zero) are usually not the same
  660.            as significant digits (measured from the most signficant digit).
  661.  
  662.            If the two objects compare equal then they will automatically
  663.            compare almost equal.
  664.         """
  665.         if first == second:
  666.             # shortcut
  667.             return
  668.         if delta is not None and places is not None:
  669.             raise TypeError("specify delta or places not both")
  670.  
  671.         if delta is not None:
  672.             if abs(first - second) <= delta:
  673.                 return
  674.  
  675.             standardMsg = '%s != %s within %s delta' % (safe_repr(first),
  676.                                                         safe_repr(second),
  677.                                                         safe_repr(delta))
  678.         else:
  679.             if places is None:
  680.                 places = 7
  681.  
  682.             if round(abs(second-first), places) == 0:
  683.                 return
  684.  
  685.             standardMsg = '%s != %s within %r places' % (safe_repr(first),
  686.                                                           safe_repr(second),
  687.                                                           places)
  688.         msg = self._formatMessage(msg, standardMsg)
  689.         raise self.failureException(msg)
  690.  
  691.     def assertNotAlmostEqual(self, first, second, places=None, msg=None,
  692.                              delta=None):
  693.         """Fail if the two objects are equal as determined by their
  694.            difference rounded to the given number of decimal places
  695.            (default 7) and comparing to zero, or by comparing that the
  696.            between the two objects is less than the given delta.
  697.  
  698.            Note that decimal places (from zero) are usually not the same
  699.            as significant digits (measured from the most signficant digit).
  700.  
  701.            Objects that are equal automatically fail.
  702.         """
  703.         if delta is not None and places is not None:
  704.             raise TypeError("specify delta or places not both")
  705.         if delta is not None:
  706.             if not (first == second) and abs(first - second) > delta:
  707.                 return
  708.             standardMsg = '%s == %s within %s delta' % (safe_repr(first),
  709.                                                         safe_repr(second),
  710.                                                         safe_repr(delta))
  711.         else:
  712.             if places is None:
  713.                 places = 7
  714.             if not (first == second) and round(abs(second-first), places) != 0:
  715.                 return
  716.             standardMsg = '%s == %s within %r places' % (safe_repr(first),
  717.                                                          safe_repr(second),
  718.                                                          places)
  719.  
  720.         msg = self._formatMessage(msg, standardMsg)
  721.         raise self.failureException(msg)
  722.  
  723.  
  724.     def assertSequenceEqual(self, seq1, seq2, msg=None, seq_type=None):
  725.         """An equality assertion for ordered sequences (like lists and tuples).
  726.  
  727.         For the purposes of this function, a valid ordered sequence type is one
  728.         which can be indexed, has a length, and has an equality operator.
  729.  
  730.         Args:
  731.             seq1: The first sequence to compare.
  732.             seq2: The second sequence to compare.
  733.             seq_type: The expected datatype of the sequences, or None if no
  734.                     datatype should be enforced.
  735.             msg: Optional message to use on failure instead of a list of
  736.                     differences.
  737.         """
  738.         if seq_type is not None:
  739.             seq_type_name = seq_type.__name__
  740.             if not isinstance(seq1, seq_type):
  741.                 raise self.failureException('First sequence is not a %s: %s'
  742.                                         % (seq_type_name, safe_repr(seq1)))
  743.             if not isinstance(seq2, seq_type):
  744.                 raise self.failureException('Second sequence is not a %s: %s'
  745.                                         % (seq_type_name, safe_repr(seq2)))
  746.         else:
  747.             seq_type_name = "sequence"
  748.  
  749.         differing = None
  750.         try:
  751.             len1 = len(seq1)
  752.         except (TypeError, NotImplementedError):
  753.             differing = 'First %s has no length.    Non-sequence?' % (
  754.                     seq_type_name)
  755.  
  756.         if differing is None:
  757.             try:
  758.                 len2 = len(seq2)
  759.             except (TypeError, NotImplementedError):
  760.                 differing = 'Second %s has no length.    Non-sequence?' % (
  761.                         seq_type_name)
  762.  
  763.         if differing is None:
  764.             if seq1 == seq2:
  765.                 return
  766.  
  767.             seq1_repr = safe_repr(seq1)
  768.             seq2_repr = safe_repr(seq2)
  769.             if len(seq1_repr) > 30:
  770.                 seq1_repr = seq1_repr[:30] + '...'
  771.             if len(seq2_repr) > 30:
  772.                 seq2_repr = seq2_repr[:30] + '...'
  773.             elements = (seq_type_name.capitalize(), seq1_repr, seq2_repr)
  774.             differing = '%ss differ: %s != %s\n' % elements
  775.  
  776.             for i in range(min(len1, len2)):
  777.                 try:
  778.                     item1 = seq1[i]
  779.                 except (TypeError, IndexError, NotImplementedError):
  780.                     differing += ('\nUnable to index element %d of first %s\n' %
  781.                                  (i, seq_type_name))
  782.                     break
  783.  
  784.                 try:
  785.                     item2 = seq2[i]
  786.                 except (TypeError, IndexError, NotImplementedError):
  787.                     differing += ('\nUnable to index element %d of second %s\n' %
  788.                                  (i, seq_type_name))
  789.                     break
  790.  
  791.                 if item1 != item2:
  792.                     differing += ('\nFirst differing element %d:\n%s\n%s\n' %
  793.                                  (i, item1, item2))
  794.                     break
  795.             else:
  796.                 if (len1 == len2 and seq_type is None and
  797.                     type(seq1) != type(seq2)):
  798.                     # The sequences are the same, but have differing types.
  799.                     return
  800.  
  801.             if len1 > len2:
  802.                 differing += ('\nFirst %s contains %d additional '
  803.                              'elements.\n' % (seq_type_name, len1 - len2))
  804.                 try:
  805.                     differing += ('First extra element %d:\n%s\n' %
  806.                                   (len2, seq1[len2]))
  807.                 except (TypeError, IndexError, NotImplementedError):
  808.                     differing += ('Unable to index element %d '
  809.                                   'of first %s\n' % (len2, seq_type_name))
  810.             elif len1 < len2:
  811.                 differing += ('\nSecond %s contains %d additional '
  812.                              'elements.\n' % (seq_type_name, len2 - len1))
  813.                 try:
  814.                     differing += ('First extra element %d:\n%s\n' %
  815.                                   (len1, seq2[len1]))
  816.                 except (TypeError, IndexError, NotImplementedError):
  817.                     differing += ('Unable to index element %d '
  818.                                   'of second %s\n' % (len1, seq_type_name))
  819.         standardMsg = differing
  820.         diffMsg = '\n' + '\n'.join(
  821.             difflib.ndiff(pprint.pformat(seq1).splitlines(),
  822.                           pprint.pformat(seq2).splitlines()))
  823.  
  824.         standardMsg = self._truncateMessage(standardMsg, diffMsg)
  825.         msg = self._formatMessage(msg, standardMsg)
  826.         self.fail(msg)
  827.  
  828.     def _truncateMessage(self, message, diff):
  829.         max_diff = self.maxDiff
  830.         if max_diff is None or len(diff) <= max_diff:
  831.             return message + diff
  832.         return message + (DIFF_OMITTED % len(diff))
  833.  
  834.     def assertListEqual(self, list1, list2, msg=None):
  835.         """A list-specific equality assertion.
  836.  
  837.         Args:
  838.             list1: The first list to compare.
  839.             list2: The second list to compare.
  840.             msg: Optional message to use on failure instead of a list of
  841.                     differences.
  842.  
  843.         """
  844.         self.assertSequenceEqual(list1, list2, msg, seq_type=list)
  845.  
  846.     def assertTupleEqual(self, tuple1, tuple2, msg=None):
  847.         """A tuple-specific equality assertion.
  848.  
  849.         Args:
  850.             tuple1: The first tuple to compare.
  851.             tuple2: The second tuple to compare.
  852.             msg: Optional message to use on failure instead of a list of
  853.                     differences.
  854.         """
  855.         self.assertSequenceEqual(tuple1, tuple2, msg, seq_type=tuple)
  856.  
  857.     def assertSetEqual(self, set1, set2, msg=None):
  858.         """A set-specific equality assertion.
  859.  
  860.         Args:
  861.             set1: The first set to compare.
  862.             set2: The second set to compare.
  863.             msg: Optional message to use on failure instead of a list of
  864.                     differences.
  865.  
  866.         assertSetEqual uses ducktyping to support different types of sets, and
  867.         is optimized for sets specifically (parameters must support a
  868.         difference method).
  869.         """
  870.         try:
  871.             difference1 = set1.difference(set2)
  872.         except TypeError as e:
  873.             self.fail('invalid type when attempting set difference: %s' % e)
  874.         except AttributeError as e:
  875.             self.fail('first argument does not support set difference: %s' % e)
  876.  
  877.         try:
  878.             difference2 = set2.difference(set1)
  879.         except TypeError as e:
  880.             self.fail('invalid type when attempting set difference: %s' % e)
  881.         except AttributeError as e:
  882.             self.fail('second argument does not support set difference: %s' % e)
  883.  
  884.         if not (difference1 or difference2):
  885.             return
  886.  
  887.         lines = []
  888.         if difference1:
  889.             lines.append('Items in the first set but not the second:')
  890.             for item in difference1:
  891.                 lines.append(repr(item))
  892.         if difference2:
  893.             lines.append('Items in the second set but not the first:')
  894.             for item in difference2:
  895.                 lines.append(repr(item))
  896.  
  897.         standardMsg = '\n'.join(lines)
  898.         self.fail(self._formatMessage(msg, standardMsg))
  899.  
  900.     def assertIn(self, member, container, msg=None):
  901.         """Just like self.assertTrue(a in b), but with a nicer default message."""
  902.         if member not in container:
  903.             standardMsg = '%s not found in %s' % (safe_repr(member),
  904.                                                   safe_repr(container))
  905.             self.fail(self._formatMessage(msg, standardMsg))
  906.  
  907.     def assertNotIn(self, member, container, msg=None):
  908.         """Just like self.assertTrue(a not in b), but with a nicer default message."""
  909.         if member in container:
  910.             standardMsg = '%s unexpectedly found in %s' % (safe_repr(member),
  911.                                                         safe_repr(container))
  912.             self.fail(self._formatMessage(msg, standardMsg))
  913.  
  914.     def assertIs(self, expr1, expr2, msg=None):
  915.         """Just like self.assertTrue(a is b), but with a nicer default message."""
  916.         if expr1 is not expr2:
  917.             standardMsg = '%s is not %s' % (safe_repr(expr1),
  918.                                              safe_repr(expr2))
  919.             self.fail(self._formatMessage(msg, standardMsg))
  920.  
  921.     def assertIsNot(self, expr1, expr2, msg=None):
  922.         """Just like self.assertTrue(a is not b), but with a nicer default message."""
  923.         if expr1 is expr2:
  924.             standardMsg = 'unexpectedly identical: %s' % (safe_repr(expr1),)
  925.             self.fail(self._formatMessage(msg, standardMsg))
  926.  
  927.     def assertDictEqual(self, d1, d2, msg=None):
  928.         self.assertIsInstance(d1, dict, 'First argument is not a dictionary')
  929.         self.assertIsInstance(d2, dict, 'Second argument is not a dictionary')
  930.  
  931.         if d1 != d2:
  932.             standardMsg = '%s != %s' % (safe_repr(d1, True), safe_repr(d2, True))
  933.             diff = ('\n' + '\n'.join(difflib.ndiff(
  934.                            pprint.pformat(d1).splitlines(),
  935.                            pprint.pformat(d2).splitlines())))
  936.             standardMsg = self._truncateMessage(standardMsg, diff)
  937.             self.fail(self._formatMessage(msg, standardMsg))
  938.  
  939.     def assertDictContainsSubset(self, subset, dictionary, msg=None):
  940.         """Checks whether dictionary is a superset of subset."""
  941.         warnings.warn('assertDictContainsSubset is deprecated',
  942.                       DeprecationWarning)
  943.         missing = []
  944.         mismatched = []
  945.         for key, value in subset.items():
  946.             if key not in dictionary:
  947.                 missing.append(key)
  948.             elif value != dictionary[key]:
  949.                 mismatched.append('%s, expected: %s, actual: %s' %
  950.                                   (safe_repr(key), safe_repr(value),
  951.                                    safe_repr(dictionary[key])))
  952.  
  953.         if not (missing or mismatched):
  954.             return
  955.  
  956.         standardMsg = ''
  957.         if missing:
  958.             standardMsg = 'Missing: %s' % ','.join(safe_repr(m) for m in
  959.                                                     missing)
  960.         if mismatched:
  961.             if standardMsg:
  962.                 standardMsg += '; '
  963.             standardMsg += 'Mismatched values: %s' % ','.join(mismatched)
  964.  
  965.         self.fail(self._formatMessage(msg, standardMsg))
  966.  
  967.  
  968.     def assertCountEqual(self, first, second, msg=None):
  969.         """An unordered sequence comparison asserting that the same elements,
  970.         regardless of order.  If the same element occurs more than once,
  971.         it verifies that the elements occur the same number of times.
  972.  
  973.             self.assertEqual(Counter(list(first)),
  974.                              Counter(list(second)))
  975.  
  976.          Example:
  977.             - [0, 1, 1] and [1, 0, 1] compare equal.
  978.             - [0, 0, 1] and [0, 1] compare unequal.
  979.  
  980.         """
  981.         first_seq, second_seq = list(first), list(second)
  982.         try:
  983.             first = collections.Counter(first_seq)
  984.             second = collections.Counter(second_seq)
  985.         except TypeError:
  986.             # Handle case with unhashable elements
  987.             differences = _count_diff_all_purpose(first_seq, second_seq)
  988.         else:
  989.             if first == second:
  990.                 return
  991.             differences = _count_diff_hashable(first_seq, second_seq)
  992.  
  993.         if differences:
  994.             standardMsg = 'Element counts were not equal:\n'
  995.             lines = ['First has %d, Second has %d:  %r' % diff for diff in differences]
  996.             diffMsg = '\n'.join(lines)
  997.             standardMsg = self._truncateMessage(standardMsg, diffMsg)
  998.             msg = self._formatMessage(msg, standardMsg)
  999.             self.fail(msg)
  1000.  
  1001.     def assertMultiLineEqual(self, first, second, msg=None):
  1002.         """Assert that two multi-line strings are equal."""
  1003.         self.assertIsInstance(first, str, 'First argument is not a string')
  1004.         self.assertIsInstance(second, str, 'Second argument is not a string')
  1005.  
  1006.         if first != second:
  1007.             # don't use difflib if the strings are too long
  1008.             if (len(first) > self._diffThreshold or
  1009.                 len(second) > self._diffThreshold):
  1010.                 self._baseAssertEqual(first, second, msg)
  1011.             firstlines = first.splitlines(keepends=True)
  1012.             secondlines = second.splitlines(keepends=True)
  1013.             if len(firstlines) == 1 and first.strip('\r\n') == first:
  1014.                 firstlines = [first + '\n']
  1015.                 secondlines = [second + '\n']
  1016.             standardMsg = '%s != %s' % (safe_repr(first, True),
  1017.                                         safe_repr(second, True))
  1018.             diff = '\n' + ''.join(difflib.ndiff(firstlines, secondlines))
  1019.             standardMsg = self._truncateMessage(standardMsg, diff)
  1020.             self.fail(self._formatMessage(msg, standardMsg))
  1021.  
  1022.     def assertLess(self, a, b, msg=None):
  1023.         """Just like self.assertTrue(a < b), but with a nicer default message."""
  1024.         if not a < b:
  1025.             standardMsg = '%s not less than %s' % (safe_repr(a), safe_repr(b))
  1026.             self.fail(self._formatMessage(msg, standardMsg))
  1027.  
  1028.     def assertLessEqual(self, a, b, msg=None):
  1029.         """Just like self.assertTrue(a <= b), but with a nicer default message."""
  1030.         if not a <= b:
  1031.             standardMsg = '%s not less than or equal to %s' % (safe_repr(a), safe_repr(b))
  1032.             self.fail(self._formatMessage(msg, standardMsg))
  1033.  
  1034.     def assertGreater(self, a, b, msg=None):
  1035.         """Just like self.assertTrue(a > b), but with a nicer default message."""
  1036.         if not a > b:
  1037.             standardMsg = '%s not greater than %s' % (safe_repr(a), safe_repr(b))
  1038.             self.fail(self._formatMessage(msg, standardMsg))
  1039.  
  1040.     def assertGreaterEqual(self, a, b, msg=None):
  1041.         """Just like self.assertTrue(a >= b), but with a nicer default message."""
  1042.         if not a >= b:
  1043.             standardMsg = '%s not greater than or equal to %s' % (safe_repr(a), safe_repr(b))
  1044.             self.fail(self._formatMessage(msg, standardMsg))
  1045.  
  1046.     def assertIsNone(self, obj, msg=None):
  1047.         """Same as self.assertTrue(obj is None), with a nicer default message."""
  1048.         if obj is not None:
  1049.             standardMsg = '%s is not None' % (safe_repr(obj),)
  1050.             self.fail(self._formatMessage(msg, standardMsg))
  1051.  
  1052.     def assertIsNotNone(self, obj, msg=None):
  1053.         """Included for symmetry with assertIsNone."""
  1054.         if obj is None:
  1055.             standardMsg = 'unexpectedly None'
  1056.             self.fail(self._formatMessage(msg, standardMsg))
  1057.  
  1058.     def assertIsInstance(self, obj, cls, msg=None):
  1059.         """Same as self.assertTrue(isinstance(obj, cls)), with a nicer
  1060.         default message."""
  1061.         if not isinstance(obj, cls):
  1062.             standardMsg = '%s is not an instance of %r' % (safe_repr(obj), cls)
  1063.             self.fail(self._formatMessage(msg, standardMsg))
  1064.  
  1065.     def assertNotIsInstance(self, obj, cls, msg=None):
  1066.         """Included for symmetry with assertIsInstance."""
  1067.         if isinstance(obj, cls):
  1068.             standardMsg = '%s is an instance of %r' % (safe_repr(obj), cls)
  1069.             self.fail(self._formatMessage(msg, standardMsg))
  1070.  
  1071.     def assertRaisesRegex(self, expected_exception, expected_regex,
  1072.                           callable_obj=None, *args, **kwargs):
  1073.         """Asserts that the message in a raised exception matches a regex.
  1074.  
  1075.         Args:
  1076.             expected_exception: Exception class expected to be raised.
  1077.             expected_regex: Regex (re pattern object or string) expected
  1078.                     to be found in error message.
  1079.             callable_obj: Function to be called.
  1080.             msg: Optional message used in case of failure. Can only be used
  1081.                     when assertRaisesRegex is used as a context manager.
  1082.             args: Extra args.
  1083.             kwargs: Extra kwargs.
  1084.         """
  1085.         context = _AssertRaisesContext(expected_exception, self, callable_obj,
  1086.                                        expected_regex)
  1087.  
  1088.         return context.handle('assertRaisesRegex', callable_obj, args, kwargs)
  1089.  
  1090.     def assertWarnsRegex(self, expected_warning, expected_regex,
  1091.                          callable_obj=None, *args, **kwargs):
  1092.         """Asserts that the message in a triggered warning matches a regexp.
  1093.         Basic functioning is similar to assertWarns() with the addition
  1094.         that only warnings whose messages also match the regular expression
  1095.         are considered successful matches.
  1096.  
  1097.         Args:
  1098.             expected_warning: Warning class expected to be triggered.
  1099.             expected_regex: Regex (re pattern object or string) expected
  1100.                     to be found in error message.
  1101.             callable_obj: Function to be called.
  1102.             msg: Optional message used in case of failure. Can only be used
  1103.                     when assertWarnsRegex is used as a context manager.
  1104.             args: Extra args.
  1105.             kwargs: Extra kwargs.
  1106.         """
  1107.         context = _AssertWarnsContext(expected_warning, self, callable_obj,
  1108.                                       expected_regex)
  1109.         return context.handle('assertWarnsRegex', callable_obj, args, kwargs)
  1110.  
  1111.     def assertRegex(self, text, expected_regex, msg=None):
  1112.         """Fail the test unless the text matches the regular expression."""
  1113.         if isinstance(expected_regex, (str, bytes)):
  1114.             assert expected_regex, "expected_regex must not be empty."
  1115.             expected_regex = re.compile(expected_regex)
  1116.         if not expected_regex.search(text):
  1117.             msg = msg or "Regex didn't match"
  1118.             msg = '%s: %r not found in %r' % (msg, expected_regex.pattern, text)
  1119.             raise self.failureException(msg)
  1120.  
  1121.     def assertNotRegex(self, text, unexpected_regex, msg=None):
  1122.         """Fail the test if the text matches the regular expression."""
  1123.         if isinstance(unexpected_regex, (str, bytes)):
  1124.             unexpected_regex = re.compile(unexpected_regex)
  1125.         match = unexpected_regex.search(text)
  1126.         if match:
  1127.             msg = msg or "Regex matched"
  1128.             msg = '%s: %r matches %r in %r' % (msg,
  1129.                                                text[match.start():match.end()],
  1130.                                                unexpected_regex.pattern,
  1131.                                                text)
  1132.             raise self.failureException(msg)
  1133.  
  1134.  
  1135.     def _deprecate(original_func):
  1136.         def deprecated_func(*args, **kwargs):
  1137.             warnings.warn(
  1138.                 'Please use {0} instead.'.format(original_func.__name__),
  1139.                 DeprecationWarning, 2)
  1140.             return original_func(*args, **kwargs)
  1141.         return deprecated_func
  1142.  
  1143.     # see #9424
  1144.     failUnlessEqual = assertEquals = _deprecate(assertEqual)
  1145.     failIfEqual = assertNotEquals = _deprecate(assertNotEqual)
  1146.     failUnlessAlmostEqual = assertAlmostEquals = _deprecate(assertAlmostEqual)
  1147.     failIfAlmostEqual = assertNotAlmostEquals = _deprecate(assertNotAlmostEqual)
  1148.     failUnless = assert_ = _deprecate(assertTrue)
  1149.     failUnlessRaises = _deprecate(assertRaises)
  1150.     failIf = _deprecate(assertFalse)
  1151.     assertRaisesRegexp = _deprecate(assertRaisesRegex)
  1152.     assertRegexpMatches = _deprecate(assertRegex)
  1153.  
  1154.  
  1155.  
  1156. class FunctionTestCase(TestCase):
  1157.     """A test case that wraps a test function.
  1158.  
  1159.     This is useful for slipping pre-existing test functions into the
  1160.     unittest framework. Optionally, set-up and tidy-up functions can be
  1161.     supplied. As with TestCase, the tidy-up ('tearDown') function will
  1162.     always be called if the set-up ('setUp') function ran successfully.
  1163.     """
  1164.  
  1165.     def __init__(self, testFunc, setUp=None, tearDown=None, description=None):
  1166.         super(FunctionTestCase, self).__init__()
  1167.         self._setUpFunc = setUp
  1168.         self._tearDownFunc = tearDown
  1169.         self._testFunc = testFunc
  1170.         self._description = description
  1171.  
  1172.     def setUp(self):
  1173.         if self._setUpFunc is not None:
  1174.             self._setUpFunc()
  1175.  
  1176.     def tearDown(self):
  1177.         if self._tearDownFunc is not None:
  1178.             self._tearDownFunc()
  1179.  
  1180.     def runTest(self):
  1181.         self._testFunc()
  1182.  
  1183.     def id(self):
  1184.         return self._testFunc.__name__
  1185.  
  1186.     def __eq__(self, other):
  1187.         if not isinstance(other, self.__class__):
  1188.             return NotImplemented
  1189.  
  1190.         return self._setUpFunc == other._setUpFunc and \
  1191.                self._tearDownFunc == other._tearDownFunc and \
  1192.                self._testFunc == other._testFunc and \
  1193.                self._description == other._description
  1194.  
  1195.     def __ne__(self, other):
  1196.         return not self == other
  1197.  
  1198.     def __hash__(self):
  1199.         return hash((type(self), self._setUpFunc, self._tearDownFunc,
  1200.                      self._testFunc, self._description))
  1201.  
  1202.     def __str__(self):
  1203.         return "%s (%s)" % (strclass(self.__class__),
  1204.                             self._testFunc.__name__)
  1205.  
  1206.     def __repr__(self):
  1207.         return "<%s tec=%s>" % (strclass(self.__class__),
  1208.                                      self._testFunc)
  1209.  
  1210.     def shortDescription(self):
  1211.         if self._description is not None:
  1212.             return self._description
  1213.         doc = self._testFunc.__doc__
  1214.         return doc and doc.split("\n")[0].strip() or None
  1215.