~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/__init__.py

  • Committer: Jelmer Vernooij
  • Date: 2005-10-02 13:14:12 UTC
  • mto: This revision was merged to the branch mainline in revision 1414.
  • Revision ID: jelmer@samba.org-20051002131412-c44d6cd10336ac94
Add test for empty commit messages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
17
17
 
18
 
# TODO: Perhaps there should be an API to find out if bzr running under the
19
 
# test suite -- some plugins might want to avoid making intrusive changes if
20
 
# this is the case.  However, we want behaviour under to test to diverge as
21
 
# little as possible, so this should be used rarely if it's added at all.
22
 
# (Suggestion from j-a-meinel, 2005-11-24)
23
 
 
24
18
from cStringIO import StringIO
25
 
import difflib
26
 
import errno
27
19
import logging
 
20
import unittest
 
21
import tempfile
28
22
import os
29
 
import re
 
23
import sys
 
24
import errno
 
25
import subprocess
30
26
import shutil
31
 
import sys
32
 
import tempfile
33
 
import unittest
34
 
import time
35
 
import codecs
36
27
 
37
 
import bzrlib.branch
38
28
import bzrlib.commands
39
 
from bzrlib.errors import BzrError
40
 
import bzrlib.inventory
41
 
import bzrlib.merge3
42
 
import bzrlib.osutils
43
 
import bzrlib.osutils as osutils
44
 
import bzrlib.plugin
45
 
import bzrlib.store
46
29
import bzrlib.trace
47
 
from bzrlib.trace import mutter
48
 
from bzrlib.tests.TestUtil import TestLoader, TestSuite
49
 
from bzrlib.tests.treeshape import build_tree_contents
 
30
import bzrlib.fetch
 
31
from bzrlib.selftest import TestUtil
 
32
from bzrlib.selftest.TestUtil import TestLoader, TestSuite
 
33
 
50
34
 
51
35
MODULES_TO_TEST = []
52
 
MODULES_TO_DOCTEST = [
53
 
                      bzrlib.branch,
54
 
                      bzrlib.commands,
55
 
                      bzrlib.errors,
56
 
                      bzrlib.inventory,
57
 
                      bzrlib.merge3,
58
 
                      bzrlib.osutils,
59
 
                      bzrlib.store,
60
 
                      ]
61
 
def packages_to_test():
62
 
    import bzrlib.tests.blackbox
63
 
    return [
64
 
            bzrlib.tests.blackbox
65
 
            ]
 
36
MODULES_TO_DOCTEST = []
 
37
 
 
38
from logging import debug, warning, error
 
39
 
66
40
 
67
41
 
68
42
class EarlyStoppingTestResultAdapter(object):
89
63
 
90
64
 
91
65
class _MyResult(unittest._TextTestResult):
92
 
    """Custom TestResult.
93
 
 
94
 
    Shows output in a different format, including displaying runtime for tests.
95
 
    """
96
 
 
97
 
    def _elapsedTime(self):
98
 
        return "%5dms" % (1000 * (time.time() - self._start_time))
 
66
    """
 
67
    Custom TestResult.
 
68
 
 
69
    No special behaviour for now.
 
70
    """
99
71
 
100
72
    def startTest(self, test):
101
73
        unittest.TestResult.startTest(self, test)
102
 
        # In a short description, the important words are in
103
 
        # the beginning, but in an id, the important words are
104
 
        # at the end
105
 
        SHOW_DESCRIPTIONS = False
 
74
        # TODO: Maybe show test.shortDescription somewhere?
 
75
        what = test.shortDescription() or test.id()        
106
76
        if self.showAll:
107
 
            width = osutils.terminal_width()
108
 
            name_width = width - 15
109
 
            what = None
110
 
            if SHOW_DESCRIPTIONS:
111
 
                what = test.shortDescription()
112
 
                if what:
113
 
                    if len(what) > name_width:
114
 
                        what = what[:name_width-3] + '...'
115
 
            if what is None:
116
 
                what = test.id()
117
 
                if what.startswith('bzrlib.tests.'):
118
 
                    what = what[13:]
119
 
                if len(what) > name_width:
120
 
                    what = '...' + what[3-name_width:]
121
 
            what = what.ljust(name_width)
122
 
            self.stream.write(what)
 
77
            self.stream.write('%-70.70s' % what)
123
78
        self.stream.flush()
124
 
        self._start_time = time.time()
125
79
 
126
80
    def addError(self, test, err):
127
 
        if isinstance(err[1], TestSkipped):
128
 
            return self.addSkipped(test, err)    
129
 
        unittest.TestResult.addError(self, test, err)
130
 
        if self.showAll:
131
 
            self.stream.writeln("ERROR %s" % self._elapsedTime())
132
 
        elif self.dots:
133
 
            self.stream.write('E')
 
81
        super(_MyResult, self).addError(test, err)
134
82
        self.stream.flush()
135
83
 
136
84
    def addFailure(self, test, err):
137
 
        unittest.TestResult.addFailure(self, test, err)
138
 
        if self.showAll:
139
 
            self.stream.writeln(" FAIL %s" % self._elapsedTime())
140
 
        elif self.dots:
141
 
            self.stream.write('F')
 
85
        super(_MyResult, self).addFailure(test, err)
142
86
        self.stream.flush()
143
87
 
144
88
    def addSuccess(self, test):
145
89
        if self.showAll:
146
 
            self.stream.writeln('   OK %s' % self._elapsedTime())
 
90
            self.stream.writeln('OK')
147
91
        elif self.dots:
148
92
            self.stream.write('~')
149
93
        self.stream.flush()
150
94
        unittest.TestResult.addSuccess(self, test)
151
95
 
152
 
    def addSkipped(self, test, skip_excinfo):
153
 
        if self.showAll:
154
 
            print >>self.stream, ' SKIP %s' % self._elapsedTime()
155
 
            print >>self.stream, '     %s' % skip_excinfo[1]
156
 
        elif self.dots:
157
 
            self.stream.write('S')
158
 
        self.stream.flush()
159
 
        # seems best to treat this as success from point-of-view of unittest
160
 
        # -- it actually does nothing so it barely matters :)
161
 
        unittest.TestResult.addSuccess(self, test)
162
 
 
163
96
    def printErrorList(self, flavour, errors):
164
97
        for test, err in errors:
165
98
            self.stream.writeln(self.separator1)
166
99
            self.stream.writeln("%s: %s" % (flavour,self.getDescription(test)))
167
100
            if hasattr(test, '_get_log'):
168
 
                print >>self.stream
169
 
                print >>self.stream, \
170
 
                        ('vvvv[log from %s]' % test).ljust(78,'-')
 
101
                self.stream.writeln()
 
102
                self.stream.writeln('log from this test:')
171
103
                print >>self.stream, test._get_log()
172
 
                print >>self.stream, \
173
 
                        ('^^^^[log from %s]' % test).ljust(78,'-')
174
104
            self.stream.writeln(self.separator2)
175
105
            self.stream.writeln("%s" % err)
176
106
 
177
107
 
178
108
class TextTestRunner(unittest.TextTestRunner):
179
 
    stop_on_failure = False
180
109
 
181
110
    def _makeResult(self):
182
111
        result = _MyResult(self.stream, self.descriptions, self.verbosity)
183
 
        if self.stop_on_failure:
184
 
            result = EarlyStoppingTestResultAdapter(result)
185
 
        return result
186
 
 
187
 
 
188
 
def iter_suite_tests(suite):
189
 
    """Return all tests in a suite, recursing through nested suites"""
190
 
    for item in suite._tests:
191
 
        if isinstance(item, unittest.TestCase):
192
 
            yield item
193
 
        elif isinstance(item, unittest.TestSuite):
194
 
            for r in iter_suite_tests(item):
195
 
                yield r
196
 
        else:
197
 
            raise Exception('unknown object %r inside test suite %r'
198
 
                            % (item, suite))
199
 
 
 
112
        return EarlyStoppingTestResultAdapter(result)
 
113
 
 
114
 
 
115
class filteringVisitor(TestUtil.TestVisitor):
 
116
    """I accruse all the testCases I visit that pass a regexp filter on id
 
117
    into my suite
 
118
    """
 
119
 
 
120
    def __init__(self, filter):
 
121
        import re
 
122
        TestUtil.TestVisitor.__init__(self)
 
123
        self._suite=None
 
124
        self.filter=re.compile(filter)
 
125
 
 
126
    def suite(self):
 
127
        """answer the suite we are building"""
 
128
        if self._suite is None:
 
129
            self._suite=TestUtil.TestSuite()
 
130
        return self._suite
 
131
 
 
132
    def visitCase(self, aCase):
 
133
        if self.filter.match(aCase.id()):
 
134
            self.suite().addTest(aCase)
200
135
 
201
136
class TestSkipped(Exception):
202
137
    """Indicates that a test was intentionally skipped, rather than failing."""
214
149
 
215
150
    Error and debug log messages are redirected from their usual
216
151
    location into a temporary file, the contents of which can be
217
 
    retrieved by _get_log().  We use a real OS file, not an in-memory object,
218
 
    so that it can also capture file IO.  When the test completes this file
219
 
    is read into memory and removed from disk.
 
152
    retrieved by _get_log().
220
153
       
221
154
    There are also convenience functions to invoke bzr's command-line
222
 
    routine, and to build and check bzr trees.
223
 
   
224
 
    In addition to the usual method of overriding tearDown(), this class also
225
 
    allows subclasses to register functions into the _cleanups list, which is
226
 
    run in order as the object is torn down.  It's less likely this will be
227
 
    accidentally overlooked.
228
 
    """
 
155
    routine, and to build and check bzr trees."""
229
156
 
230
157
    BZRPATH = 'bzr'
231
 
    _log_file_name = None
232
 
    _log_contents = ''
233
158
 
234
159
    def setUp(self):
235
160
        unittest.TestCase.setUp(self)
236
 
        self._cleanups = []
237
 
        self._cleanEnvironment()
238
161
        bzrlib.trace.disable_default_logging()
239
 
        self._startLogFile()
240
 
 
241
 
    def _ndiff_strings(self, a, b):
242
 
        """Return ndiff between two strings containing lines.
243
 
        
244
 
        A trailing newline is added if missing to make the strings
245
 
        print properly."""
246
 
        if b and b[-1] != '\n':
247
 
            b += '\n'
248
 
        if a and a[-1] != '\n':
249
 
            a += '\n'
250
 
        difflines = difflib.ndiff(a.splitlines(True),
251
 
                                  b.splitlines(True),
252
 
                                  linejunk=lambda x: False,
253
 
                                  charjunk=lambda x: False)
254
 
        return ''.join(difflines)
255
 
 
256
 
    def assertEqualDiff(self, a, b):
257
 
        """Assert two texts are equal, if not raise an exception.
258
 
        
259
 
        This is intended for use with multi-line strings where it can 
260
 
        be hard to find the differences by eye.
261
 
        """
262
 
        # TODO: perhaps override assertEquals to call this for strings?
263
 
        if a == b:
264
 
            return
265
 
        raise AssertionError("texts not equal:\n" + 
266
 
                             self._ndiff_strings(a, b))      
267
 
        
268
 
    def assertStartsWith(self, s, prefix):
269
 
        if not s.startswith(prefix):
270
 
            raise AssertionError('string %r does not start with %r' % (s, prefix))
271
 
 
272
 
    def assertEndsWith(self, s, suffix):
273
 
        if not s.endswith(prefix):
274
 
            raise AssertionError('string %r does not end with %r' % (s, suffix))
275
 
 
276
 
    def assertContainsRe(self, haystack, needle_re):
277
 
        """Assert that a contains something matching a regular expression."""
278
 
        if not re.search(needle_re, haystack):
279
 
            raise AssertionError('pattern "%s" not found in "%s"'
280
 
                    % (needle_re, haystack))
281
 
 
282
 
    def AssertSubset(self, sublist, superlist):
283
 
        """Assert that every entry in sublist is present in superlist."""
284
 
        missing = []
285
 
        for entry in sublist:
286
 
            if entry not in superlist:
287
 
                missing.append(entry)
288
 
        if len(missing) > 0:
289
 
            raise AssertionError("value(s) %r not present in container %r" % 
290
 
                                 (missing, superlist))
291
 
 
292
 
    def _startLogFile(self):
293
 
        """Send bzr and test log messages to a temporary file.
294
 
 
295
 
        The file is removed as the test is torn down.
296
 
        """
 
162
        self._enable_file_logging()
 
163
 
 
164
 
 
165
    def _enable_file_logging(self):
297
166
        fileno, name = tempfile.mkstemp(suffix='.log', prefix='testbzr')
298
 
        encoder, decoder, stream_reader, stream_writer = codecs.lookup('UTF-8')
299
 
        self._log_file = stream_writer(os.fdopen(fileno, 'w+'))
300
 
        bzrlib.trace.enable_test_log(self._log_file)
 
167
 
 
168
        self._log_file = os.fdopen(fileno, 'w+')
 
169
 
 
170
        hdlr = logging.StreamHandler(self._log_file)
 
171
        hdlr.setLevel(logging.DEBUG)
 
172
        hdlr.setFormatter(logging.Formatter('%(levelname)8s  %(message)s'))
 
173
        logging.getLogger('').addHandler(hdlr)
 
174
        logging.getLogger('').setLevel(logging.DEBUG)
 
175
        self._log_hdlr = hdlr
 
176
        debug('opened log file %s', name)
 
177
        
301
178
        self._log_file_name = name
302
 
        self.addCleanup(self._finishLogFile)
303
 
 
304
 
    def _finishLogFile(self):
305
 
        """Finished with the log file.
306
 
 
307
 
        Read contents into memory, close, and delete.
308
 
        """
309
 
        bzrlib.trace.disable_test_log()
310
 
        self._log_file.seek(0)
311
 
        self._log_contents = self._log_file.read()
 
179
 
 
180
    def tearDown(self):
 
181
        logging.getLogger('').removeHandler(self._log_hdlr)
 
182
        bzrlib.trace.enable_default_logging()
 
183
        logging.debug('%s teardown', self.id())
312
184
        self._log_file.close()
313
 
        os.remove(self._log_file_name)
314
 
        self._log_file = self._log_file_name = None
315
 
 
316
 
    def addCleanup(self, callable):
317
 
        """Arrange to run a callable when this case is torn down.
318
 
 
319
 
        Callables are run in the reverse of the order they are registered, 
320
 
        ie last-in first-out.
321
 
        """
322
 
        if callable in self._cleanups:
323
 
            raise ValueError("cleanup function %r already registered on %s" 
324
 
                    % (callable, self))
325
 
        self._cleanups.append(callable)
326
 
 
327
 
    def _cleanEnvironment(self):
328
 
        new_env = {
329
 
            'HOME': os.getcwd(),
330
 
            'APPDATA': os.getcwd(),
331
 
            'BZREMAIL': None,
332
 
            'EMAIL': None,
333
 
        }
334
 
        self.__old_env = {}
335
 
        self.addCleanup(self._restoreEnvironment)
336
 
        for name, value in new_env.iteritems():
337
 
            self._captureVar(name, value)
338
 
 
339
 
 
340
 
    def _captureVar(self, name, newvalue):
341
 
        """Set an environment variable, preparing it to be reset when finished."""
342
 
        self.__old_env[name] = os.environ.get(name, None)
343
 
        if newvalue is None:
344
 
            if name in os.environ:
345
 
                del os.environ[name]
346
 
        else:
347
 
            os.environ[name] = newvalue
348
 
 
349
 
    @staticmethod
350
 
    def _restoreVar(name, value):
351
 
        if value is None:
352
 
            if name in os.environ:
353
 
                del os.environ[name]
354
 
        else:
355
 
            os.environ[name] = value
356
 
 
357
 
    def _restoreEnvironment(self):
358
 
        for name, value in self.__old_env.iteritems():
359
 
            self._restoreVar(name, value)
360
 
 
361
 
    def tearDown(self):
362
 
        self._runCleanups()
363
185
        unittest.TestCase.tearDown(self)
364
186
 
365
 
    def _runCleanups(self):
366
 
        """Run registered cleanup functions. 
367
 
 
368
 
        This should only be called from TestCase.tearDown.
369
 
        """
370
 
        for cleanup_fn in reversed(self._cleanups):
371
 
            cleanup_fn()
372
 
 
373
187
    def log(self, *args):
374
 
        mutter(*args)
 
188
        logging.debug(*args)
375
189
 
376
190
    def _get_log(self):
377
191
        """Return as a string the log for this test"""
378
 
        if self._log_file_name:
379
 
            return open(self._log_file_name).read()
380
 
        else:
381
 
            return self._log_contents
382
 
        # TODO: Delete the log after it's been read in
383
 
 
384
 
    def capture(self, cmd, retcode=0):
 
192
        return open(self._log_file_name).read()
 
193
 
 
194
 
 
195
    def capture(self, cmd):
385
196
        """Shortcut that splits cmd into words, runs, and returns stdout"""
386
 
        return self.run_bzr_captured(cmd.split(), retcode=retcode)[0]
 
197
        return self.run_bzr_captured(cmd.split())[0]
387
198
 
388
199
    def run_bzr_captured(self, argv, retcode=0):
389
 
        """Invoke bzr and return (stdout, stderr).
 
200
        """Invoke bzr and return (result, stdout, stderr).
390
201
 
391
202
        Useful for code that wants to check the contents of the
392
203
        output, the way error messages are presented, etc.
408
219
        stdout = StringIO()
409
220
        stderr = StringIO()
410
221
        self.log('run bzr: %s', ' '.join(argv))
411
 
        # FIXME: don't call into logging here
412
222
        handler = logging.StreamHandler(stderr)
413
223
        handler.setFormatter(bzrlib.trace.QuietFormatter())
414
224
        handler.setLevel(logging.INFO)
529
339
            return
530
340
        i = 0
531
341
        while True:
532
 
            root = u'test%04d.tmp' % i
 
342
            root = 'test%04d.tmp' % i
533
343
            try:
534
344
                os.mkdir(root)
535
345
            except OSError, e:
539
349
                else:
540
350
                    raise
541
351
            # successfully created
542
 
            TestCaseInTempDir.TEST_ROOT = osutils.abspath(root)
 
352
            TestCaseInTempDir.TEST_ROOT = os.path.abspath(root)
543
353
            break
544
354
        # make a fake bzr directory there to prevent any tests propagating
545
355
        # up onto the source directory's real branch
546
 
        os.mkdir(osutils.pathjoin(TestCaseInTempDir.TEST_ROOT, '.bzr'))
 
356
        os.mkdir(os.path.join(TestCaseInTempDir.TEST_ROOT, '.bzr'))
547
357
 
548
358
    def setUp(self):
549
359
        super(TestCaseInTempDir, self).setUp()
550
360
        self._make_test_root()
551
 
        _currentdir = os.getcwdu()
552
 
        short_id = self.id().replace('bzrlib.tests.', '') \
 
361
        self._currentdir = os.getcwdu()
 
362
        short_id = self.id().replace('bzrlib.selftest.', '') \
553
363
                   .replace('__main__.', '')
554
 
        self.test_dir = osutils.pathjoin(self.TEST_ROOT, short_id)
 
364
        self.test_dir = os.path.join(self.TEST_ROOT, short_id)
555
365
        os.mkdir(self.test_dir)
556
366
        os.chdir(self.test_dir)
557
 
        os.environ['HOME'] = self.test_dir
558
 
        os.environ['APPDATA'] = self.test_dir
559
 
        def _leaveDirectory():
560
 
            os.chdir(_currentdir)
561
 
        self.addCleanup(_leaveDirectory)
562
367
        
563
 
    def build_tree(self, shape, line_endings='native'):
 
368
    def tearDown(self):
 
369
        os.chdir(self._currentdir)
 
370
        super(TestCaseInTempDir, self).tearDown()
 
371
 
 
372
    def build_tree(self, shape):
564
373
        """Build a test tree according to a pattern.
565
374
 
566
375
        shape is a sequence of file specifications.  If the final
567
376
        character is '/', a directory is created.
568
377
 
569
378
        This doesn't add anything to a branch.
570
 
        :param line_endings: Either 'binary' or 'native'
571
 
                             in binary mode, exact contents are written
572
 
                             in native mode, the line endings match the
573
 
                             default platform endings.
574
379
        """
575
380
        # XXX: It's OK to just create them using forward slashes on windows?
576
381
        for name in shape:
577
 
            self.assert_(isinstance(name, basestring))
 
382
            assert isinstance(name, basestring)
578
383
            if name[-1] == '/':
579
384
                os.mkdir(name[:-1])
580
385
            else:
581
 
                if line_endings == 'binary':
582
 
                    f = file(name, 'wb')
583
 
                elif line_endings == 'native':
584
 
                    f = file(name, 'wt')
585
 
                else:
586
 
                    raise BzrError('Invalid line ending request %r' % (line_endings,))
 
386
                f = file(name, 'wt')
587
387
                print >>f, "contents of", name
588
388
                f.close()
589
389
 
590
 
    def build_tree_contents(self, shape):
591
 
        build_tree_contents(shape)
592
 
 
593
 
    def failUnlessExists(self, path):
594
 
        """Fail unless path, which may be abs or relative, exists."""
595
 
        self.failUnless(osutils.lexists(path))
596
 
 
597
 
    def failIfExists(self, path):
598
 
        """Fail if path, which may be abs or relative, exists."""
599
 
        self.failIf(osutils.lexists(path))
600
 
        
601
 
    def assertFileEqual(self, content, path):
602
 
        """Fail if path does not contain 'content'."""
603
 
        self.failUnless(osutils.lexists(path))
604
 
        self.assertEqualDiff(content, open(path, 'r').read())
605
 
 
606
 
 
607
 
def filter_suite_by_re(suite, pattern):
608
 
    result = TestSuite()
609
 
    filter_re = re.compile(pattern)
610
 
    for test in iter_suite_tests(suite):
611
 
        if filter_re.search(test.id()):
612
 
            result.addTest(test)
613
 
    return result
614
 
 
615
 
 
616
 
def run_suite(suite, name='test', verbose=False, pattern=".*",
617
 
              stop_on_failure=False, keep_output=False):
 
390
 
 
391
class MetaTestLog(TestCase):
 
392
    def test_logging(self):
 
393
        """Test logs are captured when a test fails."""
 
394
        logging.info('an info message')
 
395
        warning('something looks dodgy...')
 
396
        logging.debug('hello, test is running')
 
397
        ##assert 0
 
398
 
 
399
 
 
400
 
 
401
def run_suite(suite, name='test', verbose=False, pattern=".*"):
618
402
    TestCaseInTempDir._TEST_NAME = name
619
403
    if verbose:
620
404
        verbosity = 2
623
407
    runner = TextTestRunner(stream=sys.stdout,
624
408
                            descriptions=0,
625
409
                            verbosity=verbosity)
626
 
    runner.stop_on_failure=stop_on_failure
627
 
    if pattern != '.*':
628
 
        suite = filter_suite_by_re(suite, pattern)
629
 
    result = runner.run(suite)
 
410
    visitor = filteringVisitor(pattern)
 
411
    suite.visit(visitor)
 
412
    result = runner.run(visitor.suite())
630
413
    # This is still a little bogus, 
631
414
    # but only a little. Folk not using our testrunner will
632
415
    # have to delete their temp directories themselves.
633
 
    if result.wasSuccessful() or not keep_output:
 
416
    if result.wasSuccessful():
634
417
        if TestCaseInTempDir.TEST_ROOT is not None:
635
418
            shutil.rmtree(TestCaseInTempDir.TEST_ROOT) 
636
419
    else:
638
421
    return result.wasSuccessful()
639
422
 
640
423
 
641
 
def selftest(verbose=False, pattern=".*", stop_on_failure=True,
642
 
             keep_output=False):
 
424
def selftest(verbose=False, pattern=".*"):
643
425
    """Run the whole test suite under the enhanced runner"""
644
 
    return run_suite(test_suite(), 'testbzr', verbose=verbose, pattern=pattern,
645
 
                     stop_on_failure=stop_on_failure, keep_output=keep_output)
 
426
    return run_suite(test_suite(), 'testbzr', verbose=verbose, pattern=pattern)
646
427
 
647
428
 
648
429
def test_suite():
649
430
    """Build and return TestSuite for the whole program."""
 
431
    import bzrlib.store, bzrlib.inventory, bzrlib.branch
 
432
    import bzrlib.osutils, bzrlib.merge3, bzrlib.plugin
650
433
    from doctest import DocTestSuite
651
434
 
652
 
    global MODULES_TO_DOCTEST
 
435
    global MODULES_TO_TEST, MODULES_TO_DOCTEST
653
436
 
654
 
    testmod_names = [ \
655
 
                   'bzrlib.tests.test_ancestry',
656
 
                   'bzrlib.tests.test_annotate',
657
 
                   'bzrlib.tests.test_api',
658
 
                   'bzrlib.tests.test_bad_files',
659
 
                   'bzrlib.tests.test_basis_inventory',
660
 
                   'bzrlib.tests.test_branch',
661
 
                   'bzrlib.tests.test_command',
662
 
                   'bzrlib.tests.test_commit',
663
 
                   'bzrlib.tests.test_commit_merge',
664
 
                   'bzrlib.tests.test_config',
665
 
                   'bzrlib.tests.test_conflicts',
666
 
                   'bzrlib.tests.test_diff',
667
 
                   'bzrlib.tests.test_fetch',
668
 
                   'bzrlib.tests.test_gpg',
669
 
                   'bzrlib.tests.test_graph',
670
 
                   'bzrlib.tests.test_hashcache',
671
 
                   'bzrlib.tests.test_http',
672
 
                   'bzrlib.tests.test_identitymap',
673
 
                   'bzrlib.tests.test_inv',
674
 
                   'bzrlib.tests.test_log',
675
 
                   'bzrlib.tests.test_merge',
676
 
                   'bzrlib.tests.test_merge3',
677
 
                   'bzrlib.tests.test_merge_core',
678
 
                   'bzrlib.tests.test_missing',
679
 
                   'bzrlib.tests.test_msgeditor',
680
 
                   'bzrlib.tests.test_nonascii',
681
 
                   'bzrlib.tests.test_options',
682
 
                   'bzrlib.tests.test_osutils',
683
 
                   'bzrlib.tests.test_parent',
684
 
                   'bzrlib.tests.test_permissions',
685
 
                   'bzrlib.tests.test_plugins',
686
 
                   'bzrlib.tests.test_remove',
687
 
                   'bzrlib.tests.test_revision',
688
 
                   'bzrlib.tests.test_revisionnamespaces',
689
 
                   'bzrlib.tests.test_revprops',
690
 
                   'bzrlib.tests.test_reweave',
691
 
                   'bzrlib.tests.test_rio',
692
 
                   'bzrlib.tests.test_sampler',
693
 
                   'bzrlib.tests.test_selftest',
694
 
                   'bzrlib.tests.test_setup',
695
 
                   'bzrlib.tests.test_sftp_transport',
696
 
                   'bzrlib.tests.test_smart_add',
697
 
                   'bzrlib.tests.test_source',
698
 
                   'bzrlib.tests.test_status',
699
 
                   'bzrlib.tests.test_store',
700
 
                   'bzrlib.tests.test_symbol_versioning',
701
 
                   'bzrlib.tests.test_testament',
702
 
                   'bzrlib.tests.test_trace',
703
 
                   'bzrlib.tests.test_transactions',
704
 
                   'bzrlib.tests.test_transport',
705
 
                   'bzrlib.tests.test_tsort',
706
 
                   'bzrlib.tests.test_ui',
707
 
                   'bzrlib.tests.test_uncommit',
708
 
                   'bzrlib.tests.test_upgrade',
709
 
                   'bzrlib.tests.test_weave',
710
 
                   'bzrlib.tests.test_whitebox',
711
 
                   'bzrlib.tests.test_workingtree',
712
 
                   'bzrlib.tests.test_xml',
 
437
    testmod_names = \
 
438
                  ['bzrlib.selftest.MetaTestLog',
 
439
                   'bzrlib.selftest.testinv',
 
440
                   'bzrlib.selftest.test_ancestry',
 
441
                   'bzrlib.selftest.test_commit',
 
442
                   'bzrlib.selftest.test_commit_merge',
 
443
                   'bzrlib.selftest.versioning',
 
444
                   'bzrlib.selftest.testmerge3',
 
445
                   'bzrlib.selftest.testmerge',
 
446
                   'bzrlib.selftest.testhashcache',
 
447
                   'bzrlib.selftest.teststatus',
 
448
                   'bzrlib.selftest.testlog',
 
449
                   'bzrlib.selftest.testrevisionnamespaces',
 
450
                   'bzrlib.selftest.testbranch',
 
451
                   'bzrlib.selftest.testrevision',
 
452
                   'bzrlib.selftest.test_revision_info',
 
453
                   'bzrlib.selftest.test_merge_core',
 
454
                   'bzrlib.selftest.test_smart_add',
 
455
                   'bzrlib.selftest.test_bad_files',
 
456
                   'bzrlib.selftest.testdiff',
 
457
                   'bzrlib.selftest.test_parent',
 
458
                   'bzrlib.selftest.test_xml',
 
459
                   'bzrlib.selftest.test_weave',
 
460
                   'bzrlib.selftest.testfetch',
 
461
                   'bzrlib.selftest.whitebox',
 
462
                   'bzrlib.selftest.teststore',
 
463
                   'bzrlib.selftest.blackbox',
 
464
                   'bzrlib.selftest.testtransport',
 
465
                   'bzrlib.selftest.testgraph',
713
466
                   ]
714
467
 
715
 
    TestCase.BZRPATH = osutils.pathjoin(
716
 
            osutils.realpath(osutils.dirname(bzrlib.__path__[0])), 'bzr')
717
 
    print '%10s: %s' % ('bzr', osutils.realpath(sys.argv[0]))
718
 
    print '%10s: %s' % ('bzrlib', bzrlib.__path__[0])
 
468
    for m in (bzrlib.store, bzrlib.inventory, bzrlib.branch,
 
469
              bzrlib.osutils, bzrlib.commands, bzrlib.merge3):
 
470
        if m not in MODULES_TO_DOCTEST:
 
471
            MODULES_TO_DOCTEST.append(m)
 
472
 
 
473
    TestCase.BZRPATH = os.path.join(os.path.realpath(os.path.dirname(bzrlib.__path__[0])), 'bzr')
 
474
    print '%-30s %s' % ('bzr binary', TestCase.BZRPATH)
719
475
    print
720
476
    suite = TestSuite()
721
 
    # python2.4's TestLoader.loadTestsFromNames gives very poor 
722
 
    # errors if it fails to load a named module - no indication of what's
723
 
    # actually wrong, just "no such module".  We should probably override that
724
 
    # class, but for the moment just load them ourselves. (mbp 20051202)
725
 
    loader = TestLoader()
726
 
    for mod_name in testmod_names:
727
 
        mod = _load_module_by_name(mod_name)
728
 
        suite.addTest(loader.loadTestsFromModule(mod))
729
 
    for package in packages_to_test():
730
 
        suite.addTest(package.test_suite())
 
477
    suite.addTest(TestLoader().loadTestsFromNames(testmod_names))
731
478
    for m in MODULES_TO_TEST:
732
 
        suite.addTest(loader.loadTestsFromModule(m))
 
479
         suite.addTest(TestLoader().loadTestsFromModule(m))
733
480
    for m in (MODULES_TO_DOCTEST):
734
481
        suite.addTest(DocTestSuite(m))
735
 
    for name, plugin in bzrlib.plugin.all_plugins().items():
736
 
        if hasattr(plugin, 'test_suite'):
737
 
            suite.addTest(plugin.test_suite())
 
482
    for p in bzrlib.plugin.all_plugins:
 
483
        if hasattr(p, 'test_suite'):
 
484
            suite.addTest(p.test_suite())
738
485
    return suite
739
486
 
740
 
 
741
 
def _load_module_by_name(mod_name):
742
 
    parts = mod_name.split('.')
743
 
    module = __import__(mod_name)
744
 
    del parts[0]
745
 
    # for historical reasons python returns the top-level module even though
746
 
    # it loads the submodule; we need to walk down to get the one we want.
747
 
    while parts:
748
 
        module = getattr(module, parts.pop(0))
749
 
    return module