~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/__init__.py

  • Committer: John Arbash Meinel
  • Date: 2007-05-04 18:59:36 UTC
  • mto: This revision was merged to the branch mainline in revision 2643.
  • Revision ID: john@arbash-meinel.com-20070504185936-1mjdoqmtz74xe5mg
A C implementation of _fields_to_entry_0_parents drops the time from 400ms to 330ms for a 21k-entry tree

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006, 2007, 2008 Canonical Ltd
 
1
# Copyright (C) 2005, 2006, 2007 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
26
26
# general style of bzrlib.  Please continue that consistency when adding e.g.
27
27
# new assertFoo() methods.
28
28
 
29
 
import atexit
30
29
import codecs
31
30
from cStringIO import StringIO
32
31
import difflib
37
36
from pprint import pformat
38
37
import random
39
38
import re
40
 
import shlex
41
39
import stat
42
40
from subprocess import Popen, PIPE
43
41
import sys
44
42
import tempfile
 
43
import unittest
45
44
import time
46
 
import unittest
47
 
import warnings
48
45
 
49
46
 
50
47
from bzrlib import (
72
69
    pass
73
70
from bzrlib.merge import merge_inner
74
71
import bzrlib.merge3
 
72
import bzrlib.osutils
75
73
import bzrlib.plugin
76
74
from bzrlib.revision import common_ancestor
77
75
import bzrlib.store
78
76
from bzrlib import symbol_versioning
79
 
from bzrlib.symbol_versioning import (
80
 
    DEPRECATED_PARAMETER,
81
 
    deprecated_function,
82
 
    deprecated_method,
83
 
    deprecated_passed,
84
 
    zero_ninetyone,
85
 
    zero_ninetytwo,
86
 
    one_zero,
87
 
    )
88
77
import bzrlib.trace
89
78
from bzrlib.transport import get_transport
90
79
import bzrlib.transport
93
82
from bzrlib.transport.readonly import ReadonlyServer
94
83
from bzrlib.trace import mutter, note
95
84
from bzrlib.tests import TestUtil
96
 
from bzrlib.tests.http_server import HttpServer
 
85
from bzrlib.tests.HttpServer import HttpServer
97
86
from bzrlib.tests.TestUtil import (
98
87
                          TestSuite,
99
88
                          TestLoader,
100
89
                          )
101
90
from bzrlib.tests.treeshape import build_tree_contents
102
 
import bzrlib.version_info_formats.format_custom
103
91
from bzrlib.workingtree import WorkingTree, WorkingTreeFormat2
104
92
 
105
93
# Mark this python module as being part of the implementation
109
97
 
110
98
default_transport = LocalURLServer
111
99
 
 
100
MODULES_TO_TEST = []
 
101
MODULES_TO_DOCTEST = [
 
102
                      bzrlib.timestamp,
 
103
                      bzrlib.errors,
 
104
                      bzrlib.export,
 
105
                      bzrlib.inventory,
 
106
                      bzrlib.iterablefile,
 
107
                      bzrlib.lockdir,
 
108
                      bzrlib.merge3,
 
109
                      bzrlib.option,
 
110
                      bzrlib.store,
 
111
                      ]
 
112
 
112
113
 
113
114
def packages_to_test():
114
115
    """Return a list of packages to test.
120
121
    import bzrlib.tests.blackbox
121
122
    import bzrlib.tests.branch_implementations
122
123
    import bzrlib.tests.bzrdir_implementations
123
 
    import bzrlib.tests.commands
 
124
    import bzrlib.tests.compiled
124
125
    import bzrlib.tests.interrepository_implementations
125
126
    import bzrlib.tests.interversionedfile_implementations
126
127
    import bzrlib.tests.intertree_implementations
127
 
    import bzrlib.tests.inventory_implementations
128
128
    import bzrlib.tests.per_lock
129
129
    import bzrlib.tests.repository_implementations
130
130
    import bzrlib.tests.revisionstore_implementations
135
135
            bzrlib.tests.blackbox,
136
136
            bzrlib.tests.branch_implementations,
137
137
            bzrlib.tests.bzrdir_implementations,
138
 
            bzrlib.tests.commands,
 
138
            bzrlib.tests.compiled,
139
139
            bzrlib.tests.interrepository_implementations,
140
140
            bzrlib.tests.interversionedfile_implementations,
141
141
            bzrlib.tests.intertree_implementations,
142
 
            bzrlib.tests.inventory_implementations,
143
142
            bzrlib.tests.per_lock,
144
143
            bzrlib.tests.repository_implementations,
145
144
            bzrlib.tests.revisionstore_implementations,
151
150
class ExtendedTestResult(unittest._TextTestResult):
152
151
    """Accepts, reports and accumulates the results of running tests.
153
152
 
154
 
    Compared to the unittest version this class adds support for
155
 
    profiling, benchmarking, stopping as soon as a test fails,  and
156
 
    skipping tests.  There are further-specialized subclasses for
157
 
    different types of display.
158
 
 
159
 
    When a test finishes, in whatever way, it calls one of the addSuccess,
160
 
    addFailure or addError classes.  These in turn may redirect to a more
161
 
    specific case for the special test results supported by our extended
162
 
    tests.
163
 
 
164
 
    Note that just one of these objects is fed the results from many tests.
 
153
    Compared to this unittest version this class adds support for profiling,
 
154
    benchmarking, stopping as soon as a test fails,  and skipping tests.
 
155
    There are further-specialized subclasses for different types of display.
165
156
    """
166
157
 
167
158
    stop_early = False
169
160
    def __init__(self, stream, descriptions, verbosity,
170
161
                 bench_history=None,
171
162
                 num_tests=None,
 
163
                 use_numbered_dirs=False,
172
164
                 ):
173
165
        """Construct new TestResult.
174
166
 
197
189
        self.failure_count = 0
198
190
        self.known_failure_count = 0
199
191
        self.skip_count = 0
200
 
        self.not_applicable_count = 0
201
192
        self.unsupported = {}
202
193
        self.count = 0
 
194
        self.use_numbered_dirs = use_numbered_dirs
203
195
        self._overall_start_time = time.time()
204
196
    
205
 
    def _extractBenchmarkTime(self, testCase):
 
197
    def extractBenchmarkTime(self, testCase):
206
198
        """Add a benchmark time for the current test case."""
207
 
        return getattr(testCase, "_benchtime", None)
 
199
        self._benchmarkTime = getattr(testCase, "_benchtime", None)
208
200
    
209
201
    def _elapsedTestTimeString(self):
210
202
        """Return a time string for the overall time the current test has taken."""
211
203
        return self._formatTime(time.time() - self._start_time)
212
204
 
213
 
    def _testTimeString(self, testCase):
214
 
        benchmark_time = self._extractBenchmarkTime(testCase)
215
 
        if benchmark_time is not None:
 
205
    def _testTimeString(self):
 
206
        if self._benchmarkTime is not None:
216
207
            return "%s/%s" % (
217
 
                self._formatTime(benchmark_time),
 
208
                self._formatTime(self._benchmarkTime),
218
209
                self._elapsedTestTimeString())
219
210
        else:
220
211
            return "           %s" % self._elapsedTestTimeString()
248
239
            setKeepLogfile()
249
240
 
250
241
    def addError(self, test, err):
251
 
        """Tell result that test finished with an error.
252
 
 
253
 
        Called from the TestCase run() method when the test
254
 
        fails with an unexpected error.
255
 
        """
256
 
        self._testConcluded(test)
 
242
        self.extractBenchmarkTime(test)
 
243
        self._cleanupLogFile(test)
257
244
        if isinstance(err[1], TestSkipped):
258
 
            return self._addSkipped(test, err)
 
245
            return self.addSkipped(test, err)
259
246
        elif isinstance(err[1], UnavailableFeature):
260
247
            return self.addNotSupported(test, err[1].args[0])
261
 
        else:
262
 
            self._cleanupLogFile(test)
263
 
            unittest.TestResult.addError(self, test, err)
264
 
            self.error_count += 1
265
 
            self.report_error(test, err)
266
 
            if self.stop_early:
267
 
                self.stop()
 
248
        unittest.TestResult.addError(self, test, err)
 
249
        self.error_count += 1
 
250
        self.report_error(test, err)
 
251
        if self.stop_early:
 
252
            self.stop()
268
253
 
269
254
    def addFailure(self, test, err):
270
 
        """Tell result that test failed.
271
 
 
272
 
        Called from the TestCase run() method when the test
273
 
        fails because e.g. an assert() method failed.
274
 
        """
275
 
        self._testConcluded(test)
 
255
        self._cleanupLogFile(test)
 
256
        self.extractBenchmarkTime(test)
276
257
        if isinstance(err[1], KnownFailure):
277
 
            return self._addKnownFailure(test, err)
278
 
        else:
279
 
            self._cleanupLogFile(test)
280
 
            unittest.TestResult.addFailure(self, test, err)
281
 
            self.failure_count += 1
282
 
            self.report_failure(test, err)
283
 
            if self.stop_early:
284
 
                self.stop()
 
258
            return self.addKnownFailure(test, err)
 
259
        unittest.TestResult.addFailure(self, test, err)
 
260
        self.failure_count += 1
 
261
        self.report_failure(test, err)
 
262
        if self.stop_early:
 
263
            self.stop()
 
264
 
 
265
    def addKnownFailure(self, test, err):
 
266
        self.known_failure_count += 1
 
267
        self.report_known_failure(test, err)
 
268
 
 
269
    def addNotSupported(self, test, feature):
 
270
        self.unsupported.setdefault(str(feature), 0)
 
271
        self.unsupported[str(feature)] += 1
 
272
        self.report_unsupported(test, feature)
285
273
 
286
274
    def addSuccess(self, test):
287
 
        """Tell result that test completed successfully.
288
 
 
289
 
        Called from the TestCase run()
290
 
        """
291
 
        self._testConcluded(test)
 
275
        self.extractBenchmarkTime(test)
292
276
        if self._bench_history is not None:
293
 
            benchmark_time = self._extractBenchmarkTime(test)
294
 
            if benchmark_time is not None:
 
277
            if self._benchmarkTime is not None:
295
278
                self._bench_history.write("%s %s\n" % (
296
 
                    self._formatTime(benchmark_time),
 
279
                    self._formatTime(self._benchmarkTime),
297
280
                    test.id()))
298
281
        self.report_success(test)
299
 
        self._cleanupLogFile(test)
300
282
        unittest.TestResult.addSuccess(self, test)
301
 
        test._log_contents = ''
302
 
 
303
 
    def _testConcluded(self, test):
304
 
        """Common code when a test has finished.
305
 
 
306
 
        Called regardless of whether it succeded, failed, etc.
307
 
        """
308
 
        pass
309
 
 
310
 
    def _addKnownFailure(self, test, err):
311
 
        self.known_failure_count += 1
312
 
        self.report_known_failure(test, err)
313
 
 
314
 
    def addNotSupported(self, test, feature):
315
 
        """The test will not be run because of a missing feature.
316
 
        """
317
 
        # this can be called in two different ways: it may be that the
318
 
        # test started running, and then raised (through addError) 
319
 
        # UnavailableFeature.  Alternatively this method can be called
320
 
        # while probing for features before running the tests; in that
321
 
        # case we will see startTest and stopTest, but the test will never
322
 
        # actually run.
323
 
        self.unsupported.setdefault(str(feature), 0)
324
 
        self.unsupported[str(feature)] += 1
325
 
        self.report_unsupported(test, feature)
326
 
 
327
 
    def _addSkipped(self, test, skip_excinfo):
328
 
        if isinstance(skip_excinfo[1], TestNotApplicable):
329
 
            self.not_applicable_count += 1
330
 
            self.report_not_applicable(test, skip_excinfo)
331
 
        else:
332
 
            self.skip_count += 1
333
 
            self.report_skip(test, skip_excinfo)
 
283
 
 
284
    def addSkipped(self, test, skip_excinfo):
 
285
        self.report_skip(test, skip_excinfo)
 
286
        # seems best to treat this as success from point-of-view of unittest
 
287
        # -- it actually does nothing so it barely matters :)
334
288
        try:
335
289
            test.tearDown()
336
290
        except KeyboardInterrupt:
337
291
            raise
338
292
        except:
339
 
            self.addError(test, test._exc_info())
 
293
            self.addError(test, test.__exc_info())
340
294
        else:
341
 
            # seems best to treat this as success from point-of-view of unittest
342
 
            # -- it actually does nothing so it barely matters :)
343
295
            unittest.TestResult.addSuccess(self, test)
344
 
            test._log_contents = ''
345
296
 
346
297
    def printErrorList(self, flavour, errors):
347
298
        for test, err in errors:
348
299
            self.stream.writeln(self.separator1)
349
300
            self.stream.write("%s: " % flavour)
 
301
            if self.use_numbered_dirs:
 
302
                self.stream.write('#%d ' % test.number)
350
303
            self.stream.writeln(self.getDescription(test))
351
304
            if getattr(test, '_get_log', None) is not None:
352
 
                self.stream.write('\n')
353
 
                self.stream.write(
354
 
                        ('vvvv[log from %s]' % test.id()).ljust(78,'-'))
355
 
                self.stream.write('\n')
356
 
                self.stream.write(test._get_log())
357
 
                self.stream.write('\n')
358
 
                self.stream.write(
359
 
                        ('^^^^[log from %s]' % test.id()).ljust(78,'-'))
360
 
                self.stream.write('\n')
 
305
                print >>self.stream
 
306
                print >>self.stream, \
 
307
                        ('vvvv[log from %s]' % test.id()).ljust(78,'-')
 
308
                print >>self.stream, test._get_log()
 
309
                print >>self.stream, \
 
310
                        ('^^^^[log from %s]' % test.id()).ljust(78,'-')
361
311
            self.stream.writeln(self.separator2)
362
312
            self.stream.writeln("%s" % err)
363
313
 
370
320
    def report_success(self, test):
371
321
        pass
372
322
 
373
 
    def wasStrictlySuccessful(self):
374
 
        if self.unsupported or self.known_failure_count:
375
 
            return False
376
 
        return self.wasSuccessful()
377
 
 
378
323
 
379
324
class TextTestResult(ExtendedTestResult):
380
325
    """Displays progress and results of tests in text form"""
383
328
                 bench_history=None,
384
329
                 num_tests=None,
385
330
                 pb=None,
 
331
                 use_numbered_dirs=False,
386
332
                 ):
387
333
        ExtendedTestResult.__init__(self, stream, descriptions, verbosity,
388
 
            bench_history, num_tests)
 
334
            bench_history, num_tests, use_numbered_dirs)
389
335
        if pb is None:
390
336
            self.pb = self.ui.nested_progress_bar()
391
337
            self._supplied_pb = False
402
348
        self.pb.update('[test 0/%d] starting...' % (self.num_tests))
403
349
 
404
350
    def _progress_prefix_text(self):
405
 
        # the longer this text, the less space we have to show the test
406
 
        # name...
407
 
        a = '[%d' % self.count              # total that have been run
408
 
        # tests skipped as known not to be relevant are not important enough
409
 
        # to show here
410
 
        ## if self.skip_count:
411
 
        ##     a += ', %d skip' % self.skip_count
412
 
        ## if self.known_failure_count:
413
 
        ##     a += '+%dX' % self.known_failure_count
 
351
        a = '[%d' % self.count
414
352
        if self.num_tests is not None:
415
353
            a +='/%d' % self.num_tests
416
 
        a += ' in '
417
 
        runtime = time.time() - self._overall_start_time
418
 
        if runtime >= 60:
419
 
            a += '%dm%ds' % (runtime / 60, runtime % 60)
420
 
        else:
421
 
            a += '%ds' % runtime
 
354
        a += ' in %ds' % (time.time() - self._overall_start_time)
422
355
        if self.error_count:
423
 
            a += ', %d err' % self.error_count
 
356
            a += ', %d errors' % self.error_count
424
357
        if self.failure_count:
425
 
            a += ', %d fail' % self.failure_count
 
358
            a += ', %d failed' % self.failure_count
 
359
        if self.known_failure_count:
 
360
            a += ', %d known failures' % self.known_failure_count
 
361
        if self.skip_count:
 
362
            a += ', %d skipped' % self.skip_count
426
363
        if self.unsupported:
427
 
            a += ', %d missing' % len(self.unsupported)
 
364
            a += ', %d missing features' % len(self.unsupported)
428
365
        a += ']'
429
366
        return a
430
367
 
436
373
                + self._shortened_test_description(test))
437
374
 
438
375
    def _test_description(self, test):
439
 
        return self._shortened_test_description(test)
 
376
        if self.use_numbered_dirs:
 
377
            return '#%d %s' % (self.count,
 
378
                               self._shortened_test_description(test))
 
379
        else:
 
380
            return self._shortened_test_description(test)
440
381
 
441
382
    def report_error(self, test, err):
442
383
        self.pb.note('ERROR: %s\n    %s\n', 
455
396
            self._test_description(test), err[1])
456
397
 
457
398
    def report_skip(self, test, skip_excinfo):
458
 
        pass
459
 
 
460
 
    def report_not_applicable(self, test, skip_excinfo):
461
 
        pass
 
399
        self.skip_count += 1
 
400
        if False:
 
401
            # at the moment these are mostly not things we can fix
 
402
            # and so they just produce stipple; use the verbose reporter
 
403
            # to see them.
 
404
            if False:
 
405
                # show test and reason for skip
 
406
                self.pb.note('SKIP: %s\n    %s\n', 
 
407
                    self._shortened_test_description(test),
 
408
                    skip_excinfo[1])
 
409
            else:
 
410
                # since the class name was left behind in the still-visible
 
411
                # progress bar...
 
412
                self.pb.note('SKIP: %s', skip_excinfo[1])
462
413
 
463
414
    def report_unsupported(self, test, feature):
464
415
        """test cannot be run because feature is missing."""
491
442
        # width needs space for 6 char status, plus 1 for slash, plus 2 10-char
492
443
        # numbers, plus a trailing blank
493
444
        # when NUMBERED_DIRS: plus 5 chars on test number, plus 1 char on space
494
 
        self.stream.write(self._ellipsize_to_right(name,
495
 
                          osutils.terminal_width()-30))
 
445
        if self.use_numbered_dirs:
 
446
            self.stream.write('%5d ' % self.count)
 
447
            self.stream.write(self._ellipsize_to_right(name,
 
448
                                osutils.terminal_width()-36))
 
449
        else:
 
450
            self.stream.write(self._ellipsize_to_right(name,
 
451
                                osutils.terminal_width()-30))
496
452
        self.stream.flush()
497
453
 
498
454
    def _error_summary(self, err):
499
455
        indent = ' ' * 4
 
456
        if self.use_numbered_dirs:
 
457
            indent += ' ' * 6
500
458
        return '%s%s' % (indent, err[1])
501
459
 
502
460
    def report_error(self, test, err):
503
461
        self.stream.writeln('ERROR %s\n%s'
504
 
                % (self._testTimeString(test),
 
462
                % (self._testTimeString(),
505
463
                   self._error_summary(err)))
506
464
 
507
465
    def report_failure(self, test, err):
508
466
        self.stream.writeln(' FAIL %s\n%s'
509
 
                % (self._testTimeString(test),
 
467
                % (self._testTimeString(),
510
468
                   self._error_summary(err)))
511
469
 
512
470
    def report_known_failure(self, test, err):
513
471
        self.stream.writeln('XFAIL %s\n%s'
514
 
                % (self._testTimeString(test),
 
472
                % (self._testTimeString(),
515
473
                   self._error_summary(err)))
516
474
 
517
475
    def report_success(self, test):
518
 
        self.stream.writeln('   OK %s' % self._testTimeString(test))
 
476
        self.stream.writeln('   OK %s' % self._testTimeString())
519
477
        for bench_called, stats in getattr(test, '_benchcalls', []):
520
478
            self.stream.writeln('LSProf output for %s(%s, %s)' % bench_called)
521
479
            stats.pprint(file=self.stream)
524
482
        self.stream.flush()
525
483
 
526
484
    def report_skip(self, test, skip_excinfo):
 
485
        self.skip_count += 1
527
486
        self.stream.writeln(' SKIP %s\n%s'
528
 
                % (self._testTimeString(test),
529
 
                   self._error_summary(skip_excinfo)))
530
 
 
531
 
    def report_not_applicable(self, test, skip_excinfo):
532
 
        self.stream.writeln('  N/A %s\n%s'
533
 
                % (self._testTimeString(test),
 
487
                % (self._testTimeString(),
534
488
                   self._error_summary(skip_excinfo)))
535
489
 
536
490
    def report_unsupported(self, test, feature):
537
491
        """test cannot be run because feature is missing."""
538
492
        self.stream.writeln("NODEP %s\n    The feature '%s' is not available."
539
 
                %(self._testTimeString(test), feature))
 
493
                %(self._testTimeString(), feature))
 
494
                  
540
495
 
541
496
 
542
497
class TextTestRunner(object):
546
501
                 stream=sys.stderr,
547
502
                 descriptions=0,
548
503
                 verbosity=1,
 
504
                 keep_output=False,
549
505
                 bench_history=None,
 
506
                 use_numbered_dirs=False,
550
507
                 list_only=False
551
508
                 ):
552
509
        self.stream = unittest._WritelnDecorator(stream)
553
510
        self.descriptions = descriptions
554
511
        self.verbosity = verbosity
 
512
        self.keep_output = keep_output
555
513
        self._bench_history = bench_history
 
514
        self.use_numbered_dirs = use_numbered_dirs
556
515
        self.list_only = list_only
557
516
 
558
517
    def run(self, test):
567
526
                              self.verbosity,
568
527
                              bench_history=self._bench_history,
569
528
                              num_tests=test.countTestCases(),
 
529
                              use_numbered_dirs=self.use_numbered_dirs,
570
530
                              )
571
531
        result.stop_early = self.stop_on_failure
572
532
        result.report_starting()
616
576
            for feature, count in sorted(result.unsupported.items()):
617
577
                self.stream.writeln("Missing feature '%s' skipped %d tests." %
618
578
                    (feature, count))
 
579
        result.report_cleaning_up()
 
580
        # This is still a little bogus, 
 
581
        # but only a little. Folk not using our testrunner will
 
582
        # have to delete their temp directories themselves.
 
583
        test_root = TestCaseWithMemoryTransport.TEST_ROOT
 
584
        if result.wasSuccessful() or not self.keep_output:
 
585
            if test_root is not None:
 
586
                # If LANG=C we probably have created some bogus paths
 
587
                # which rmtree(unicode) will fail to delete
 
588
                # so make sure we are using rmtree(str) to delete everything
 
589
                # except on win32, where rmtree(str) will fail
 
590
                # since it doesn't have the property of byte-stream paths
 
591
                # (they are either ascii or mbcs)
 
592
                if sys.platform == 'win32':
 
593
                    # make sure we are using the unicode win32 api
 
594
                    test_root = unicode(test_root)
 
595
                else:
 
596
                    test_root = test_root.encode(
 
597
                        sys.getfilesystemencoding())
 
598
                _rmtree_temp_dir(test_root)
 
599
        else:
 
600
            note("Failed tests working directories are in '%s'\n", test_root)
 
601
        TestCaseWithMemoryTransport.TEST_ROOT = None
619
602
        result.finished()
620
603
        return result
621
604
 
637
620
    """Indicates that a test was intentionally skipped, rather than failing."""
638
621
 
639
622
 
640
 
class TestNotApplicable(TestSkipped):
641
 
    """A test is not applicable to the situation where it was run.
642
 
 
643
 
    This is only normally raised by parameterized tests, if they find that 
644
 
    the instance they're constructed upon does not support one aspect 
645
 
    of its interface.
646
 
    """
647
 
 
648
 
 
649
623
class KnownFailure(AssertionError):
650
624
    """Indicates that a test failed in a precisely expected manner.
651
625
 
749
723
    def get_non_echoed_password(self, prompt):
750
724
        """Get password from stdin without trying to handle the echo mode"""
751
725
        if prompt:
752
 
            self.stdout.write(prompt.encode(self.stdout.encoding, 'replace'))
 
726
            self.stdout.write(prompt)
753
727
        password = self.stdin.readline()
754
728
        if not password:
755
729
            raise EOFError
784
758
    _keep_log_file = False
785
759
    # record lsprof data when performing benchmark calls.
786
760
    _gather_lsprof_in_benchmarks = False
787
 
    attrs_to_keep = ('_testMethodName', '_testMethodDoc',
788
 
                     '_log_contents', '_log_file_name', '_benchtime',
789
 
                     '_TestCase__testMethodName')
790
761
 
791
762
    def __init__(self, methodName='testMethod'):
792
763
        super(TestCase, self).__init__(methodName)
795
766
    def setUp(self):
796
767
        unittest.TestCase.setUp(self)
797
768
        self._cleanEnvironment()
 
769
        bzrlib.trace.disable_default_logging()
798
770
        self._silenceUI()
799
771
        self._startLogFile()
800
772
        self._benchcalls = []
801
773
        self._benchtime = None
802
774
        self._clear_hooks()
803
 
        self._clear_debug_flags()
804
 
 
805
 
    def _clear_debug_flags(self):
806
 
        """Prevent externally set debug flags affecting tests.
807
 
        
808
 
        Tests that want to use debug flags can just set them in the
809
 
        debug_flags set during setup/teardown.
810
 
        """
811
 
        if 'selftest_debug' not in debug.debug_flags:
812
 
            self._preserved_debug_flags = set(debug.debug_flags)
813
 
            debug.debug_flags.clear()
814
 
            self.addCleanup(self._restore_debug_flags)
815
775
 
816
776
    def _clear_hooks(self):
817
777
        # prevent hooks affecting tests
819
779
        import bzrlib.smart.server
820
780
        self._preserved_hooks = {
821
781
            bzrlib.branch.Branch: bzrlib.branch.Branch.hooks,
822
 
            bzrlib.mutabletree.MutableTree: bzrlib.mutabletree.MutableTree.hooks,
823
782
            bzrlib.smart.server.SmartTCPServer: bzrlib.smart.server.SmartTCPServer.hooks,
824
783
            }
825
784
        self.addCleanup(self._restoreHooks)
826
785
        # reset all hooks to an empty instance of the appropriate type
827
786
        bzrlib.branch.Branch.hooks = bzrlib.branch.BranchHooks()
828
787
        bzrlib.smart.server.SmartTCPServer.hooks = bzrlib.smart.server.SmartServerHooks()
 
788
        # FIXME: Rather than constructing new objects like this, how about
 
789
        # having save() and clear() methods on the base Hook class? mbp
 
790
        # 20070416
829
791
 
830
792
    def _silenceUI(self):
831
793
        """Turn off UI for duration of test"""
863
825
            message += '\n'
864
826
        raise AssertionError("%snot equal:\na = %s\nb = %s\n"
865
827
            % (message,
866
 
               pformat(a), pformat(b)))
 
828
               pformat(a, indent=4), pformat(b, indent=4)))
867
829
 
868
830
    assertEquals = assertEqual
869
831
 
878
840
            return
879
841
        if message is None:
880
842
            message = "texts not equal:\n"
881
 
        raise AssertionError(message +
882
 
                             self._ndiff_strings(a, b))
 
843
        raise AssertionError(message + 
 
844
                             self._ndiff_strings(a, b))      
883
845
        
884
846
    def assertEqualMode(self, mode, mode_test):
885
847
        self.assertEqual(mode, mode_test,
886
848
                         'mode mismatch %o != %o' % (mode, mode_test))
887
849
 
888
 
    def assertPositive(self, val):
889
 
        """Assert that val is greater than 0."""
890
 
        self.assertTrue(val > 0, 'expected a positive value, but got %s' % val)
891
 
 
892
 
    def assertNegative(self, val):
893
 
        """Assert that val is less than 0."""
894
 
        self.assertTrue(val < 0, 'expected a negative value, but got %s' % val)
895
 
 
896
850
    def assertStartsWith(self, s, prefix):
897
851
        if not s.startswith(prefix):
898
852
            raise AssertionError('string %r does not start with %r' % (s, prefix))
905
859
    def assertContainsRe(self, haystack, needle_re):
906
860
        """Assert that a contains something matching a regular expression."""
907
861
        if not re.search(needle_re, haystack):
908
 
            if '\n' in haystack or len(haystack) > 60:
909
 
                # a long string, format it in a more readable way
910
 
                raise AssertionError(
911
 
                        'pattern "%s" not found in\n"""\\\n%s"""\n'
912
 
                        % (needle_re, haystack))
913
 
            else:
914
 
                raise AssertionError('pattern "%s" not found in "%s"'
915
 
                        % (needle_re, haystack))
 
862
            raise AssertionError('pattern "%r" not found in "%r"'
 
863
                    % (needle_re, haystack))
916
864
 
917
865
    def assertNotContainsRe(self, haystack, needle_re):
918
866
        """Assert that a does not match a regular expression"""
922
870
 
923
871
    def assertSubset(self, sublist, superlist):
924
872
        """Assert that every entry in sublist is present in superlist."""
925
 
        missing = set(sublist) - set(superlist)
 
873
        missing = []
 
874
        for entry in sublist:
 
875
            if entry not in superlist:
 
876
                missing.append(entry)
926
877
        if len(missing) > 0:
927
 
            raise AssertionError("value(s) %r not present in container %r" %
 
878
            raise AssertionError("value(s) %r not present in container %r" % 
928
879
                                 (missing, superlist))
929
880
 
930
881
    def assertListRaises(self, excClass, func, *args, **kwargs):
945
896
                excName = str(excClass)
946
897
            raise self.failureException, "%s not raised" % excName
947
898
 
948
 
    def assertRaises(self, excClass, callableObj, *args, **kwargs):
 
899
    def assertRaises(self, excClass, func, *args, **kwargs):
949
900
        """Assert that a callable raises a particular exception.
950
901
 
951
902
        :param excClass: As for the except statement, this may be either an
952
 
            exception class, or a tuple of classes.
953
 
        :param callableObj: A callable, will be passed ``*args`` and
954
 
            ``**kwargs``.
 
903
        exception class, or a tuple of classes.
955
904
 
956
905
        Returns the exception so that you can examine it.
957
906
        """
958
907
        try:
959
 
            callableObj(*args, **kwargs)
 
908
            func(*args, **kwargs)
960
909
        except excClass, e:
961
910
            return e
962
911
        else:
993
942
        self.assertEqual(mode, actual_mode,
994
943
            'mode of %r incorrect (%o != %o)' % (path, mode, actual_mode))
995
944
 
996
 
    def assertIsSameRealPath(self, path1, path2):
997
 
        """Fail if path1 and path2 points to different files"""
998
 
        self.assertEqual(osutils.realpath(path1),
999
 
                         osutils.realpath(path2),
1000
 
                         "apparent paths:\na = %s\nb = %s\n," % (path1, path2))
1001
 
 
1002
945
    def assertIsInstance(self, obj, kls):
1003
946
        """Fail if obj is not an instance of kls"""
1004
947
        if not isinstance(obj, kls):
1040
983
        else:
1041
984
            self.fail('Unexpected success.  Should have failed: %s' % reason)
1042
985
 
1043
 
    def assertFileEqual(self, content, path):
1044
 
        """Fail if path does not contain 'content'."""
1045
 
        self.failUnlessExists(path)
1046
 
        f = file(path, 'rb')
1047
 
        try:
1048
 
            s = f.read()
1049
 
        finally:
1050
 
            f.close()
1051
 
        self.assertEqualDiff(content, s)
1052
 
 
1053
 
    def failUnlessExists(self, path):
1054
 
        """Fail unless path or paths, which may be abs or relative, exist."""
1055
 
        if not isinstance(path, basestring):
1056
 
            for p in path:
1057
 
                self.failUnlessExists(p)
1058
 
        else:
1059
 
            self.failUnless(osutils.lexists(path),path+" does not exist")
1060
 
 
1061
 
    def failIfExists(self, path):
1062
 
        """Fail if path or paths, which may be abs or relative, exist."""
1063
 
        if not isinstance(path, basestring):
1064
 
            for p in path:
1065
 
                self.failIfExists(p)
1066
 
        else:
1067
 
            self.failIf(osutils.lexists(path),path+" exists")
1068
 
 
1069
 
    def _capture_deprecation_warnings(self, a_callable, *args, **kwargs):
 
986
    def _capture_warnings(self, a_callable, *args, **kwargs):
1070
987
        """A helper for callDeprecated and applyDeprecated.
1071
988
 
1072
989
        :param a_callable: A callable to call.
1073
990
        :param args: The positional arguments for the callable
1074
991
        :param kwargs: The keyword arguments for the callable
1075
992
        :return: A tuple (warnings, result). result is the result of calling
1076
 
            a_callable(``*args``, ``**kwargs``).
 
993
            a_callable(*args, **kwargs).
1077
994
        """
1078
995
        local_warnings = []
1079
996
        def capture_warnings(msg, cls=None, stacklevel=None):
1092
1009
    def applyDeprecated(self, deprecation_format, a_callable, *args, **kwargs):
1093
1010
        """Call a deprecated callable without warning the user.
1094
1011
 
1095
 
        Note that this only captures warnings raised by symbol_versioning.warn,
1096
 
        not other callers that go direct to the warning module.
1097
 
 
1098
 
        To test that a deprecated method raises an error, do something like
1099
 
        this::
1100
 
 
1101
 
        self.assertRaises(errors.ReservedId,
1102
 
            self.applyDeprecated, zero_ninetyone,
1103
 
                br.append_revision, 'current:')
1104
 
 
1105
1012
        :param deprecation_format: The deprecation format that the callable
1106
 
            should have been deprecated with. This is the same type as the
1107
 
            parameter to deprecated_method/deprecated_function. If the
 
1013
            should have been deprecated with. This is the same type as the 
 
1014
            parameter to deprecated_method/deprecated_function. If the 
1108
1015
            callable is not deprecated with this format, an assertion error
1109
1016
            will be raised.
1110
1017
        :param a_callable: A callable to call. This may be a bound method or
1111
 
            a regular function. It will be called with ``*args`` and
1112
 
            ``**kwargs``.
 
1018
            a regular function. It will be called with *args and **kwargs.
1113
1019
        :param args: The positional arguments for the callable
1114
1020
        :param kwargs: The keyword arguments for the callable
1115
 
        :return: The result of a_callable(``*args``, ``**kwargs``)
 
1021
        :return: The result of a_callable(*args, **kwargs)
1116
1022
        """
1117
 
        call_warnings, result = self._capture_deprecation_warnings(a_callable,
 
1023
        call_warnings, result = self._capture_warnings(a_callable,
1118
1024
            *args, **kwargs)
1119
1025
        expected_first_warning = symbol_versioning.deprecation_string(
1120
1026
            a_callable, deprecation_format)
1124
1030
        self.assertEqual(expected_first_warning, call_warnings[0])
1125
1031
        return result
1126
1032
 
1127
 
    def callCatchWarnings(self, fn, *args, **kw):
1128
 
        """Call a callable that raises python warnings.
1129
 
 
1130
 
        The caller's responsible for examining the returned warnings.
1131
 
 
1132
 
        If the callable raises an exception, the exception is not
1133
 
        caught and propagates up to the caller.  In that case, the list
1134
 
        of warnings is not available.
1135
 
 
1136
 
        :returns: ([warning_object, ...], fn_result)
1137
 
        """
1138
 
        # XXX: This is not perfect, because it completely overrides the
1139
 
        # warnings filters, and some code may depend on suppressing particular
1140
 
        # warnings.  It's the easiest way to insulate ourselves from -Werror,
1141
 
        # though.  -- Andrew, 20071062
1142
 
        wlist = []
1143
 
        def _catcher(message, category, filename, lineno, file=None):
1144
 
            # despite the name, 'message' is normally(?) a Warning subclass
1145
 
            # instance
1146
 
            wlist.append(message)
1147
 
        saved_showwarning = warnings.showwarning
1148
 
        saved_filters = warnings.filters
1149
 
        try:
1150
 
            warnings.showwarning = _catcher
1151
 
            warnings.filters = []
1152
 
            result = fn(*args, **kw)
1153
 
        finally:
1154
 
            warnings.showwarning = saved_showwarning
1155
 
            warnings.filters = saved_filters
1156
 
        return wlist, result
1157
 
 
1158
1033
    def callDeprecated(self, expected, callable, *args, **kwargs):
1159
1034
        """Assert that a callable is deprecated in a particular way.
1160
1035
 
1163
1038
        as it allows you to simply specify the deprecation format being used
1164
1039
        and will ensure that that is issued for the function being called.
1165
1040
 
1166
 
        Note that this only captures warnings raised by symbol_versioning.warn,
1167
 
        not other callers that go direct to the warning module.  To catch
1168
 
        general warnings, use callCatchWarnings.
1169
 
 
1170
1041
        :param expected: a list of the deprecation warnings expected, in order
1171
1042
        :param callable: The callable to call
1172
1043
        :param args: The positional arguments for the callable
1173
1044
        :param kwargs: The keyword arguments for the callable
1174
1045
        """
1175
 
        call_warnings, result = self._capture_deprecation_warnings(callable,
 
1046
        call_warnings, result = self._capture_warnings(callable,
1176
1047
            *args, **kwargs)
1177
1048
        self.assertEqual(expected, call_warnings)
1178
1049
        return result
1184
1055
        """
1185
1056
        fileno, name = tempfile.mkstemp(suffix='.log', prefix='testbzr')
1186
1057
        self._log_file = os.fdopen(fileno, 'w+')
1187
 
        self._log_memento = bzrlib.trace.push_log_file(self._log_file)
 
1058
        self._log_nonce = bzrlib.trace.enable_test_log(self._log_file)
1188
1059
        self._log_file_name = name
1189
1060
        self.addCleanup(self._finishLogFile)
1190
1061
 
1195
1066
        """
1196
1067
        if self._log_file is None:
1197
1068
            return
1198
 
        bzrlib.trace.pop_log_file(self._log_memento)
 
1069
        bzrlib.trace.disable_test_log(self._log_nonce)
1199
1070
        self._log_file.close()
1200
1071
        self._log_file = None
1201
1072
        if not self._keep_log_file:
1222
1093
            'BZR_HOME': None, # Don't inherit BZR_HOME to all the tests.
1223
1094
            'HOME': os.getcwd(),
1224
1095
            'APPDATA': None,  # bzr now use Win32 API and don't rely on APPDATA
1225
 
            'BZR_EDITOR': None, # test_msgeditor manipulates this variable
1226
1096
            'BZR_EMAIL': None,
1227
1097
            'BZREMAIL': None, # may still be present in the environment
1228
1098
            'EMAIL': None,
1229
1099
            'BZR_PROGRESS_BAR': None,
1230
 
            'BZR_LOG': None,
1231
 
            # SSH Agent
1232
 
            'SSH_AUTH_SOCK': None,
1233
1100
            # Proxies
1234
1101
            'http_proxy': None,
1235
1102
            'HTTP_PROXY': None,
1244
1111
            # -- vila 20061212
1245
1112
            'ftp_proxy': None,
1246
1113
            'FTP_PROXY': None,
1247
 
            'BZR_REMOTE_PATH': None,
1248
1114
        }
1249
1115
        self.__old_env = {}
1250
1116
        self.addCleanup(self._restoreEnvironment)
1255
1121
        """Set an environment variable, and reset it when finished."""
1256
1122
        self.__old_env[name] = osutils.set_or_unset_env(name, newvalue)
1257
1123
 
1258
 
    def _restore_debug_flags(self):
1259
 
        debug.debug_flags.clear()
1260
 
        debug.debug_flags.update(self._preserved_debug_flags)
1261
 
 
1262
1124
    def _restoreEnvironment(self):
1263
1125
        for name, value in self.__old_env.iteritems():
1264
1126
            osutils.set_or_unset_env(name, value)
1282
1144
                    result.addSuccess(self)
1283
1145
                result.stopTest(self)
1284
1146
                return
1285
 
        try:
1286
 
            return unittest.TestCase.run(self, result)
1287
 
        finally:
1288
 
            saved_attrs = {}
1289
 
            absent_attr = object()
1290
 
            for attr_name in self.attrs_to_keep:
1291
 
                attr = getattr(self, attr_name, absent_attr)
1292
 
                if attr is not absent_attr:
1293
 
                    saved_attrs[attr_name] = attr
1294
 
            self.__dict__ = saved_attrs
 
1147
        return unittest.TestCase.run(self, result)
1295
1148
 
1296
1149
    def tearDown(self):
1297
1150
        self._runCleanups()
1336
1189
        mutter(*args)
1337
1190
 
1338
1191
    def _get_log(self, keep_log_file=False):
1339
 
        """Get the log from bzrlib.trace calls from this test.
1340
 
 
1341
 
        :param keep_log_file: When True, if the log is still a file on disk
1342
 
            leave it as a file on disk. When False, if the log is still a file
1343
 
            on disk, the log file is deleted and the log preserved as
1344
 
            self._log_contents.
1345
 
        :return: A string containing the log.
1346
 
        """
 
1192
        """Return as a string the log for this test. If the file is still
 
1193
        on disk and keep_log_file=False, delete the log file and store the
 
1194
        content in self._log_contents."""
1347
1195
        # flush the log file, to get all content
1348
1196
        import bzrlib.trace
1349
1197
        bzrlib.trace._trace_file.flush()
1350
1198
        if self._log_contents:
1351
 
            # XXX: this can hardly contain the content flushed above --vila
1352
 
            # 20080128
1353
1199
            return self._log_contents
1354
1200
        if self._log_file_name is not None:
1355
1201
            logfile = open(self._log_file_name)
1363
1209
                    os.remove(self._log_file_name)
1364
1210
                except OSError, e:
1365
1211
                    if sys.platform == 'win32' and e.errno == errno.EACCES:
1366
 
                        sys.stderr.write(('Unable to delete log file '
1367
 
                                             ' %r\n' % self._log_file_name))
 
1212
                        print >>sys.stderr, ('Unable to delete log file '
 
1213
                                             ' %r' % self._log_file_name)
1368
1214
                    else:
1369
1215
                        raise
1370
1216
            return log_contents
1371
1217
        else:
1372
1218
            return "DELETED log file to reduce memory footprint"
1373
1219
 
 
1220
    def capture(self, cmd, retcode=0):
 
1221
        """Shortcut that splits cmd into words, runs, and returns stdout"""
 
1222
        return self.run_bzr_captured(cmd.split(), retcode=retcode)[0]
 
1223
 
1374
1224
    def requireFeature(self, feature):
1375
1225
        """This test requires a specific feature is available.
1376
1226
 
1379
1229
        if not feature.available():
1380
1230
            raise UnavailableFeature(feature)
1381
1231
 
1382
 
    def _run_bzr_autosplit(self, args, retcode, encoding, stdin,
1383
 
            working_dir):
1384
 
        """Run bazaar command line, splitting up a string command line."""
1385
 
        if isinstance(args, basestring):
1386
 
            # shlex don't understand unicode strings,
1387
 
            # so args should be plain string (bialix 20070906)
1388
 
            args = list(shlex.split(str(args)))
1389
 
        return self._run_bzr_core(args, retcode=retcode,
1390
 
                encoding=encoding, stdin=stdin, working_dir=working_dir,
1391
 
                )
1392
 
 
1393
 
    def _run_bzr_core(self, args, retcode, encoding, stdin,
1394
 
            working_dir):
 
1232
    def run_bzr_captured(self, argv, retcode=0, encoding=None, stdin=None,
 
1233
                         working_dir=None):
 
1234
        """Invoke bzr and return (stdout, stderr).
 
1235
 
 
1236
        Useful for code that wants to check the contents of the
 
1237
        output, the way error messages are presented, etc.
 
1238
 
 
1239
        This should be the main method for tests that want to exercise the
 
1240
        overall behavior of the bzr application (rather than a unit test
 
1241
        or a functional test of the library.)
 
1242
 
 
1243
        Much of the old code runs bzr by forking a new copy of Python, but
 
1244
        that is slower, harder to debug, and generally not necessary.
 
1245
 
 
1246
        This runs bzr through the interface that catches and reports
 
1247
        errors, and with logging set to something approximating the
 
1248
        default, so that error reporting can be checked.
 
1249
 
 
1250
        :param argv: arguments to invoke bzr
 
1251
        :param retcode: expected return code, or None for don't-care.
 
1252
        :param encoding: encoding for sys.stdout and sys.stderr
 
1253
        :param stdin: A string to be used as stdin for the command.
 
1254
        :param working_dir: Change to this directory before running
 
1255
        """
1395
1256
        if encoding is None:
1396
1257
            encoding = bzrlib.user_encoding
1397
1258
        stdout = StringIOWrapper()
1399
1260
        stdout.encoding = encoding
1400
1261
        stderr.encoding = encoding
1401
1262
 
1402
 
        self.log('run bzr: %r', args)
 
1263
        self.log('run bzr: %r', argv)
1403
1264
        # FIXME: don't call into logging here
1404
1265
        handler = logging.StreamHandler(stderr)
1405
1266
        handler.setLevel(logging.INFO)
1414
1275
            os.chdir(working_dir)
1415
1276
 
1416
1277
        try:
1417
 
            result = self.apply_redirected(ui.ui_factory.stdin,
1418
 
                stdout, stderr,
1419
 
                bzrlib.commands.run_bzr_catch_user_errors,
1420
 
                args)
 
1278
            saved_debug_flags = frozenset(debug.debug_flags)
 
1279
            debug.debug_flags.clear()
 
1280
            try:
 
1281
                result = self.apply_redirected(ui.ui_factory.stdin,
 
1282
                                               stdout, stderr,
 
1283
                                               bzrlib.commands.run_bzr_catch_errors,
 
1284
                                               argv)
 
1285
            finally:
 
1286
                debug.debug_flags.update(saved_debug_flags)
1421
1287
        finally:
1422
1288
            logger.removeHandler(handler)
1423
1289
            ui.ui_factory = old_ui_factory
1435
1301
                              message='Unexpected return code')
1436
1302
        return out, err
1437
1303
 
1438
 
    def run_bzr(self, args, retcode=0, encoding=None, stdin=None,
1439
 
                working_dir=None, error_regexes=[], output_encoding=None):
 
1304
    def run_bzr(self, *args, **kwargs):
1440
1305
        """Invoke bzr, as if it were run from the command line.
1441
1306
 
1442
 
        The argument list should not include the bzr program name - the
1443
 
        first argument is normally the bzr command.  Arguments may be
1444
 
        passed in three ways:
1445
 
 
1446
 
        1- A list of strings, eg ["commit", "a"].  This is recommended
1447
 
        when the command contains whitespace or metacharacters, or 
1448
 
        is built up at run time.
1449
 
 
1450
 
        2- A single string, eg "add a".  This is the most convenient 
1451
 
        for hardcoded commands.
1452
 
 
1453
 
        This runs bzr through the interface that catches and reports
1454
 
        errors, and with logging set to something approximating the
1455
 
        default, so that error reporting can be checked.
1456
 
 
1457
1307
        This should be the main method for tests that want to exercise the
1458
1308
        overall behavior of the bzr application (rather than a unit test
1459
1309
        or a functional test of the library.)
1461
1311
        This sends the stdout/stderr results into the test's log,
1462
1312
        where it may be useful for debugging.  See also run_captured.
1463
1313
 
1464
 
        :keyword stdin: A string to be used as stdin for the command.
1465
 
        :keyword retcode: The status code the command should return;
1466
 
            default 0.
1467
 
        :keyword working_dir: The directory to run the command in
1468
 
        :keyword error_regexes: A list of expected error messages.  If
1469
 
            specified they must be seen in the error output of the command.
 
1314
        :param stdin: A string to be used as stdin for the command.
 
1315
        :param retcode: The status code the command should return
 
1316
        :param working_dir: The directory to run the command in
1470
1317
        """
1471
 
        out, err = self._run_bzr_autosplit(
1472
 
            args=args,
1473
 
            retcode=retcode,
1474
 
            encoding=encoding,
1475
 
            stdin=stdin,
1476
 
            working_dir=working_dir,
1477
 
            )
 
1318
        retcode = kwargs.pop('retcode', 0)
 
1319
        encoding = kwargs.pop('encoding', None)
 
1320
        stdin = kwargs.pop('stdin', None)
 
1321
        working_dir = kwargs.pop('working_dir', None)
 
1322
        error_regexes = kwargs.pop('error_regexes', [])
 
1323
 
 
1324
        out, err = self.run_bzr_captured(args, retcode=retcode,
 
1325
            encoding=encoding, stdin=stdin, working_dir=working_dir)
 
1326
 
1478
1327
        for regex in error_regexes:
1479
1328
            self.assertContainsRe(err, regex)
1480
1329
        return out, err
1481
1330
 
 
1331
 
 
1332
    def run_bzr_decode(self, *args, **kwargs):
 
1333
        if 'encoding' in kwargs:
 
1334
            encoding = kwargs['encoding']
 
1335
        else:
 
1336
            encoding = bzrlib.user_encoding
 
1337
        return self.run_bzr(*args, **kwargs)[0].decode(encoding)
 
1338
 
1482
1339
    def run_bzr_error(self, error_regexes, *args, **kwargs):
1483
1340
        """Run bzr, and check that stderr contains the supplied regexes
1484
 
 
1485
 
        :param error_regexes: Sequence of regular expressions which
 
1341
        
 
1342
        :param error_regexes: Sequence of regular expressions which 
1486
1343
            must each be found in the error output. The relative ordering
1487
1344
            is not enforced.
1488
1345
        :param args: command-line arguments for bzr
1489
1346
        :param kwargs: Keyword arguments which are interpreted by run_bzr
1490
1347
            This function changes the default value of retcode to be 3,
1491
1348
            since in most cases this is run when you expect bzr to fail.
1492
 
 
1493
 
        :return: (out, err) The actual output of running the command (in case
1494
 
            you want to do more inspection)
1495
 
 
1496
 
        Examples of use::
1497
 
 
 
1349
        :return: (out, err) The actual output of running the command (in case you
 
1350
                 want to do more inspection)
 
1351
 
 
1352
        Examples of use:
1498
1353
            # Make sure that commit is failing because there is nothing to do
1499
1354
            self.run_bzr_error(['no changes to commit'],
1500
 
                               ['commit', '-m', 'my commit comment'])
 
1355
                               'commit', '-m', 'my commit comment')
1501
1356
            # Make sure --strict is handling an unknown file, rather than
1502
1357
            # giving us the 'nothing to do' error
1503
1358
            self.build_tree(['unknown'])
1504
1359
            self.run_bzr_error(['Commit refused because there are unknown files'],
1505
 
                               ['commit', --strict', '-m', 'my commit comment'])
 
1360
                               'commit', '--strict', '-m', 'my commit comment')
1506
1361
        """
1507
1362
        kwargs.setdefault('retcode', 3)
1508
 
        kwargs['error_regexes'] = error_regexes
1509
 
        out, err = self.run_bzr(*args, **kwargs)
 
1363
        out, err = self.run_bzr(error_regexes=error_regexes, *args, **kwargs)
1510
1364
        return out, err
1511
1365
 
1512
1366
    def run_bzr_subprocess(self, *args, **kwargs):
1518
1372
        handling, or early startup code, etc.  Subprocess code can't be 
1519
1373
        profiled or debugged so easily.
1520
1374
 
1521
 
        :keyword retcode: The status code that is expected.  Defaults to 0.  If
 
1375
        :param retcode: The status code that is expected.  Defaults to 0.  If
1522
1376
            None is supplied, the status code is not checked.
1523
 
        :keyword env_changes: A dictionary which lists changes to environment
 
1377
        :param env_changes: A dictionary which lists changes to environment
1524
1378
            variables. A value of None will unset the env variable.
1525
1379
            The values must be strings. The change will only occur in the
1526
1380
            child, so you don't need to fix the environment after running.
1527
 
        :keyword universal_newlines: Convert CRLF => LF
1528
 
        :keyword allow_plugins: By default the subprocess is run with
 
1381
        :param universal_newlines: Convert CRLF => LF
 
1382
        :param allow_plugins: By default the subprocess is run with
1529
1383
            --no-plugins to ensure test reproducibility. Also, it is possible
1530
1384
            for system-wide plugins to create unexpected output on stderr,
1531
1385
            which can cause unnecessary test failures.
1533
1387
        env_changes = kwargs.get('env_changes', {})
1534
1388
        working_dir = kwargs.get('working_dir', None)
1535
1389
        allow_plugins = kwargs.get('allow_plugins', False)
1536
 
        if len(args) == 1:
1537
 
            if isinstance(args[0], list):
1538
 
                args = args[0]
1539
 
            elif isinstance(args[0], basestring):
1540
 
                args = list(shlex.split(args[0]))
1541
 
        else:
1542
 
            symbol_versioning.warn(zero_ninetyone %
1543
 
                                   "passing varargs to run_bzr_subprocess",
1544
 
                                   DeprecationWarning, stacklevel=3)
1545
1390
        process = self.start_bzr_subprocess(args, env_changes=env_changes,
1546
1391
                                            working_dir=working_dir,
1547
1392
                                            allow_plugins=allow_plugins)
1564
1409
        profiled or debugged so easily.
1565
1410
 
1566
1411
        :param process_args: a list of arguments to pass to the bzr executable,
1567
 
            for example ``['--version']``.
 
1412
            for example `['--version']`.
1568
1413
        :param env_changes: A dictionary which lists changes to environment
1569
1414
            variables. A value of None will unset the env variable.
1570
1415
            The values must be strings. The change will only occur in the
1668
1513
        shape = list(shape)             # copy
1669
1514
        for path, ie in inv.entries():
1670
1515
            name = path.replace('\\', '/')
1671
 
            if ie.kind == 'directory':
 
1516
            if ie.kind == 'dir':
1672
1517
                name = name + '/'
1673
1518
            if name in shape:
1674
1519
                shape.remove(name)
1711
1556
            sys.stderr = real_stderr
1712
1557
            sys.stdin = real_stdin
1713
1558
 
 
1559
    @symbol_versioning.deprecated_method(symbol_versioning.zero_eleven)
 
1560
    def merge(self, branch_from, wt_to):
 
1561
        """A helper for tests to do a ui-less merge.
 
1562
 
 
1563
        This should move to the main library when someone has time to integrate
 
1564
        it in.
 
1565
        """
 
1566
        # minimal ui-less merge.
 
1567
        wt_to.branch.fetch(branch_from)
 
1568
        base_rev = common_ancestor(branch_from.last_revision(),
 
1569
                                   wt_to.branch.last_revision(),
 
1570
                                   wt_to.branch.repository)
 
1571
        merge_inner(wt_to.branch, branch_from.basis_tree(),
 
1572
                    wt_to.branch.repository.revision_tree(base_rev),
 
1573
                    this_tree=wt_to)
 
1574
        wt_to.add_parent_tree_id(branch_from.last_revision())
 
1575
 
1714
1576
    def reduceLockdirTimeout(self):
1715
1577
        """Reduce the default lock timeout for the duration of the test, so that
1716
1578
        if LockContention occurs during a test, it does so quickly.
1723
1585
        self.addCleanup(resetTimeout)
1724
1586
        bzrlib.lockdir._DEFAULT_TIMEOUT_SECONDS = 0
1725
1587
 
1726
 
    def make_utf8_encoded_stringio(self, encoding_type=None):
1727
 
        """Return a StringIOWrapper instance, that will encode Unicode
1728
 
        input to UTF-8.
1729
 
        """
1730
 
        if encoding_type is None:
1731
 
            encoding_type = 'strict'
1732
 
        sio = StringIO()
1733
 
        output_encoding = 'utf-8'
1734
 
        sio = codecs.getwriter(output_encoding)(sio, errors=encoding_type)
1735
 
        sio.encoding = output_encoding
1736
 
        return sio
 
1588
BzrTestBase = TestCase
1737
1589
 
1738
1590
 
1739
1591
class TestCaseWithMemoryTransport(TestCase):
1750
1602
    file defaults for the transport in tests, nor does it obey the command line
1751
1603
    override, so tests that accidentally write to the common directory should
1752
1604
    be rare.
1753
 
 
1754
 
    :cvar TEST_ROOT: Directory containing all temporary directories, plus
1755
 
    a .bzr directory that stops us ascending higher into the filesystem.
1756
1605
    """
1757
1606
 
1758
1607
    TEST_ROOT = None
1759
1608
    _TEST_NAME = 'test'
1760
1609
 
 
1610
 
1761
1611
    def __init__(self, methodName='runTest'):
1762
 
        # allow test parameterization after test construction and before test
1763
 
        # execution. Variables that the parameterizer sets need to be 
 
1612
        # allow test parameterisation after test construction and before test
 
1613
        # execution. Variables that the parameteriser sets need to be 
1764
1614
        # ones that are not set by setUp, or setUp will trash them.
1765
1615
        super(TestCaseWithMemoryTransport, self).__init__(methodName)
1766
1616
        self.vfs_transport_factory = default_transport
1768
1618
        self.transport_readonly_server = None
1769
1619
        self.__vfs_server = None
1770
1620
 
1771
 
    def get_transport(self, relpath=None):
1772
 
        """Return a writeable transport.
1773
 
 
1774
 
        This transport is for the test scratch space relative to
1775
 
        "self._test_root"
1776
 
        
1777
 
        :param relpath: a path relative to the base url.
1778
 
        """
1779
 
        t = get_transport(self.get_url(relpath))
 
1621
    def get_transport(self):
 
1622
        """Return a writeable transport for the test scratch space"""
 
1623
        t = get_transport(self.get_url())
1780
1624
        self.assertFalse(t.is_readonly())
1781
1625
        return t
1782
1626
 
1783
 
    def get_readonly_transport(self, relpath=None):
 
1627
    def get_readonly_transport(self):
1784
1628
        """Return a readonly transport for the test scratch space
1785
1629
        
1786
1630
        This can be used to test that operations which should only need
1787
1631
        readonly access in fact do not try to write.
1788
 
 
1789
 
        :param relpath: a path relative to the base url.
1790
1632
        """
1791
 
        t = get_transport(self.get_readonly_url(relpath))
 
1633
        t = get_transport(self.get_readonly_url())
1792
1634
        self.assertTrue(t.is_readonly())
1793
1635
        return t
1794
1636
 
1825
1667
        These should only be downwards relative, not upwards.
1826
1668
        """
1827
1669
        base = self.get_readonly_server().get_url()
1828
 
        return self._adjust_url(base, relpath)
 
1670
        if relpath is not None:
 
1671
            if not base.endswith('/'):
 
1672
                base = base + '/'
 
1673
            base = base + relpath
 
1674
        return base
1829
1675
 
1830
1676
    def get_vfs_only_server(self):
1831
1677
        """Get the vfs only read/write server instance.
1906
1752
        capabilities of the local filesystem, but it might actually be a
1907
1753
        MemoryTransport or some other similar virtual filesystem.
1908
1754
 
1909
 
        This is the backing transport (if any) of the server returned by
 
1755
        This is the backing transport (if any) of the server returned by 
1910
1756
        get_url and get_readonly_url.
1911
1757
 
1912
1758
        :param relpath: provides for clients to get a path relative to the base
1913
1759
            url.  These should only be downwards relative, not upwards.
1914
 
        :return: A URL
1915
1760
        """
1916
1761
        base = self.get_vfs_only_server().get_url()
1917
1762
        return self._adjust_url(base, relpath)
1918
1763
 
1919
 
    def _create_safety_net(self):
1920
 
        """Make a fake bzr directory.
1921
 
 
1922
 
        This prevents any tests propagating up onto the TEST_ROOT directory's
1923
 
        real branch.
1924
 
        """
1925
 
        root = TestCaseWithMemoryTransport.TEST_ROOT
1926
 
        bzrdir.BzrDir.create_standalone_workingtree(root)
1927
 
 
1928
 
    def _check_safety_net(self):
1929
 
        """Check that the safety .bzr directory have not been touched.
1930
 
 
1931
 
        _make_test_root have created a .bzr directory to prevent tests from
1932
 
        propagating. This method ensures than a test did not leaked.
1933
 
        """
1934
 
        root = TestCaseWithMemoryTransport.TEST_ROOT
1935
 
        wt = workingtree.WorkingTree.open(root)
1936
 
        last_rev = wt.last_revision()
1937
 
        if last_rev != 'null:':
1938
 
            # The current test have modified the /bzr directory, we need to
1939
 
            # recreate a new one or all the followng tests will fail.
1940
 
            # If you need to inspect its content uncomment the following line
1941
 
            # import pdb; pdb.set_trace()
1942
 
            _rmtree_temp_dir(root + '/.bzr')
1943
 
            self._create_safety_net()
1944
 
            raise AssertionError('%s/.bzr should not be modified' % root)
1945
 
 
1946
1764
    def _make_test_root(self):
1947
 
        if TestCaseWithMemoryTransport.TEST_ROOT is None:
1948
 
            root = osutils.mkdtemp(prefix='testbzr-', suffix='.tmp')
1949
 
            TestCaseWithMemoryTransport.TEST_ROOT = root
1950
 
 
1951
 
            self._create_safety_net()
1952
 
 
1953
 
            # The same directory is used by all tests, and we're not
1954
 
            # specifically told when all tests are finished.  This will do.
1955
 
            atexit.register(_rmtree_temp_dir, root)
1956
 
 
1957
 
        self.addCleanup(self._check_safety_net)
 
1765
        if TestCaseWithMemoryTransport.TEST_ROOT is not None:
 
1766
            return
 
1767
        i = 0
 
1768
        while True:
 
1769
            root = u'test%04d.tmp' % i
 
1770
            try:
 
1771
                os.mkdir(root)
 
1772
            except OSError, e:
 
1773
                if e.errno == errno.EEXIST:
 
1774
                    i += 1
 
1775
                    continue
 
1776
                else:
 
1777
                    raise
 
1778
            # successfully created
 
1779
            TestCaseWithMemoryTransport.TEST_ROOT = osutils.abspath(root)
 
1780
            break
 
1781
        # make a fake bzr directory there to prevent any tests propagating
 
1782
        # up onto the source directory's real branch
 
1783
        bzrdir.BzrDir.create_standalone_workingtree(
 
1784
            TestCaseWithMemoryTransport.TEST_ROOT)
1958
1785
 
1959
1786
    def makeAndChdirToTestDir(self):
1960
1787
        """Create a temporary directories for this one test.
1980
1807
            segments = maybe_a_url.rsplit('/', 1)
1981
1808
            t = get_transport(maybe_a_url)
1982
1809
            if len(segments) > 1 and segments[-1] not in ('', '.'):
1983
 
                t.ensure_base()
 
1810
                try:
 
1811
                    t.mkdir('.')
 
1812
                except errors.FileExists:
 
1813
                    pass
1984
1814
            if format is None:
1985
1815
                format = 'default'
1986
1816
            if isinstance(format, basestring):
2034
1864
    All test cases create their own directory within that.  If the
2035
1865
    tests complete successfully, the directory is removed.
2036
1866
 
2037
 
    :ivar test_base_dir: The path of the top-level directory for this 
2038
 
    test, which contains a home directory and a work directory.
2039
 
 
2040
 
    :ivar test_home_dir: An initially empty directory under test_base_dir
2041
 
    which is used as $HOME for this test.
2042
 
 
2043
 
    :ivar test_dir: A directory under test_base_dir used as the current
2044
 
    directory when the test proper is run.
 
1867
    InTempDir is an old alias for FunctionalTestCase.
2045
1868
    """
2046
1869
 
2047
1870
    OVERRIDE_PYTHON = 'python'
 
1871
    use_numbered_dirs = False
2048
1872
 
2049
1873
    def check_file_contents(self, filename, expect):
2050
1874
        self.log("check contents of file %s" % filename)
2060
1884
        For TestCaseInTempDir we create a temporary directory based on the test
2061
1885
        name and then create two subdirs - test and home under it.
2062
1886
        """
2063
 
        # create a directory within the top level test directory
2064
 
        candidate_dir = osutils.mkdtemp(dir=self.TEST_ROOT)
2065
 
        # now create test and home directories within this dir
2066
 
        self.test_base_dir = candidate_dir
2067
 
        self.test_home_dir = self.test_base_dir + '/home'
2068
 
        os.mkdir(self.test_home_dir)
2069
 
        self.test_dir = self.test_base_dir + '/work'
2070
 
        os.mkdir(self.test_dir)
2071
 
        os.chdir(self.test_dir)
2072
 
        # put name of test inside
2073
 
        f = file(self.test_base_dir + '/name', 'w')
2074
 
        try:
 
1887
        if self.use_numbered_dirs:  # strongly recommended on Windows
 
1888
                                    # due the path length limitation (260 ch.)
 
1889
            candidate_dir = '%s/%dK/%05d' % (self.TEST_ROOT,
 
1890
                                             int(self.number/1000),
 
1891
                                             self.number)
 
1892
            os.makedirs(candidate_dir)
 
1893
            self.test_home_dir = candidate_dir + '/home'
 
1894
            os.mkdir(self.test_home_dir)
 
1895
            self.test_dir = candidate_dir + '/work'
 
1896
            os.mkdir(self.test_dir)
 
1897
            os.chdir(self.test_dir)
 
1898
            # put name of test inside
 
1899
            f = file(candidate_dir + '/name', 'w')
2075
1900
            f.write(self.id())
2076
 
        finally:
2077
1901
            f.close()
2078
 
        self.addCleanup(self.deleteTestDir)
2079
 
 
2080
 
    def deleteTestDir(self):
2081
 
        os.chdir(self.TEST_ROOT)
2082
 
        _rmtree_temp_dir(self.test_base_dir)
 
1902
            return
 
1903
        # Else NAMED DIRS
 
1904
        # shorten the name, to avoid test failures due to path length
 
1905
        short_id = self.id().replace('bzrlib.tests.', '') \
 
1906
                   .replace('__main__.', '')[-100:]
 
1907
        # it's possible the same test class is run several times for
 
1908
        # parameterized tests, so make sure the names don't collide.  
 
1909
        i = 0
 
1910
        while True:
 
1911
            if i > 0:
 
1912
                candidate_dir = '%s/%s.%d' % (self.TEST_ROOT, short_id, i)
 
1913
            else:
 
1914
                candidate_dir = '%s/%s' % (self.TEST_ROOT, short_id)
 
1915
            if os.path.exists(candidate_dir):
 
1916
                i = i + 1
 
1917
                continue
 
1918
            else:
 
1919
                os.mkdir(candidate_dir)
 
1920
                self.test_home_dir = candidate_dir + '/home'
 
1921
                os.mkdir(self.test_home_dir)
 
1922
                self.test_dir = candidate_dir + '/work'
 
1923
                os.mkdir(self.test_dir)
 
1924
                os.chdir(self.test_dir)
 
1925
                break
2083
1926
 
2084
1927
    def build_tree(self, shape, line_endings='binary', transport=None):
2085
1928
        """Build a test tree according to a pattern.
2090
1933
        This assumes that all the elements in the tree being built are new.
2091
1934
 
2092
1935
        This doesn't add anything to a branch.
2093
 
 
2094
 
        :type shape:    list or tuple.
2095
1936
        :param line_endings: Either 'binary' or 'native'
2096
 
            in binary mode, exact contents are written in native mode, the
2097
 
            line endings match the default platform endings.
2098
 
        :param transport: A transport to write to, for building trees on VFS's.
2099
 
            If the transport is readonly or None, "." is opened automatically.
2100
 
        :return: None
 
1937
                             in binary mode, exact contents are written
 
1938
                             in native mode, the line endings match the
 
1939
                             default platform endings.
 
1940
 
 
1941
        :param transport: A transport to write to, for building trees on 
 
1942
                          VFS's. If the transport is readonly or None,
 
1943
                          "." is opened automatically.
2101
1944
        """
2102
 
        if type(shape) not in (list, tuple):
2103
 
            raise AssertionError("Parameter 'shape' should be "
2104
 
                "a list or a tuple. Got %r instead" % (shape,))
2105
1945
        # It's OK to just create them using forward slashes on windows.
2106
1946
        if transport is None or transport.is_readonly():
2107
1947
            transport = get_transport(".")
2123
1963
    def build_tree_contents(self, shape):
2124
1964
        build_tree_contents(shape)
2125
1965
 
2126
 
    def assertInWorkingTree(self, path, root_path='.', tree=None):
 
1966
    def assertFileEqual(self, content, path):
 
1967
        """Fail if path does not contain 'content'."""
 
1968
        self.failUnlessExists(path)
 
1969
        # TODO: jam 20060427 Shouldn't this be 'rb'?
 
1970
        f = file(path, 'r')
 
1971
        try:
 
1972
            s = f.read()
 
1973
        finally:
 
1974
            f.close()
 
1975
        self.assertEqualDiff(content, s)
 
1976
 
 
1977
    def failUnlessExists(self, path):
 
1978
        """Fail unless path or paths, which may be abs or relative, exist."""
 
1979
        if not isinstance(path, basestring):
 
1980
            for p in path:
 
1981
                self.failUnlessExists(p)
 
1982
        else:
 
1983
            self.failUnless(osutils.lexists(path),path+" does not exist")
 
1984
 
 
1985
    def failIfExists(self, path):
 
1986
        """Fail if path or paths, which may be abs or relative, exist."""
 
1987
        if not isinstance(path, basestring):
 
1988
            for p in path:
 
1989
                self.failIfExists(p)
 
1990
        else:
 
1991
            self.failIf(osutils.lexists(path),path+" exists")
 
1992
 
 
1993
    def assertInWorkingTree(self,path,root_path='.',tree=None):
2127
1994
        """Assert whether path or paths are in the WorkingTree"""
2128
1995
        if tree is None:
2129
1996
            tree = workingtree.WorkingTree.open(root_path)
2134
2001
            self.assertIsNot(tree.path2id(path), None,
2135
2002
                path+' not in working tree.')
2136
2003
 
2137
 
    def assertNotInWorkingTree(self, path, root_path='.', tree=None):
 
2004
    def assertNotInWorkingTree(self,path,root_path='.',tree=None):
2138
2005
        """Assert whether path or paths are not in the WorkingTree"""
2139
2006
        if tree is None:
2140
2007
            tree = workingtree.WorkingTree.open(root_path)
2250
2117
            self.transport_readonly_server = HttpServer
2251
2118
 
2252
2119
 
2253
 
def condition_id_re(pattern):
2254
 
    """Create a condition filter which performs a re check on a test's id.
2255
 
    
2256
 
    :param pattern: A regular expression string.
2257
 
    :return: A callable that returns True if the re matches.
2258
 
    """
2259
 
    filter_re = re.compile(pattern)
2260
 
    def condition(test):
2261
 
        test_id = test.id()
2262
 
        return filter_re.search(test_id)
2263
 
    return condition
2264
 
 
2265
 
 
2266
 
def condition_isinstance(klass_or_klass_list):
2267
 
    """Create a condition filter which returns isinstance(param, klass).
2268
 
    
2269
 
    :return: A callable which when called with one parameter obj return the
2270
 
        result of isinstance(obj, klass_or_klass_list).
2271
 
    """
2272
 
    def condition(obj):
2273
 
        return isinstance(obj, klass_or_klass_list)
2274
 
    return condition
2275
 
 
2276
 
 
2277
 
def condition_id_in_list(id_list):
2278
 
    """Create a condition filter which verify that test's id in a list.
2279
 
    
2280
 
    :param id_list: A TestIdList object.
2281
 
    :return: A callable that returns True if the test's id appears in the list.
2282
 
    """
2283
 
    def condition(test):
2284
 
        return id_list.includes(test.id())
2285
 
    return condition
2286
 
 
2287
 
 
2288
 
def exclude_tests_by_condition(suite, condition):
2289
 
    """Create a test suite which excludes some tests from suite.
2290
 
 
2291
 
    :param suite: The suite to get tests from.
2292
 
    :param condition: A callable whose result evaluates True when called with a
2293
 
        test case which should be excluded from the result.
2294
 
    :return: A suite which contains the tests found in suite that fail
2295
 
        condition.
2296
 
    """
2297
 
    result = []
2298
 
    for test in iter_suite_tests(suite):
2299
 
        if not condition(test):
2300
 
            result.append(test)
2301
 
    return TestUtil.TestSuite(result)
2302
 
 
2303
 
 
2304
 
def filter_suite_by_condition(suite, condition):
2305
 
    """Create a test suite by filtering another one.
2306
 
    
2307
 
    :param suite: The source suite.
2308
 
    :param condition: A callable whose result evaluates True when called with a
2309
 
        test case which should be included in the result.
2310
 
    :return: A suite which contains the tests found in suite that pass
2311
 
        condition.
2312
 
    """ 
2313
 
    result = []
2314
 
    for test in iter_suite_tests(suite):
2315
 
        if condition(test):
2316
 
            result.append(test)
2317
 
    return TestUtil.TestSuite(result)
2318
 
 
2319
 
 
2320
 
def filter_suite_by_re(suite, pattern, exclude_pattern=DEPRECATED_PARAMETER,
2321
 
                       random_order=DEPRECATED_PARAMETER):
 
2120
def filter_suite_by_re(suite, pattern, exclude_pattern=None,
 
2121
                       random_order=False):
2322
2122
    """Create a test suite by filtering another one.
2323
2123
    
2324
2124
    :param suite:           the source suite
2325
2125
    :param pattern:         pattern that names must match
2326
 
    :param exclude_pattern: A pattern that names must not match. This parameter
2327
 
        is deprecated as of bzrlib 1.0. Please use the separate function
2328
 
        exclude_tests_by_re instead.
2329
 
    :param random_order:    If True, tests in the new suite will be put in
2330
 
        random order. This parameter is deprecated as of bzrlib 1.0. Please
2331
 
        use the separate function randomize_suite instead.
 
2126
    :param exclude_pattern: pattern that names must not match, if any
 
2127
    :param random_order:    if True, tests in the new suite will be put in
 
2128
                            random order
2332
2129
    :returns: the newly created suite
2333
2130
    """ 
2334
 
    if deprecated_passed(exclude_pattern):
2335
 
        symbol_versioning.warn(
2336
 
            one_zero % "passing exclude_pattern to filter_suite_by_re",
2337
 
                DeprecationWarning, stacklevel=2)
2338
 
        if exclude_pattern is not None:
2339
 
            suite = exclude_tests_by_re(suite, exclude_pattern)
2340
 
    condition = condition_id_re(pattern)
2341
 
    result_suite = filter_suite_by_condition(suite, condition)
2342
 
    if deprecated_passed(random_order):
2343
 
        symbol_versioning.warn(
2344
 
            one_zero % "passing random_order to filter_suite_by_re",
2345
 
                DeprecationWarning, stacklevel=2)
2346
 
        if random_order:
2347
 
            result_suite = randomize_suite(result_suite)
2348
 
    return result_suite
2349
 
 
2350
 
 
2351
 
def filter_suite_by_id_list(suite, test_id_list):
2352
 
    """Create a test suite by filtering another one.
2353
 
 
2354
 
    :param suite: The source suite.
2355
 
    :param test_id_list: A list of the test ids to keep as strings.
2356
 
    :returns: the newly created suite
2357
 
    """
2358
 
    condition = condition_id_in_list(test_id_list)
2359
 
    result_suite = filter_suite_by_condition(suite, condition)
2360
 
    return result_suite
2361
 
 
2362
 
 
2363
 
def exclude_tests_by_re(suite, pattern):
2364
 
    """Create a test suite which excludes some tests from suite.
2365
 
 
2366
 
    :param suite: The suite to get tests from.
2367
 
    :param pattern: A regular expression string. Test ids that match this
2368
 
        pattern will be excluded from the result.
2369
 
    :return: A TestSuite that contains all the tests from suite without the
2370
 
        tests that matched pattern. The order of tests is the same as it was in
2371
 
        suite.
2372
 
    """
2373
 
    return exclude_tests_by_condition(suite, condition_id_re(pattern))
2374
 
 
2375
 
 
2376
 
def preserve_input(something):
2377
 
    """A helper for performing test suite transformation chains.
2378
 
 
2379
 
    :param something: Anything you want to preserve.
2380
 
    :return: Something.
2381
 
    """
2382
 
    return something
2383
 
 
2384
 
 
2385
 
def randomize_suite(suite):
2386
 
    """Return a new TestSuite with suite's tests in random order.
2387
 
    
2388
 
    The tests in the input suite are flattened into a single suite in order to
2389
 
    accomplish this. Any nested TestSuites are removed to provide global
2390
 
    randomness.
2391
 
    """
2392
 
    tests = list(iter_suite_tests(suite))
2393
 
    random.shuffle(tests)
2394
 
    return TestUtil.TestSuite(tests)
2395
 
 
2396
 
 
2397
 
@deprecated_function(one_zero)
 
2131
    return sort_suite_by_re(suite, pattern, exclude_pattern,
 
2132
        random_order, False)
 
2133
 
 
2134
 
2398
2135
def sort_suite_by_re(suite, pattern, exclude_pattern=None,
2399
2136
                     random_order=False, append_rest=True):
2400
 
    """DEPRECATED: Create a test suite by sorting another one.
2401
 
 
2402
 
    This method has been decomposed into separate helper methods that should be
2403
 
    called directly:
2404
 
     - filter_suite_by_re
2405
 
     - exclude_tests_by_re
2406
 
     - randomize_suite
2407
 
     - split_suite_by_re
 
2137
    """Create a test suite by sorting another one.
2408
2138
    
2409
2139
    :param suite:           the source suite
2410
2140
    :param pattern:         pattern that names must match in order to go
2411
2141
                            first in the new suite
2412
2142
    :param exclude_pattern: pattern that names must not match, if any
2413
2143
    :param random_order:    if True, tests in the new suite will be put in
2414
 
                            random order (with all tests matching pattern
2415
 
                            first).
 
2144
                            random order
2416
2145
    :param append_rest:     if False, pattern is a strict filter and not
2417
2146
                            just an ordering directive
2418
2147
    :returns: the newly created suite
2419
2148
    """ 
 
2149
    first = []
 
2150
    second = []
 
2151
    filter_re = re.compile(pattern)
2420
2152
    if exclude_pattern is not None:
2421
 
        suite = exclude_tests_by_re(suite, exclude_pattern)
2422
 
    if random_order:
2423
 
        order_changer = randomize_suite
2424
 
    else:
2425
 
        order_changer = preserve_input
2426
 
    if append_rest:
2427
 
        suites = map(order_changer, split_suite_by_re(suite, pattern))
2428
 
        return TestUtil.TestSuite(suites)
2429
 
    else:
2430
 
        return order_changer(filter_suite_by_re(suite, pattern))
2431
 
 
2432
 
 
2433
 
def split_suite_by_re(suite, pattern):
2434
 
    """Split a test suite into two by a regular expression.
2435
 
    
2436
 
    :param suite: The suite to split.
2437
 
    :param pattern: A regular expression string. Test ids that match this
2438
 
        pattern will be in the first test suite returned, and the others in the
2439
 
        second test suite returned.
2440
 
    :return: A tuple of two test suites, where the first contains tests from
2441
 
        suite matching pattern, and the second contains the remainder from
2442
 
        suite. The order within each output suite is the same as it was in
2443
 
        suite.
2444
 
    """ 
2445
 
    matched = []
2446
 
    did_not_match = []
2447
 
    filter_re = re.compile(pattern)
 
2153
        exclude_re = re.compile(exclude_pattern)
2448
2154
    for test in iter_suite_tests(suite):
2449
2155
        test_id = test.id()
2450
 
        if filter_re.search(test_id):
2451
 
            matched.append(test)
2452
 
        else:
2453
 
            did_not_match.append(test)
2454
 
    return TestUtil.TestSuite(matched), TestUtil.TestSuite(did_not_match)
 
2156
        if exclude_pattern is None or not exclude_re.search(test_id):
 
2157
            if filter_re.search(test_id):
 
2158
                first.append(test)
 
2159
            elif append_rest:
 
2160
                second.append(test)
 
2161
    if random_order:
 
2162
        random.shuffle(first)
 
2163
        random.shuffle(second)
 
2164
    return TestUtil.TestSuite(first + second)
2455
2165
 
2456
2166
 
2457
2167
def run_suite(suite, name='test', verbose=False, pattern=".*",
2458
 
              stop_on_failure=False,
 
2168
              stop_on_failure=False, keep_output=False,
2459
2169
              transport=None, lsprof_timed=None, bench_history=None,
2460
2170
              matching_tests_first=None,
 
2171
              numbered_dirs=None,
2461
2172
              list_only=False,
2462
2173
              random_seed=None,
2463
2174
              exclude_pattern=None,
2464
 
              strict=False):
 
2175
              ):
 
2176
    use_numbered_dirs = bool(numbered_dirs)
 
2177
 
2465
2178
    TestCase._gather_lsprof_in_benchmarks = lsprof_timed
 
2179
    if numbered_dirs is not None:
 
2180
        TestCaseInTempDir.use_numbered_dirs = use_numbered_dirs
2466
2181
    if verbose:
2467
2182
        verbosity = 2
2468
2183
    else:
2470
2185
    runner = TextTestRunner(stream=sys.stdout,
2471
2186
                            descriptions=0,
2472
2187
                            verbosity=verbosity,
 
2188
                            keep_output=keep_output,
2473
2189
                            bench_history=bench_history,
 
2190
                            use_numbered_dirs=use_numbered_dirs,
2474
2191
                            list_only=list_only,
2475
2192
                            )
2476
2193
    runner.stop_on_failure=stop_on_failure
2491
2208
            (random_seed))
2492
2209
        random.seed(random_seed)
2493
2210
    # Customise the list of tests if requested
2494
 
    if exclude_pattern is not None:
2495
 
        suite = exclude_tests_by_re(suite, exclude_pattern)
2496
 
    if random_order:
2497
 
        order_changer = randomize_suite
2498
 
    else:
2499
 
        order_changer = preserve_input
2500
 
    if pattern != '.*' or random_order:
 
2211
    if pattern != '.*' or exclude_pattern is not None or random_order:
2501
2212
        if matching_tests_first:
2502
 
            suites = map(order_changer, split_suite_by_re(suite, pattern))
2503
 
            suite = TestUtil.TestSuite(suites)
 
2213
            suite = sort_suite_by_re(suite, pattern, exclude_pattern,
 
2214
                random_order)
2504
2215
        else:
2505
 
            suite = order_changer(filter_suite_by_re(suite, pattern))
2506
 
 
 
2216
            suite = filter_suite_by_re(suite, pattern, exclude_pattern,
 
2217
                random_order)
2507
2218
    result = runner.run(suite)
2508
 
 
2509
 
    if strict:
2510
 
        return result.wasStrictlySuccessful()
2511
 
 
2512
2219
    return result.wasSuccessful()
2513
2220
 
2514
2221
 
2515
2222
def selftest(verbose=False, pattern=".*", stop_on_failure=True,
 
2223
             keep_output=False,
2516
2224
             transport=None,
2517
2225
             test_suite_factory=None,
2518
2226
             lsprof_timed=None,
2519
2227
             bench_history=None,
2520
2228
             matching_tests_first=None,
 
2229
             numbered_dirs=None,
2521
2230
             list_only=False,
2522
2231
             random_seed=None,
2523
 
             exclude_pattern=None,
2524
 
             strict=False,
2525
 
             load_list=None,
2526
 
             ):
 
2232
             exclude_pattern=None):
2527
2233
    """Run the whole test suite under the enhanced runner"""
2528
2234
    # XXX: Very ugly way to do this...
2529
2235
    # Disable warning about old formats because we don't want it to disturb
2537
2243
    old_transport = default_transport
2538
2244
    default_transport = transport
2539
2245
    try:
2540
 
        if load_list is None:
2541
 
            keep_only = None
2542
 
        else:
2543
 
            keep_only = load_test_id_list(load_list)
2544
2246
        if test_suite_factory is None:
2545
 
            suite = test_suite(keep_only)
 
2247
            suite = test_suite()
2546
2248
        else:
2547
2249
            suite = test_suite_factory()
2548
2250
        return run_suite(suite, 'testbzr', verbose=verbose, pattern=pattern,
2549
 
                     stop_on_failure=stop_on_failure,
 
2251
                     stop_on_failure=stop_on_failure, keep_output=keep_output,
2550
2252
                     transport=transport,
2551
2253
                     lsprof_timed=lsprof_timed,
2552
2254
                     bench_history=bench_history,
2553
2255
                     matching_tests_first=matching_tests_first,
 
2256
                     numbered_dirs=numbered_dirs,
2554
2257
                     list_only=list_only,
2555
2258
                     random_seed=random_seed,
2556
 
                     exclude_pattern=exclude_pattern,
2557
 
                     strict=strict)
 
2259
                     exclude_pattern=exclude_pattern)
2558
2260
    finally:
2559
2261
        default_transport = old_transport
2560
2262
 
2561
2263
 
2562
 
def load_test_id_list(file_name):
2563
 
    """Load a test id list from a text file.
2564
 
 
2565
 
    The format is one test id by line.  No special care is taken to impose
2566
 
    strict rules, these test ids are used to filter the test suite so a test id
2567
 
    that do not match an existing test will do no harm. This allows user to add
2568
 
    comments, leave blank lines, etc.
2569
 
    """
2570
 
    test_list = []
2571
 
    try:
2572
 
        ftest = open(file_name, 'rt')
2573
 
    except IOError, e:
2574
 
        if e.errno != errno.ENOENT:
2575
 
            raise
2576
 
        else:
2577
 
            raise errors.NoSuchFile(file_name)
2578
 
 
2579
 
    for test_name in ftest.readlines():
2580
 
        test_list.append(test_name.strip())
2581
 
    ftest.close()
2582
 
    return test_list
2583
 
 
2584
 
 
2585
 
def suite_matches_id_list(test_suite, id_list):
2586
 
    """Warns about tests not appearing or appearing more than once.
2587
 
 
2588
 
    :param test_suite: A TestSuite object.
2589
 
    :param test_id_list: The list of test ids that should be found in 
2590
 
         test_suite.
2591
 
 
2592
 
    :return: (absents, duplicates) absents is a list containing the test found
2593
 
        in id_list but not in test_suite, duplicates is a list containing the
2594
 
        test found multiple times in test_suite.
2595
 
 
2596
 
    When using a prefined test id list, it may occurs that some tests do not
2597
 
    exist anymore or that some tests use the same id. This function warns the
2598
 
    tester about potential problems in his workflow (test lists are volatile)
2599
 
    or in the test suite itself (using the same id for several tests does not
2600
 
    help to localize defects).
2601
 
    """
2602
 
    # Build a dict counting id occurrences
2603
 
    tests = dict()
2604
 
    for test in iter_suite_tests(test_suite):
2605
 
        id = test.id()
2606
 
        tests[id] = tests.get(id, 0) + 1
2607
 
 
2608
 
    not_found = []
2609
 
    duplicates = []
2610
 
    for id in id_list:
2611
 
        occurs = tests.get(id, 0)
2612
 
        if not occurs:
2613
 
            not_found.append(id)
2614
 
        elif occurs > 1:
2615
 
            duplicates.append(id)
2616
 
 
2617
 
    return not_found, duplicates
2618
 
 
2619
 
 
2620
 
class TestIdList(object):
2621
 
    """Test id list to filter a test suite.
2622
 
 
2623
 
    Relying on the assumption that test ids are built as:
2624
 
    <module>[.<class>.<method>][(<param>+)], <module> being in python dotted
2625
 
    notation, this class offers methods to :
2626
 
    - avoid building a test suite for modules not refered to in the test list,
2627
 
    - keep only the tests listed from the module test suite.
2628
 
    """
2629
 
 
2630
 
    def __init__(self, test_id_list):
2631
 
        # When a test suite needs to be filtered against us we compare test ids
2632
 
        # for equality, so a simple dict offers a quick and simple solution.
2633
 
        self.tests = dict().fromkeys(test_id_list, True)
2634
 
 
2635
 
        # While unittest.TestCase have ids like:
2636
 
        # <module>.<class>.<method>[(<param+)],
2637
 
        # doctest.DocTestCase can have ids like:
2638
 
        # <module>
2639
 
        # <module>.<class>
2640
 
        # <module>.<function>
2641
 
        # <module>.<class>.<method>
2642
 
 
2643
 
        # Since we can't predict a test class from its name only, we settle on
2644
 
        # a simple constraint: a test id always begins with its module name.
2645
 
 
2646
 
        modules = {}
2647
 
        for test_id in test_id_list:
2648
 
            parts = test_id.split('.')
2649
 
            mod_name = parts.pop(0)
2650
 
            modules[mod_name] = True
2651
 
            for part in parts:
2652
 
                mod_name += '.' + part
2653
 
                modules[mod_name] = True
2654
 
        self.modules = modules
2655
 
 
2656
 
    def refers_to(self, module_name):
2657
 
        """Is there tests for the module or one of its sub modules."""
2658
 
        return self.modules.has_key(module_name)
2659
 
 
2660
 
    def includes(self, test_id):
2661
 
        return self.tests.has_key(test_id)
2662
 
 
2663
 
 
2664
 
def test_suite(keep_only=None):
 
2264
def test_suite():
2665
2265
    """Build and return TestSuite for the whole of bzrlib.
2666
 
 
2667
 
    :param keep_only: A list of test ids limiting the suite returned.
2668
 
 
 
2266
    
2669
2267
    This function can be replaced if you need to change the default test
2670
2268
    suite on a global basis, but it is not encouraged.
2671
2269
    """
2672
2270
    testmod_names = [
2673
 
                   'bzrlib.util.tests.test_bencode',
2674
 
                   'bzrlib.tests.test__dirstate_helpers',
2675
2271
                   'bzrlib.tests.test_ancestry',
2676
2272
                   'bzrlib.tests.test_annotate',
2677
2273
                   'bzrlib.tests.test_api',
2678
2274
                   'bzrlib.tests.test_atomicfile',
2679
2275
                   'bzrlib.tests.test_bad_files',
2680
 
                   'bzrlib.tests.test_bisect_multi',
2681
2276
                   'bzrlib.tests.test_branch',
2682
 
                   'bzrlib.tests.test_branchbuilder',
2683
2277
                   'bzrlib.tests.test_bugtracker',
2684
2278
                   'bzrlib.tests.test_bundle',
2685
2279
                   'bzrlib.tests.test_bzrdir',
2689
2283
                   'bzrlib.tests.test_commit_merge',
2690
2284
                   'bzrlib.tests.test_config',
2691
2285
                   'bzrlib.tests.test_conflicts',
2692
 
                   'bzrlib.tests.test_counted_lock',
2693
2286
                   'bzrlib.tests.test_decorators',
2694
2287
                   'bzrlib.tests.test_delta',
2695
 
                   'bzrlib.tests.test_deprecated_graph',
2696
2288
                   'bzrlib.tests.test_diff',
2697
2289
                   'bzrlib.tests.test_dirstate',
2698
 
                   'bzrlib.tests.test_directory_service',
2699
 
                   'bzrlib.tests.test_email_message',
2700
2290
                   'bzrlib.tests.test_errors',
2701
2291
                   'bzrlib.tests.test_escaped_store',
2702
2292
                   'bzrlib.tests.test_extract',
2709
2299
                   'bzrlib.tests.test_graph',
2710
2300
                   'bzrlib.tests.test_hashcache',
2711
2301
                   'bzrlib.tests.test_help',
2712
 
                   'bzrlib.tests.test_hooks',
2713
2302
                   'bzrlib.tests.test_http',
2714
 
                   'bzrlib.tests.test_http_implementations',
2715
2303
                   'bzrlib.tests.test_http_response',
2716
2304
                   'bzrlib.tests.test_https_ca_bundle',
2717
2305
                   'bzrlib.tests.test_identitymap',
2718
2306
                   'bzrlib.tests.test_ignores',
2719
 
                   'bzrlib.tests.test_index',
2720
 
                   'bzrlib.tests.test_info',
2721
2307
                   'bzrlib.tests.test_inv',
2722
2308
                   'bzrlib.tests.test_knit',
2723
2309
                   'bzrlib.tests.test_lazy_import',
2725
2311
                   'bzrlib.tests.test_lockdir',
2726
2312
                   'bzrlib.tests.test_lockable_files',
2727
2313
                   'bzrlib.tests.test_log',
2728
 
                   'bzrlib.tests.test_lsprof',
2729
 
                   'bzrlib.tests.test_lru_cache',
2730
 
                   'bzrlib.tests.test_mail_client',
2731
2314
                   'bzrlib.tests.test_memorytree',
2732
2315
                   'bzrlib.tests.test_merge',
2733
2316
                   'bzrlib.tests.test_merge3',
2735
2318
                   'bzrlib.tests.test_merge_directive',
2736
2319
                   'bzrlib.tests.test_missing',
2737
2320
                   'bzrlib.tests.test_msgeditor',
2738
 
                   'bzrlib.tests.test_multiparent',
2739
 
                   'bzrlib.tests.test_mutabletree',
2740
2321
                   'bzrlib.tests.test_nonascii',
2741
2322
                   'bzrlib.tests.test_options',
2742
2323
                   'bzrlib.tests.test_osutils',
2743
2324
                   'bzrlib.tests.test_osutils_encodings',
2744
 
                   'bzrlib.tests.test_pack',
2745
2325
                   'bzrlib.tests.test_patch',
2746
2326
                   'bzrlib.tests.test_patches',
2747
2327
                   'bzrlib.tests.test_permissions',
2748
2328
                   'bzrlib.tests.test_plugins',
2749
2329
                   'bzrlib.tests.test_progress',
2750
 
                   'bzrlib.tests.test_reconfigure',
2751
2330
                   'bzrlib.tests.test_reconcile',
2752
2331
                   'bzrlib.tests.test_registry',
2753
2332
                   'bzrlib.tests.test_remote',
2754
2333
                   'bzrlib.tests.test_repository',
2755
2334
                   'bzrlib.tests.test_revert',
2756
2335
                   'bzrlib.tests.test_revision',
2757
 
                   'bzrlib.tests.test_revisionspec',
 
2336
                   'bzrlib.tests.test_revisionnamespaces',
2758
2337
                   'bzrlib.tests.test_revisiontree',
2759
2338
                   'bzrlib.tests.test_rio',
2760
2339
                   'bzrlib.tests.test_sampler',
2764
2343
                   'bzrlib.tests.test_smart',
2765
2344
                   'bzrlib.tests.test_smart_add',
2766
2345
                   'bzrlib.tests.test_smart_transport',
2767
 
                   'bzrlib.tests.test_smtp_connection',
2768
2346
                   'bzrlib.tests.test_source',
2769
2347
                   'bzrlib.tests.test_ssh_transport',
2770
2348
                   'bzrlib.tests.test_status',
2771
2349
                   'bzrlib.tests.test_store',
2772
2350
                   'bzrlib.tests.test_strace',
2773
2351
                   'bzrlib.tests.test_subsume',
2774
 
                   'bzrlib.tests.test_switch',
2775
2352
                   'bzrlib.tests.test_symbol_versioning',
2776
2353
                   'bzrlib.tests.test_tag',
2777
2354
                   'bzrlib.tests.test_testament',
2787
2364
                   'bzrlib.tests.test_tsort',
2788
2365
                   'bzrlib.tests.test_tuned_gzip',
2789
2366
                   'bzrlib.tests.test_ui',
2790
 
                   'bzrlib.tests.test_uncommit',
2791
2367
                   'bzrlib.tests.test_upgrade',
2792
2368
                   'bzrlib.tests.test_urlutils',
2793
2369
                   'bzrlib.tests.test_versionedfile',
2795
2371
                   'bzrlib.tests.test_version_info',
2796
2372
                   'bzrlib.tests.test_weave',
2797
2373
                   'bzrlib.tests.test_whitebox',
2798
 
                   'bzrlib.tests.test_win32utils',
2799
2374
                   'bzrlib.tests.test_workingtree',
2800
2375
                   'bzrlib.tests.test_workingtree_4',
2801
2376
                   'bzrlib.tests.test_wsgi',
2805
2380
        'bzrlib.tests.test_transport_implementations',
2806
2381
        'bzrlib.tests.test_read_bundle',
2807
2382
        ]
 
2383
    suite = TestUtil.TestSuite()
2808
2384
    loader = TestUtil.TestLoader()
2809
 
 
2810
 
    if keep_only is None:
2811
 
        loader = TestUtil.TestLoader()
2812
 
    else:
2813
 
        id_filter = TestIdList(keep_only)
2814
 
        loader = TestUtil.FilteredByModuleTestLoader(id_filter.refers_to)
2815
 
    suite = loader.suiteClass()
2816
 
 
2817
 
    # modules building their suite with loadTestsFromModuleNames
2818
2385
    suite.addTest(loader.loadTestsFromModuleNames(testmod_names))
2819
 
 
2820
 
    # modules adapted for transport implementations
2821
 
    from bzrlib.tests.test_transport_implementations import TransportTestProviderAdapter
 
2386
    from bzrlib.transport import TransportTestProviderAdapter
2822
2387
    adapter = TransportTestProviderAdapter()
2823
2388
    adapt_modules(test_transport_implementations, adapter, loader, suite)
2824
 
 
2825
 
    # modules defining their own test_suite()
2826
 
    for package in [p for p in packages_to_test()
2827
 
                    if (keep_only is None
2828
 
                        or id_filter.refers_to(p.__name__))]:
2829
 
        pack_suite = package.test_suite()
2830
 
        suite.addTest(pack_suite)
2831
 
 
2832
 
    modules_to_doctest = [
2833
 
        'bzrlib',
2834
 
        'bzrlib.errors',
2835
 
        'bzrlib.export',
2836
 
        'bzrlib.inventory',
2837
 
        'bzrlib.iterablefile',
2838
 
        'bzrlib.lockdir',
2839
 
        'bzrlib.merge3',
2840
 
        'bzrlib.option',
2841
 
        'bzrlib.store',
2842
 
        'bzrlib.tests',
2843
 
        'bzrlib.timestamp',
2844
 
        'bzrlib.version_info_formats.format_custom',
2845
 
        ]
2846
 
 
2847
 
    for mod in modules_to_doctest:
2848
 
        if not (keep_only is None or id_filter.refers_to(mod)):
2849
 
            # No tests to keep here, move along
2850
 
            continue
 
2389
    for package in packages_to_test():
 
2390
        suite.addTest(package.test_suite())
 
2391
    for m in MODULES_TO_TEST:
 
2392
        suite.addTest(loader.loadTestsFromModule(m))
 
2393
    for m in MODULES_TO_DOCTEST:
2851
2394
        try:
2852
 
            doc_suite = doctest.DocTestSuite(mod)
 
2395
            suite.addTest(doctest.DocTestSuite(m))
2853
2396
        except ValueError, e:
2854
 
            print '**failed to get doctest for: %s\n%s' % (mod, e)
 
2397
            print '**failed to get doctest for: %s\n%s' %(m,e)
2855
2398
            raise
2856
 
        suite.addTest(doc_suite)
2857
 
 
2858
 
    default_encoding = sys.getdefaultencoding()
2859
 
    for name, plugin in bzrlib.plugin.plugins().items():
2860
 
        if keep_only is not None:
2861
 
            if not id_filter.refers_to(plugin.module.__name__):
2862
 
                continue
2863
 
        plugin_suite = plugin.test_suite()
2864
 
        # We used to catch ImportError here and turn it into just a warning,
2865
 
        # but really if you don't have --no-plugins this should be a failure.
2866
 
        # mbp 20080213 - see http://bugs.launchpad.net/bugs/189771
2867
 
        if plugin_suite is None:
2868
 
            plugin_suite = plugin.load_plugin_tests(loader)
2869
 
        if plugin_suite is not None:
2870
 
            suite.addTest(plugin_suite)
2871
 
        if default_encoding != sys.getdefaultencoding():
2872
 
            bzrlib.trace.warning(
2873
 
                'Plugin "%s" tried to reset default encoding to: %s', name,
2874
 
                sys.getdefaultencoding())
2875
 
            reload(sys)
2876
 
            sys.setdefaultencoding(default_encoding)
2877
 
 
2878
 
    if keep_only is not None:
2879
 
        # Now that the referred modules have loaded their tests, keep only the
2880
 
        # requested ones.
2881
 
        suite = filter_suite_by_id_list(suite, id_filter)
2882
 
        # Do some sanity checks on the id_list filtering
2883
 
        not_found, duplicates = suite_matches_id_list(suite, keep_only)
2884
 
        for id in not_found:
2885
 
            bzrlib.trace.warning('"%s" not found in the test suite', id)
2886
 
        for id in duplicates:
2887
 
            bzrlib.trace.warning('"%s" is used as an id by several tests', id)
2888
 
 
2889
 
    return suite
2890
 
 
2891
 
 
2892
 
def multiply_tests_from_modules(module_name_list, scenario_iter, loader=None):
2893
 
    """Adapt all tests in some given modules to given scenarios.
2894
 
 
2895
 
    This is the recommended public interface for test parameterization.
2896
 
    Typically the test_suite() method for a per-implementation test
2897
 
    suite will call multiply_tests_from_modules and return the 
2898
 
    result.
2899
 
 
2900
 
    :param module_name_list: List of fully-qualified names of test
2901
 
        modules.
2902
 
    :param scenario_iter: Iterable of pairs of (scenario_name, 
2903
 
        scenario_param_dict).
2904
 
    :param loader: If provided, will be used instead of a new 
2905
 
        bzrlib.tests.TestLoader() instance.
2906
 
 
2907
 
    This returns a new TestSuite containing the cross product of
2908
 
    all the tests in all the modules, each repeated for each scenario.
2909
 
    Each test is adapted by adding the scenario name at the end 
2910
 
    of its name, and updating the test object's __dict__ with the
2911
 
    scenario_param_dict.
2912
 
 
2913
 
    >>> r = multiply_tests_from_modules(
2914
 
    ...     ['bzrlib.tests.test_sampler'],
2915
 
    ...     [('one', dict(param=1)), 
2916
 
    ...      ('two', dict(param=2))])
2917
 
    >>> tests = list(iter_suite_tests(r))
2918
 
    >>> len(tests)
2919
 
    2
2920
 
    >>> tests[0].id()
2921
 
    'bzrlib.tests.test_sampler.DemoTest.test_nothing(one)'
2922
 
    >>> tests[0].param
2923
 
    1
2924
 
    >>> tests[1].param
2925
 
    2
2926
 
    """
2927
 
    # XXX: Isn't load_tests() a better way to provide the same functionality
2928
 
    # without forcing a predefined TestScenarioApplier ? --vila 080215
2929
 
    if loader is None:
2930
 
        loader = TestUtil.TestLoader()
2931
 
 
2932
 
    suite = loader.suiteClass()
2933
 
 
2934
 
    adapter = TestScenarioApplier()
2935
 
    adapter.scenarios = list(scenario_iter)
2936
 
    adapt_modules(module_name_list, adapter, loader, suite)
2937
 
    return suite
2938
 
 
2939
 
 
2940
 
def multiply_scenarios(scenarios_left, scenarios_right):
2941
 
    """Multiply two sets of scenarios.
2942
 
 
2943
 
    :returns: the cartesian product of the two sets of scenarios, that is
2944
 
        a scenario for every possible combination of a left scenario and a
2945
 
        right scenario.
2946
 
    """
2947
 
    return [
2948
 
        ('%s,%s' % (left_name, right_name),
2949
 
         dict(left_dict.items() + right_dict.items()))
2950
 
        for left_name, left_dict in scenarios_left
2951
 
        for right_name, right_dict in scenarios_right]
2952
 
 
 
2399
    for name, plugin in bzrlib.plugin.all_plugins().items():
 
2400
        if getattr(plugin, 'test_suite', None) is not None:
 
2401
            default_encoding = sys.getdefaultencoding()
 
2402
            try:
 
2403
                plugin_suite = plugin.test_suite()
 
2404
            except ImportError, e:
 
2405
                bzrlib.trace.warning(
 
2406
                    'Unable to test plugin "%s": %s', name, e)
 
2407
            else:
 
2408
                suite.addTest(plugin_suite)
 
2409
            if default_encoding != sys.getdefaultencoding():
 
2410
                bzrlib.trace.warning(
 
2411
                    'Plugin "%s" tried to reset default encoding to: %s', name,
 
2412
                    sys.getdefaultencoding())
 
2413
                reload(sys)
 
2414
                sys.setdefaultencoding(default_encoding)
 
2415
    return suite
2953
2416
 
2954
2417
 
2955
2418
def adapt_modules(mods_list, adapter, loader, suite):
2958
2421
        suite.addTests(adapter.adapt(test))
2959
2422
 
2960
2423
 
2961
 
def adapt_tests(tests_list, adapter, loader, suite):
2962
 
    """Adapt the tests in tests_list using adapter and add to suite."""
2963
 
    for test in tests_list:
2964
 
        suite.addTests(adapter.adapt(loader.loadTestsFromName(test)))
2965
 
 
2966
 
 
2967
2424
def _rmtree_temp_dir(dirname):
2968
 
    # If LANG=C we probably have created some bogus paths
2969
 
    # which rmtree(unicode) will fail to delete
2970
 
    # so make sure we are using rmtree(str) to delete everything
2971
 
    # except on win32, where rmtree(str) will fail
2972
 
    # since it doesn't have the property of byte-stream paths
2973
 
    # (they are either ascii or mbcs)
2974
 
    if sys.platform == 'win32':
2975
 
        # make sure we are using the unicode win32 api
2976
 
        dirname = unicode(dirname)
2977
 
    else:
2978
 
        dirname = dirname.encode(sys.getfilesystemencoding())
2979
2425
    try:
2980
2426
        osutils.rmtree(dirname)
2981
2427
    except OSError, e:
2982
2428
        if sys.platform == 'win32' and e.errno == errno.EACCES:
2983
 
            sys.stderr.write(('Permission denied: '
 
2429
            print >>sys.stderr, ('Permission denied: '
2984
2430
                                 'unable to remove testing dir '
2985
 
                                 '%s\n' % os.path.basename(dirname)))
 
2431
                                 '%s' % os.path.basename(dirname))
2986
2432
        else:
2987
2433
            raise
2988
2434
 
2989
2435
 
 
2436
def clean_selftest_output(root=None, quiet=False):
 
2437
    """Remove all selftest output directories from root directory.
 
2438
 
 
2439
    :param  root:   root directory for clean
 
2440
                    (if ommitted or None then clean current directory).
 
2441
    :param  quiet:  suppress report about deleting directories
 
2442
    """
 
2443
    import re
 
2444
    re_dir = re.compile(r'''test\d\d\d\d\.tmp''')
 
2445
    if root is None:
 
2446
        root = u'.'
 
2447
    for i in os.listdir(root):
 
2448
        if os.path.isdir(i) and re_dir.match(i):
 
2449
            if not quiet:
 
2450
                print 'delete directory:', i
 
2451
            _rmtree_temp_dir(i)
 
2452
 
 
2453
 
2990
2454
class Feature(object):
2991
2455
    """An operating system Feature."""
2992
2456
 
3013
2477
        if getattr(self, 'feature_name', None):
3014
2478
            return self.feature_name()
3015
2479
        return self.__class__.__name__
3016
 
 
3017
 
 
3018
 
class _SymlinkFeature(Feature):
3019
 
 
3020
 
    def _probe(self):
3021
 
        return osutils.has_symlinks()
3022
 
 
3023
 
    def feature_name(self):
3024
 
        return 'symlinks'
3025
 
 
3026
 
SymlinkFeature = _SymlinkFeature()
3027
 
 
3028
 
 
3029
 
class _HardlinkFeature(Feature):
3030
 
 
3031
 
    def _probe(self):
3032
 
        return osutils.has_hardlinks()
3033
 
 
3034
 
    def feature_name(self):
3035
 
        return 'hardlinks'
3036
 
 
3037
 
HardlinkFeature = _HardlinkFeature()
3038
 
 
3039
 
 
3040
 
class _OsFifoFeature(Feature):
3041
 
 
3042
 
    def _probe(self):
3043
 
        return getattr(os, 'mkfifo', None)
3044
 
 
3045
 
    def feature_name(self):
3046
 
        return 'filesystem fifos'
3047
 
 
3048
 
OsFifoFeature = _OsFifoFeature()
3049
 
 
3050
 
 
3051
 
class TestScenarioApplier(object):
3052
 
    """A tool to apply scenarios to tests."""
3053
 
 
3054
 
    def adapt(self, test):
3055
 
        """Return a TestSuite containing a copy of test for each scenario."""
3056
 
        result = unittest.TestSuite()
3057
 
        for scenario in self.scenarios:
3058
 
            result.addTest(self.adapt_test_to_scenario(test, scenario))
3059
 
        return result
3060
 
 
3061
 
    def adapt_test_to_scenario(self, test, scenario):
3062
 
        """Copy test and apply scenario to it.
3063
 
 
3064
 
        :param test: A test to adapt.
3065
 
        :param scenario: A tuple describing the scenarion.
3066
 
            The first element of the tuple is the new test id.
3067
 
            The second element is a dict containing attributes to set on the
3068
 
            test.
3069
 
        :return: The adapted test.
3070
 
        """
3071
 
        from copy import deepcopy
3072
 
        new_test = deepcopy(test)
3073
 
        for name, value in scenario[1].items():
3074
 
            setattr(new_test, name, value)
3075
 
        new_id = "%s(%s)" % (new_test.id(), scenario[0])
3076
 
        new_test.id = lambda: new_id
3077
 
        return new_test
3078
 
 
3079
 
 
3080
 
def probe_unicode_in_user_encoding():
3081
 
    """Try to encode several unicode strings to use in unicode-aware tests.
3082
 
    Return first successfull match.
3083
 
 
3084
 
    :return:  (unicode value, encoded plain string value) or (None, None)
3085
 
    """
3086
 
    possible_vals = [u'm\xb5', u'\xe1', u'\u0410']
3087
 
    for uni_val in possible_vals:
3088
 
        try:
3089
 
            str_val = uni_val.encode(bzrlib.user_encoding)
3090
 
        except UnicodeEncodeError:
3091
 
            # Try a different character
3092
 
            pass
3093
 
        else:
3094
 
            return uni_val, str_val
3095
 
    return None, None
3096
 
 
3097
 
 
3098
 
def probe_bad_non_ascii(encoding):
3099
 
    """Try to find [bad] character with code [128..255]
3100
 
    that cannot be decoded to unicode in some encoding.
3101
 
    Return None if all non-ascii characters is valid
3102
 
    for given encoding.
3103
 
    """
3104
 
    for i in xrange(128, 256):
3105
 
        char = chr(i)
3106
 
        try:
3107
 
            char.decode(encoding)
3108
 
        except UnicodeDecodeError:
3109
 
            return char
3110
 
    return None
3111
 
 
3112
 
 
3113
 
class _FTPServerFeature(Feature):
3114
 
    """Some tests want an FTP Server, check if one is available.
3115
 
 
3116
 
    Right now, the only way this is available is if 'medusa' is installed.
3117
 
    http://www.amk.ca/python/code/medusa.html
3118
 
    """
3119
 
 
3120
 
    def _probe(self):
3121
 
        try:
3122
 
            import bzrlib.tests.ftp_server
3123
 
            return True
3124
 
        except ImportError:
3125
 
            return False
3126
 
 
3127
 
    def feature_name(self):
3128
 
        return 'FTPServer'
3129
 
 
3130
 
FTPServerFeature = _FTPServerFeature()
3131
 
 
3132
 
 
3133
 
class _CaseInsensitiveFilesystemFeature(Feature):
3134
 
    """Check if underlined filesystem is case-insensitive
3135
 
    (e.g. on Windows, Cygwin, MacOS)
3136
 
    """
3137
 
 
3138
 
    def _probe(self):
3139
 
        if TestCaseWithMemoryTransport.TEST_ROOT is None:
3140
 
            root = osutils.mkdtemp(prefix='testbzr-', suffix='.tmp')
3141
 
            TestCaseWithMemoryTransport.TEST_ROOT = root
3142
 
        else:
3143
 
            root = TestCaseWithMemoryTransport.TEST_ROOT
3144
 
        tdir = osutils.mkdtemp(prefix='case-sensitive-probe-', suffix='',
3145
 
            dir=root)
3146
 
        name_a = osutils.pathjoin(tdir, 'a')
3147
 
        name_A = osutils.pathjoin(tdir, 'A')
3148
 
        os.mkdir(name_a)
3149
 
        result = osutils.isdir(name_A)
3150
 
        _rmtree_temp_dir(tdir)
3151
 
        return result
3152
 
 
3153
 
    def feature_name(self):
3154
 
        return 'case-insensitive filesystem'
3155
 
 
3156
 
CaseInsensitiveFilesystemFeature = _CaseInsensitiveFilesystemFeature()