26
26
# general style of bzrlib. Please continue that consistency when adding e.g.
27
27
# new assertFoo() methods.
30
32
from cStringIO import StringIO
39
from pprint import pformat
44
from subprocess import Popen, PIPE, STDOUT
54
# nb: check this before importing anything else from within it
55
_testtools_version = getattr(testtools, '__version__', ())
56
if _testtools_version < (0, 9, 2):
57
raise ImportError("need at least testtools 0.9.2: %s is %r"
58
% (testtools.__file__, _testtools_version))
59
from testtools import content
43
78
import bzrlib.branch
44
import bzrlib.bzrdir as bzrdir
45
79
import bzrlib.commands
46
import bzrlib.errors as errors
80
import bzrlib.timestamp
47
82
import bzrlib.inventory
48
83
import bzrlib.iterablefile
49
84
import bzrlib.lockdir
88
# lsprof not available
50
90
from bzrlib.merge import merge_inner
51
91
import bzrlib.merge3
53
import bzrlib.osutils as osutils
54
92
import bzrlib.plugin
55
import bzrlib.progress as progress
56
from bzrlib.revision import common_ancestor
93
from bzrlib.smart import client, request, server
57
94
import bzrlib.store
95
from bzrlib import symbol_versioning
96
from bzrlib.symbol_versioning import (
58
103
import bzrlib.trace
59
from bzrlib.transport import urlescape, get_transport
104
from bzrlib.transport import get_transport, pathfilter
60
105
import bzrlib.transport
61
from bzrlib.transport.local import LocalRelpathServer
106
from bzrlib.transport.local import LocalURLServer
107
from bzrlib.transport.memory import MemoryServer
62
108
from bzrlib.transport.readonly import ReadonlyServer
63
from bzrlib.trace import mutter
64
from bzrlib.tests.TestUtil import TestLoader, TestSuite
109
from bzrlib.trace import mutter, note
110
from bzrlib.tests import TestUtil
111
from bzrlib.tests.http_server import HttpServer
112
from bzrlib.tests.TestUtil import (
65
116
from bzrlib.tests.treeshape import build_tree_contents
117
from bzrlib.ui import NullProgressView
118
from bzrlib.ui.text import TextUIFactory
119
import bzrlib.version_info_formats.format_custom
66
120
from bzrlib.workingtree import WorkingTree, WorkingTreeFormat2
68
default_transport = LocalRelpathServer
71
MODULES_TO_DOCTEST = [
83
def packages_to_test():
84
"""Return a list of packages to test.
86
The packages are not globally imported so that import failures are
87
triggered when running selftest, not when importing the command.
90
import bzrlib.tests.blackbox
91
import bzrlib.tests.branch_implementations
92
import bzrlib.tests.bzrdir_implementations
93
import bzrlib.tests.interrepository_implementations
94
import bzrlib.tests.interversionedfile_implementations
95
import bzrlib.tests.repository_implementations
96
import bzrlib.tests.revisionstore_implementations
97
import bzrlib.tests.workingtree_implementations
100
bzrlib.tests.blackbox,
101
bzrlib.tests.branch_implementations,
102
bzrlib.tests.bzrdir_implementations,
103
bzrlib.tests.interrepository_implementations,
104
bzrlib.tests.interversionedfile_implementations,
105
bzrlib.tests.repository_implementations,
106
bzrlib.tests.revisionstore_implementations,
107
bzrlib.tests.workingtree_implementations,
111
class _MyResult(unittest._TextTestResult):
112
"""Custom TestResult.
114
Shows output in a different format, including displaying runtime for tests.
122
# Mark this python module as being part of the implementation
123
# of unittest: this gives us better tracebacks where the last
124
# shown frame is the test code, not our assertXYZ.
127
default_transport = LocalURLServer
130
_unitialized_attr = object()
131
"""A sentinel needed to act as a default value in a method signature."""
134
# Subunit result codes, defined here to prevent a hard dependency on subunit.
139
class ExtendedTestResult(unittest._TextTestResult):
140
"""Accepts, reports and accumulates the results of running tests.
142
Compared to the unittest version this class adds support for
143
profiling, benchmarking, stopping as soon as a test fails, and
144
skipping tests. There are further-specialized subclasses for
145
different types of display.
147
When a test finishes, in whatever way, it calls one of the addSuccess,
148
addFailure or addError classes. These in turn may redirect to a more
149
specific case for the special test results supported by our extended
152
Note that just one of these objects is fed the results from many tests.
116
155
stop_early = False
118
def __init__(self, stream, descriptions, verbosity, pb=None):
157
def __init__(self, stream, descriptions, verbosity,
161
"""Construct new TestResult.
163
:param bench_history: Optionally, a writable file object to accumulate
119
166
unittest._TextTestResult.__init__(self, stream, descriptions, verbosity)
122
def extractBenchmarkTime(self, testCase):
167
if bench_history is not None:
168
from bzrlib.version import _get_bzr_source_tree
169
src_tree = _get_bzr_source_tree()
172
revision_id = src_tree.get_parent_ids()[0]
174
# XXX: if this is a brand new tree, do the same as if there
178
# XXX: If there's no branch, what should we do?
180
bench_history.write("--date %s %s\n" % (time.time(), revision_id))
181
self._bench_history = bench_history
182
self.ui = ui.ui_factory
185
self.failure_count = 0
186
self.known_failure_count = 0
188
self.not_applicable_count = 0
189
self.unsupported = {}
191
self._overall_start_time = time.time()
192
self._strict = strict
194
def stopTestRun(self):
197
stopTime = time.time()
198
timeTaken = stopTime - self.startTime
200
self.stream.writeln(self.separator2)
201
self.stream.writeln("%s %d test%s in %.3fs" % (actionTaken,
202
run, run != 1 and "s" or "", timeTaken))
203
self.stream.writeln()
204
if not self.wasSuccessful():
205
self.stream.write("FAILED (")
206
failed, errored = map(len, (self.failures, self.errors))
208
self.stream.write("failures=%d" % failed)
210
if failed: self.stream.write(", ")
211
self.stream.write("errors=%d" % errored)
212
if self.known_failure_count:
213
if failed or errored: self.stream.write(", ")
214
self.stream.write("known_failure_count=%d" %
215
self.known_failure_count)
216
self.stream.writeln(")")
218
if self.known_failure_count:
219
self.stream.writeln("OK (known_failures=%d)" %
220
self.known_failure_count)
222
self.stream.writeln("OK")
223
if self.skip_count > 0:
224
skipped = self.skip_count
225
self.stream.writeln('%d test%s skipped' %
226
(skipped, skipped != 1 and "s" or ""))
228
for feature, count in sorted(self.unsupported.items()):
229
self.stream.writeln("Missing feature '%s' skipped %d tests." %
232
ok = self.wasStrictlySuccessful()
234
ok = self.wasSuccessful()
235
if TestCase._first_thread_leaker_id:
237
'%s is leaking threads among %d leaking tests.\n' % (
238
TestCase._first_thread_leaker_id,
239
TestCase._leaking_threads_tests))
240
# We don't report the main thread as an active one.
242
'%d non-main threads were left active in the end.\n'
243
% (TestCase._active_threads - 1))
245
def getDescription(self, test):
248
def _extractBenchmarkTime(self, testCase, details=None):
123
249
"""Add a benchmark time for the current test case."""
124
self._benchmarkTime = getattr(testCase, "_benchtime", None)
250
if details and 'benchtime' in details:
251
return float(''.join(details['benchtime'].iter_bytes()))
252
return getattr(testCase, "_benchtime", None)
126
254
def _elapsedTestTimeString(self):
127
255
"""Return a time string for the overall time the current test has taken."""
128
256
return self._formatTime(time.time() - self._start_time)
130
def _testTimeString(self):
131
if self._benchmarkTime is not None:
133
self._formatTime(self._benchmarkTime),
134
self._elapsedTestTimeString())
258
def _testTimeString(self, testCase):
259
benchmark_time = self._extractBenchmarkTime(testCase)
260
if benchmark_time is not None:
261
return self._formatTime(benchmark_time) + "*"
136
return " %s" % self._elapsedTestTimeString()
263
return self._elapsedTestTimeString()
138
265
def _formatTime(self, seconds):
139
266
"""Format seconds as milliseconds with leading spaces."""
140
return "%5dms" % (1000 * seconds)
267
# some benchmarks can take thousands of seconds to run, so we need 8
269
return "%8dms" % (1000 * seconds)
142
def _ellipsise_unimportant_words(self, a_string, final_width,
144
"""Add ellipses (sp?) for overly long strings.
146
:param keep_start: If true preserve the start of a_string rather
150
if len(a_string) > final_width:
151
result = a_string[:final_width-3] + '...'
155
if len(a_string) > final_width:
156
result = '...' + a_string[3-final_width:]
159
return result.ljust(final_width)
271
def _shortened_test_description(self, test):
273
what = re.sub(r'^bzrlib\.(tests|benchmarks)\.', '', what)
161
276
def startTest(self, test):
162
277
unittest.TestResult.startTest(self, test)
163
# In a short description, the important words are in
164
# the beginning, but in an id, the important words are
166
SHOW_DESCRIPTIONS = False
168
if not self.showAll and self.dots and self.pb is not None:
171
final_width = osutils.terminal_width()
172
final_width = final_width - 15 - 8
174
if SHOW_DESCRIPTIONS:
175
what = test.shortDescription()
177
what = self._ellipsise_unimportant_words(what, final_width, keep_start=True)
180
if what.startswith('bzrlib.tests.'):
182
what = self._ellipsise_unimportant_words(what, final_width)
184
self.stream.write(what)
185
elif self.dots and self.pb is not None:
186
self.pb.update(what, self.testsRun - 1, None)
280
self.report_test_start(test)
281
test.number = self.count
188
282
self._recordTestStartTime()
284
def startTests(self):
286
if getattr(sys, 'frozen', None) is None:
287
bzr_path = osutils.realpath(sys.argv[0])
289
bzr_path = sys.executable
291
'bzr selftest: %s\n' % (bzr_path,))
294
bzrlib.__path__[0],))
296
' bzr-%s python-%s %s\n' % (
297
bzrlib.version_string,
298
bzrlib._format_version_tuple(sys.version_info),
299
platform.platform(aliased=1),
301
self.stream.write('\n')
190
303
def _recordTestStartTime(self):
191
304
"""Record that a test has started."""
192
305
self._start_time = time.time()
307
def _cleanupLogFile(self, test):
308
# We can only do this if we have one of our TestCases, not if
310
setKeepLogfile = getattr(test, 'setKeepLogfile', None)
311
if setKeepLogfile is not None:
194
314
def addError(self, test, err):
195
if isinstance(err[1], TestSkipped):
196
return self.addSkipped(test, err)
315
"""Tell result that test finished with an error.
317
Called from the TestCase run() method when the test
318
fails with an unexpected error.
197
321
unittest.TestResult.addError(self, test, err)
198
self.extractBenchmarkTime(test)
200
self.stream.writeln("ERROR %s" % self._testTimeString())
201
elif self.dots and self.pb is None:
202
self.stream.write('E')
204
self.pb.update(self._ellipsise_unimportant_words('ERROR', 13), self.testsRun, None)
322
self.error_count += 1
323
self.report_error(test, err)
206
324
if self.stop_early:
326
self._cleanupLogFile(test)
209
328
def addFailure(self, test, err):
329
"""Tell result that test failed.
331
Called from the TestCase run() method when the test
332
fails because e.g. an assert() method failed.
210
335
unittest.TestResult.addFailure(self, test, err)
211
self.extractBenchmarkTime(test)
213
self.stream.writeln(" FAIL %s" % self._testTimeString())
214
elif self.dots and self.pb is None:
215
self.stream.write('F')
217
self.pb.update(self._ellipsise_unimportant_words('FAIL', 13), self.testsRun, None)
336
self.failure_count += 1
337
self.report_failure(test, err)
219
338
if self.stop_early:
222
def addSuccess(self, test):
223
self.extractBenchmarkTime(test)
225
self.stream.writeln(' OK %s' % self._testTimeString())
226
elif self.dots and self.pb is None:
227
self.stream.write('~')
229
self.pb.update(self._ellipsise_unimportant_words('OK', 13), self.testsRun, None)
231
unittest.TestResult.addSuccess(self, test)
233
def addSkipped(self, test, skip_excinfo):
234
self.extractBenchmarkTime(test)
236
print >>self.stream, ' SKIP %s' % self._testTimeString()
237
print >>self.stream, ' %s' % skip_excinfo[1]
238
elif self.dots and self.pb is None:
239
self.stream.write('S')
241
self.pb.update(self._ellipsise_unimportant_words('SKIP', 13), self.testsRun, None)
243
# seems best to treat this as success from point-of-view of unittest
244
# -- it actually does nothing so it barely matters :)
245
unittest.TestResult.addSuccess(self, test)
247
def printErrorList(self, flavour, errors):
248
for test, err in errors:
249
self.stream.writeln(self.separator1)
250
self.stream.writeln("%s: %s" % (flavour, self.getDescription(test)))
251
if getattr(test, '_get_log', None) is not None:
253
print >>self.stream, \
254
('vvvv[log from %s]' % test.id()).ljust(78,'-')
255
print >>self.stream, test._get_log()
256
print >>self.stream, \
257
('^^^^[log from %s]' % test.id()).ljust(78,'-')
258
self.stream.writeln(self.separator2)
259
self.stream.writeln("%s" % err)
340
self._cleanupLogFile(test)
342
def addSuccess(self, test, details=None):
343
"""Tell result that test completed successfully.
345
Called from the TestCase run()
347
if self._bench_history is not None:
348
benchmark_time = self._extractBenchmarkTime(test, details)
349
if benchmark_time is not None:
350
self._bench_history.write("%s %s\n" % (
351
self._formatTime(benchmark_time),
353
self.report_success(test)
354
self._cleanupLogFile(test)
355
unittest.TestResult.addSuccess(self, test)
356
test._log_contents = ''
358
def addExpectedFailure(self, test, err):
359
self.known_failure_count += 1
360
self.report_known_failure(test, err)
362
def addNotSupported(self, test, feature):
363
"""The test will not be run because of a missing feature.
365
# this can be called in two different ways: it may be that the
366
# test started running, and then raised (through requireFeature)
367
# UnavailableFeature. Alternatively this method can be called
368
# while probing for features before running the test code proper; in
369
# that case we will see startTest and stopTest, but the test will
370
# never actually run.
371
self.unsupported.setdefault(str(feature), 0)
372
self.unsupported[str(feature)] += 1
373
self.report_unsupported(test, feature)
375
def addSkip(self, test, reason):
376
"""A test has not run for 'reason'."""
378
self.report_skip(test, reason)
380
def addNotApplicable(self, test, reason):
381
self.not_applicable_count += 1
382
self.report_not_applicable(test, reason)
384
def _post_mortem(self):
385
"""Start a PDB post mortem session."""
386
if os.environ.get('BZR_TEST_PDB', None):
387
import pdb;pdb.post_mortem()
389
def progress(self, offset, whence):
390
"""The test is adjusting the count of tests to run."""
391
if whence == SUBUNIT_SEEK_SET:
392
self.num_tests = offset
393
elif whence == SUBUNIT_SEEK_CUR:
394
self.num_tests += offset
396
raise errors.BzrError("Unknown whence %r" % whence)
398
def report_cleaning_up(self):
401
def startTestRun(self):
402
self.startTime = time.time()
404
def report_success(self, test):
407
def wasStrictlySuccessful(self):
408
if self.unsupported or self.known_failure_count:
410
return self.wasSuccessful()
413
class TextTestResult(ExtendedTestResult):
414
"""Displays progress and results of tests in text form"""
416
def __init__(self, stream, descriptions, verbosity,
421
ExtendedTestResult.__init__(self, stream, descriptions, verbosity,
422
bench_history, strict)
423
# We no longer pass them around, but just rely on the UIFactory stack
426
warnings.warn("Passing pb to TextTestResult is deprecated")
427
self.pb = self.ui.nested_progress_bar()
428
self.pb.show_pct = False
429
self.pb.show_spinner = False
430
self.pb.show_eta = False,
431
self.pb.show_count = False
432
self.pb.show_bar = False
433
self.pb.update_latency = 0
434
self.pb.show_transport_activity = False
436
def stopTestRun(self):
437
# called when the tests that are going to run have run
440
super(TextTestResult, self).stopTestRun()
442
def startTestRun(self):
443
super(TextTestResult, self).startTestRun()
444
self.pb.update('[test 0/%d] Starting' % (self.num_tests))
446
def printErrors(self):
447
# clear the pb to make room for the error listing
449
super(TextTestResult, self).printErrors()
451
def _progress_prefix_text(self):
452
# the longer this text, the less space we have to show the test
454
a = '[%d' % self.count # total that have been run
455
# tests skipped as known not to be relevant are not important enough
457
## if self.skip_count:
458
## a += ', %d skip' % self.skip_count
459
## if self.known_failure_count:
460
## a += '+%dX' % self.known_failure_count
462
a +='/%d' % self.num_tests
464
runtime = time.time() - self._overall_start_time
466
a += '%dm%ds' % (runtime / 60, runtime % 60)
469
total_fail_count = self.error_count + self.failure_count
471
a += ', %d failed' % total_fail_count
472
# if self.unsupported:
473
# a += ', %d missing' % len(self.unsupported)
477
def report_test_start(self, test):
480
self._progress_prefix_text()
482
+ self._shortened_test_description(test))
484
def _test_description(self, test):
485
return self._shortened_test_description(test)
487
def report_error(self, test, err):
488
self.ui.note('ERROR: %s\n %s\n' % (
489
self._test_description(test),
493
def report_failure(self, test, err):
494
self.ui.note('FAIL: %s\n %s\n' % (
495
self._test_description(test),
499
def report_known_failure(self, test, err):
502
def report_skip(self, test, reason):
505
def report_not_applicable(self, test, reason):
508
def report_unsupported(self, test, feature):
509
"""test cannot be run because feature is missing."""
511
def report_cleaning_up(self):
512
self.pb.update('Cleaning up')
515
class VerboseTestResult(ExtendedTestResult):
516
"""Produce long output, with one line per test run plus times"""
518
def _ellipsize_to_right(self, a_string, final_width):
519
"""Truncate and pad a string, keeping the right hand side"""
520
if len(a_string) > final_width:
521
result = '...' + a_string[3-final_width:]
524
return result.ljust(final_width)
526
def startTestRun(self):
527
super(VerboseTestResult, self).startTestRun()
528
self.stream.write('running %d tests...\n' % self.num_tests)
530
def report_test_start(self, test):
532
name = self._shortened_test_description(test)
533
width = osutils.terminal_width()
534
if width is not None:
535
# width needs space for 6 char status, plus 1 for slash, plus an
536
# 11-char time string, plus a trailing blank
537
# when NUMBERED_DIRS: plus 5 chars on test number, plus 1 char on
539
self.stream.write(self._ellipsize_to_right(name, width-18))
541
self.stream.write(name)
544
def _error_summary(self, err):
546
return '%s%s' % (indent, err[1])
548
def report_error(self, test, err):
549
self.stream.writeln('ERROR %s\n%s'
550
% (self._testTimeString(test),
551
self._error_summary(err)))
553
def report_failure(self, test, err):
554
self.stream.writeln(' FAIL %s\n%s'
555
% (self._testTimeString(test),
556
self._error_summary(err)))
558
def report_known_failure(self, test, err):
559
self.stream.writeln('XFAIL %s\n%s'
560
% (self._testTimeString(test),
561
self._error_summary(err)))
563
def report_success(self, test):
564
self.stream.writeln(' OK %s' % self._testTimeString(test))
565
for bench_called, stats in getattr(test, '_benchcalls', []):
566
self.stream.writeln('LSProf output for %s(%s, %s)' % bench_called)
567
stats.pprint(file=self.stream)
568
# flush the stream so that we get smooth output. This verbose mode is
569
# used to show the output in PQM.
572
def report_skip(self, test, reason):
573
self.stream.writeln(' SKIP %s\n%s'
574
% (self._testTimeString(test), reason))
576
def report_not_applicable(self, test, reason):
577
self.stream.writeln(' N/A %s\n %s'
578
% (self._testTimeString(test), reason))
580
def report_unsupported(self, test, feature):
581
"""test cannot be run because feature is missing."""
582
self.stream.writeln("NODEP %s\n The feature '%s' is not available."
583
%(self._testTimeString(test), feature))
262
586
class TextTestRunner(object):
473
1438
The file is removed as the test is torn down.
475
1440
fileno, name = tempfile.mkstemp(suffix='.log', prefix='testbzr')
476
encoder, decoder, stream_reader, stream_writer = codecs.lookup('UTF-8')
477
self._log_file = stream_writer(os.fdopen(fileno, 'w+'))
478
self._log_nonce = bzrlib.trace.enable_test_log(self._log_file)
1441
self._log_file = os.fdopen(fileno, 'w+')
1442
self._log_memento = bzrlib.trace.push_log_file(self._log_file)
479
1443
self._log_file_name = name
480
1444
self.addCleanup(self._finishLogFile)
482
1446
def _finishLogFile(self):
483
1447
"""Finished with the log file.
485
Read contents into memory, close, and delete.
487
bzrlib.trace.disable_test_log(self._log_nonce)
488
self._log_file.seek(0)
489
self._log_contents = self._log_file.read()
490
self._log_file.close()
491
os.remove(self._log_file_name)
492
self._log_file = self._log_file_name = None
494
def addCleanup(self, callable):
1449
Close the file and delete it, unless setKeepLogfile was called.
1451
if bzrlib.trace._trace_file:
1452
# flush the log file, to get all content
1453
bzrlib.trace._trace_file.flush()
1454
bzrlib.trace.pop_log_file(self._log_memento)
1455
# Cache the log result and delete the file on disk
1456
self._get_log(False)
1458
def thisFailsStrictLockCheck(self):
1459
"""It is known that this test would fail with -Dstrict_locks.
1461
By default, all tests are run with strict lock checking unless
1462
-Edisable_lock_checks is supplied. However there are some tests which
1463
we know fail strict locks at this point that have not been fixed.
1464
They should call this function to disable the strict checking.
1466
This should be used sparingly, it is much better to fix the locking
1467
issues rather than papering over the problem by calling this function.
1469
debug.debug_flags.discard('strict_locks')
1471
def addCleanup(self, callable, *args, **kwargs):
495
1472
"""Arrange to run a callable when this case is torn down.
497
Callables are run in the reverse of the order they are registered,
1474
Callables are run in the reverse of the order they are registered,
498
1475
ie last-in first-out.
500
if callable in self._cleanups:
501
raise ValueError("cleanup function %r already registered on %s"
503
self._cleanups.append(callable)
1477
self._cleanups.append((callable, args, kwargs))
1479
def overrideAttr(self, obj, attr_name, new=_unitialized_attr):
1480
"""Overrides an object attribute restoring it after the test.
1482
:param obj: The object that will be mutated.
1484
:param attr_name: The attribute name we want to preserve/override in
1487
:param new: The optional value we want to set the attribute to.
1489
:returns: The actual attr value.
1491
value = getattr(obj, attr_name)
1492
# The actual value is captured by the call below
1493
self.addCleanup(setattr, obj, attr_name, value)
1494
if new is not _unitialized_attr:
1495
setattr(obj, attr_name, new)
505
1498
def _cleanEnvironment(self):
1500
'BZR_HOME': None, # Don't inherit BZR_HOME to all the tests.
507
1501
'HOME': os.getcwd(),
508
'APPDATA': os.getcwd(),
1502
# bzr now uses the Win32 API and doesn't rely on APPDATA, but the
1503
# tests do check our impls match APPDATA
1504
'BZR_EDITOR': None, # test_msgeditor manipulates this variable
1508
'BZREMAIL': None, # may still be present in the environment
1510
'BZR_PROGRESS_BAR': None,
1512
'BZR_PLUGIN_PATH': None,
1513
'BZR_CONCURRENCY': None,
1514
# Make sure that any text ui tests are consistent regardless of
1515
# the environment the test case is run in; you may want tests that
1516
# test other combinations. 'dumb' is a reasonable guess for tests
1517
# going to a pipe or a StringIO.
1521
'BZR_COLUMNS': '80',
1523
'SSH_AUTH_SOCK': None,
1527
'https_proxy': None,
1528
'HTTPS_PROXY': None,
1533
# Nobody cares about ftp_proxy, FTP_PROXY AFAIK. So far at
1534
# least. If you do (care), please update this comment
1538
'BZR_REMOTE_PATH': None,
1539
# Generally speaking, we don't want apport reporting on crashes in
1540
# the test envirnoment unless we're specifically testing apport,
1541
# so that it doesn't leak into the real system environment. We
1542
# use an env var so it propagates to subprocesses.
1543
'APPORT_DISABLE': '1',
512
1545
self.__old_env = {}
513
1546
self.addCleanup(self._restoreEnvironment)
514
1547
for name, value in new_env.iteritems():
515
1548
self._captureVar(name, value)
518
1550
def _captureVar(self, name, newvalue):
519
"""Set an environment variable, preparing it to be reset when finished."""
520
self.__old_env[name] = os.environ.get(name, None)
522
if name in os.environ:
525
os.environ[name] = newvalue
528
def _restoreVar(name, value):
530
if name in os.environ:
533
os.environ[name] = value
1551
"""Set an environment variable, and reset it when finished."""
1552
self.__old_env[name] = osutils.set_or_unset_env(name, newvalue)
535
1554
def _restoreEnvironment(self):
536
1555
for name, value in self.__old_env.iteritems():
537
self._restoreVar(name, value)
541
unittest.TestCase.tearDown(self)
1556
osutils.set_or_unset_env(name, value)
1558
def _restoreHooks(self):
1559
for klass, (name, hooks) in self._preserved_hooks.items():
1560
setattr(klass, name, hooks)
1562
def knownFailure(self, reason):
1563
"""This test has failed for some known reason."""
1564
raise KnownFailure(reason)
1566
def _do_skip(self, result, reason):
1567
addSkip = getattr(result, 'addSkip', None)
1568
if not callable(addSkip):
1569
result.addSuccess(result)
1571
addSkip(self, reason)
1574
def _do_known_failure(self, result, e):
1575
err = sys.exc_info()
1576
addExpectedFailure = getattr(result, 'addExpectedFailure', None)
1577
if addExpectedFailure is not None:
1578
addExpectedFailure(self, err)
1580
result.addSuccess(self)
1583
def _do_not_applicable(self, result, e):
1585
reason = 'No reason given'
1588
addNotApplicable = getattr(result, 'addNotApplicable', None)
1589
if addNotApplicable is not None:
1590
result.addNotApplicable(self, reason)
1592
self._do_skip(result, reason)
1595
def _do_unsupported_or_skip(self, result, e):
1597
addNotSupported = getattr(result, 'addNotSupported', None)
1598
if addNotSupported is not None:
1599
result.addNotSupported(self, reason)
1601
self._do_skip(result, reason)
543
1603
def time(self, callable, *args, **kwargs):
544
"""Run callable and accrue the time it takes to the benchmark time."""
1604
"""Run callable and accrue the time it takes to the benchmark time.
1606
If lsprofiling is enabled (i.e. by --lsprof-time to bzr selftest) then
1607
this will cause lsprofile statistics to be gathered and stored in
545
1610
if self._benchtime is None:
1611
self.addDetail('benchtime', content.Content(content.ContentType(
1612
"text", "plain"), lambda:[str(self._benchtime)]))
546
1613
self._benchtime = 0
547
1614
start = time.time()
549
callable(*args, **kwargs)
1616
if not self._gather_lsprof_in_benchmarks:
1617
return callable(*args, **kwargs)
1619
# record this benchmark
1620
ret, stats = bzrlib.lsprof.profile(callable, *args, **kwargs)
1622
self._benchcalls.append(((callable, args, kwargs), stats))
551
1625
self._benchtime += time.time() - start
553
def _runCleanups(self):
554
"""Run registered cleanup functions.
556
This should only be called from TestCase.tearDown.
558
# TODO: Perhaps this should keep running cleanups even if
560
for cleanup_fn in reversed(self._cleanups):
563
1627
def log(self, *args):
567
"""Return as a string the log for this test"""
568
if self._log_file_name:
569
return open(self._log_file_name).read()
1630
def _get_log(self, keep_log_file=False):
1631
"""Internal helper to get the log from bzrlib.trace for this test.
1633
Please use self.getDetails, or self.get_log to access this in test case
1636
:param keep_log_file: When True, if the log is still a file on disk
1637
leave it as a file on disk. When False, if the log is still a file
1638
on disk, the log file is deleted and the log preserved as
1640
:return: A string containing the log.
1642
if self._log_contents is not None:
1644
self._log_contents.decode('utf8')
1645
except UnicodeDecodeError:
1646
unicodestr = self._log_contents.decode('utf8', 'replace')
1647
self._log_contents = unicodestr.encode('utf8')
571
1648
return self._log_contents
572
# TODO: Delete the log after it's been read in
574
def capture(self, cmd, retcode=0):
575
"""Shortcut that splits cmd into words, runs, and returns stdout"""
576
return self.run_bzr_captured(cmd.split(), retcode=retcode)[0]
578
def run_bzr_captured(self, argv, retcode=0, stdin=None):
579
"""Invoke bzr and return (stdout, stderr).
581
Useful for code that wants to check the contents of the
582
output, the way error messages are presented, etc.
584
This should be the main method for tests that want to exercise the
585
overall behavior of the bzr application (rather than a unit test
586
or a functional test of the library.)
588
Much of the old code runs bzr by forking a new copy of Python, but
589
that is slower, harder to debug, and generally not necessary.
591
This runs bzr through the interface that catches and reports
592
errors, and with logging set to something approximating the
593
default, so that error reporting can be checked.
595
argv -- arguments to invoke bzr
596
retcode -- expected return code, or None for don't-care.
597
:param stdin: A string to be used as stdin for the command.
599
if stdin is not None:
600
stdin = StringIO(stdin)
603
self.log('run bzr: %s', ' '.join(argv))
1650
if bzrlib.trace._trace_file:
1651
# flush the log file, to get all content
1652
bzrlib.trace._trace_file.flush()
1653
if self._log_file_name is not None:
1654
logfile = open(self._log_file_name)
1656
log_contents = logfile.read()
1660
log_contents.decode('utf8')
1661
except UnicodeDecodeError:
1662
unicodestr = log_contents.decode('utf8', 'replace')
1663
log_contents = unicodestr.encode('utf8')
1664
if not keep_log_file:
1665
self._log_file.close()
1666
self._log_file = None
1667
# Permit multiple calls to get_log until we clean it up in
1669
self._log_contents = log_contents
1671
os.remove(self._log_file_name)
1673
if sys.platform == 'win32' and e.errno == errno.EACCES:
1674
sys.stderr.write(('Unable to delete log file '
1675
' %r\n' % self._log_file_name))
1678
self._log_file_name = None
1681
return "No log file content and no log file name."
1684
"""Get a unicode string containing the log from bzrlib.trace.
1686
Undecodable characters are replaced.
1688
return u"".join(self.getDetails()['log'].iter_text())
1690
def requireFeature(self, feature):
1691
"""This test requires a specific feature is available.
1693
:raises UnavailableFeature: When feature is not available.
1695
if not feature.available():
1696
raise UnavailableFeature(feature)
1698
def _run_bzr_autosplit(self, args, retcode, encoding, stdin,
1700
"""Run bazaar command line, splitting up a string command line."""
1701
if isinstance(args, basestring):
1702
# shlex don't understand unicode strings,
1703
# so args should be plain string (bialix 20070906)
1704
args = list(shlex.split(str(args)))
1705
return self._run_bzr_core(args, retcode=retcode,
1706
encoding=encoding, stdin=stdin, working_dir=working_dir,
1709
def _run_bzr_core(self, args, retcode, encoding, stdin,
1711
# Clear chk_map page cache, because the contents are likely to mask
1713
chk_map.clear_cache()
1714
if encoding is None:
1715
encoding = osutils.get_user_encoding()
1716
stdout = StringIOWrapper()
1717
stderr = StringIOWrapper()
1718
stdout.encoding = encoding
1719
stderr.encoding = encoding
1721
self.log('run bzr: %r', args)
604
1722
# FIXME: don't call into logging here
605
1723
handler = logging.StreamHandler(stderr)
606
handler.setFormatter(bzrlib.trace.QuietFormatter())
607
1724
handler.setLevel(logging.INFO)
608
1725
logger = logging.getLogger('')
609
1726
logger.addHandler(handler)
610
old_ui_factory = bzrlib.ui.ui_factory
611
bzrlib.ui.ui_factory = bzrlib.tests.blackbox.TestUIFactory(
614
bzrlib.ui.ui_factory.stdin = stdin
1727
old_ui_factory = ui.ui_factory
1728
ui.ui_factory = TestUIFactory(stdin=stdin, stdout=stdout, stderr=stderr)
1731
if working_dir is not None:
1732
cwd = osutils.getcwd()
1733
os.chdir(working_dir)
616
result = self.apply_redirected(stdin, stdout, stderr,
617
bzrlib.commands.run_bzr_catch_errors,
1737
result = self.apply_redirected(ui.ui_factory.stdin,
1739
bzrlib.commands.run_bzr_catch_user_errors,
1741
except KeyboardInterrupt:
1742
# Reraise KeyboardInterrupt with contents of redirected stdout
1743
# and stderr as arguments, for tests which are interested in
1744
# stdout and stderr and are expecting the exception.
1745
out = stdout.getvalue()
1746
err = stderr.getvalue()
1748
self.log('output:\n%r', out)
1750
self.log('errors:\n%r', err)
1751
raise KeyboardInterrupt(out, err)
620
1753
logger.removeHandler(handler)
621
bzrlib.ui.ui_factory = old_ui_factory
1754
ui.ui_factory = old_ui_factory
622
1758
out = stdout.getvalue()
623
1759
err = stderr.getvalue()
625
self.log('output:\n%s', out)
1761
self.log('output:\n%r', out)
627
self.log('errors:\n%s', err)
1763
self.log('errors:\n%r', err)
628
1764
if retcode is not None:
629
self.assertEquals(result, retcode)
1765
self.assertEquals(retcode, result,
1766
message='Unexpected return code')
1767
return result, out, err
632
def run_bzr(self, *args, **kwargs):
1769
def run_bzr(self, args, retcode=0, encoding=None, stdin=None,
1770
working_dir=None, error_regexes=[], output_encoding=None):
633
1771
"""Invoke bzr, as if it were run from the command line.
1773
The argument list should not include the bzr program name - the
1774
first argument is normally the bzr command. Arguments may be
1775
passed in three ways:
1777
1- A list of strings, eg ["commit", "a"]. This is recommended
1778
when the command contains whitespace or metacharacters, or
1779
is built up at run time.
1781
2- A single string, eg "add a". This is the most convenient
1782
for hardcoded commands.
1784
This runs bzr through the interface that catches and reports
1785
errors, and with logging set to something approximating the
1786
default, so that error reporting can be checked.
635
1788
This should be the main method for tests that want to exercise the
636
1789
overall behavior of the bzr application (rather than a unit test
637
1790
or a functional test of the library.)
697
2048
sys.stderr = real_stderr
698
2049
sys.stdin = real_stdin
700
def merge(self, branch_from, wt_to):
701
"""A helper for tests to do a ui-less merge.
703
This should move to the main library when someone has time to integrate
706
# minimal ui-less merge.
707
wt_to.branch.fetch(branch_from)
708
base_rev = common_ancestor(branch_from.last_revision(),
709
wt_to.branch.last_revision(),
710
wt_to.branch.repository)
711
merge_inner(wt_to.branch, branch_from.basis_tree(),
712
wt_to.branch.repository.revision_tree(base_rev),
714
wt_to.add_pending_merge(branch_from.last_revision())
717
BzrTestBase = TestCase
720
class TestCaseInTempDir(TestCase):
2051
def reduceLockdirTimeout(self):
2052
"""Reduce the default lock timeout for the duration of the test, so that
2053
if LockContention occurs during a test, it does so quickly.
2055
Tests that expect to provoke LockContention errors should call this.
2057
self.overrideAttr(bzrlib.lockdir, '_DEFAULT_TIMEOUT_SECONDS', 0)
2059
def make_utf8_encoded_stringio(self, encoding_type=None):
2060
"""Return a StringIOWrapper instance, that will encode Unicode
2063
if encoding_type is None:
2064
encoding_type = 'strict'
2066
output_encoding = 'utf-8'
2067
sio = codecs.getwriter(output_encoding)(sio, errors=encoding_type)
2068
sio.encoding = output_encoding
2071
def disable_verb(self, verb):
2072
"""Disable a smart server verb for one test."""
2073
from bzrlib.smart import request
2074
request_handlers = request.request_handlers
2075
orig_method = request_handlers.get(verb)
2076
request_handlers.remove(verb)
2077
self.addCleanup(request_handlers.register, verb, orig_method)
2080
class CapturedCall(object):
2081
"""A helper for capturing smart server calls for easy debug analysis."""
2083
def __init__(self, params, prefix_length):
2084
"""Capture the call with params and skip prefix_length stack frames."""
2087
# The last 5 frames are the __init__, the hook frame, and 3 smart
2088
# client frames. Beyond this we could get more clever, but this is good
2090
stack = traceback.extract_stack()[prefix_length:-5]
2091
self.stack = ''.join(traceback.format_list(stack))
2094
return self.call.method
2097
return self.call.method
2103
class TestCaseWithMemoryTransport(TestCase):
2104
"""Common test class for tests that do not need disk resources.
2106
Tests that need disk resources should derive from TestCaseWithTransport.
2108
TestCaseWithMemoryTransport sets the TEST_ROOT variable for all bzr tests.
2110
For TestCaseWithMemoryTransport the test_home_dir is set to the name of
2111
a directory which does not exist. This serves to help ensure test isolation
2112
is preserved. test_dir is set to the TEST_ROOT, as is cwd, because they
2113
must exist. However, TestCaseWithMemoryTransport does not offer local
2114
file defaults for the transport in tests, nor does it obey the command line
2115
override, so tests that accidentally write to the common directory should
2118
:cvar TEST_ROOT: Directory containing all temporary directories, plus
2119
a .bzr directory that stops us ascending higher into the filesystem.
2125
def __init__(self, methodName='runTest'):
2126
# allow test parameterization after test construction and before test
2127
# execution. Variables that the parameterizer sets need to be
2128
# ones that are not set by setUp, or setUp will trash them.
2129
super(TestCaseWithMemoryTransport, self).__init__(methodName)
2130
self.vfs_transport_factory = default_transport
2131
self.transport_server = None
2132
self.transport_readonly_server = None
2133
self.__vfs_server = None
2135
def get_transport(self, relpath=None):
2136
"""Return a writeable transport.
2138
This transport is for the test scratch space relative to
2141
:param relpath: a path relative to the base url.
2143
t = get_transport(self.get_url(relpath))
2144
self.assertFalse(t.is_readonly())
2147
def get_readonly_transport(self, relpath=None):
2148
"""Return a readonly transport for the test scratch space
2150
This can be used to test that operations which should only need
2151
readonly access in fact do not try to write.
2153
:param relpath: a path relative to the base url.
2155
t = get_transport(self.get_readonly_url(relpath))
2156
self.assertTrue(t.is_readonly())
2159
def create_transport_readonly_server(self):
2160
"""Create a transport server from class defined at init.
2162
This is mostly a hook for daughter classes.
2164
return self.transport_readonly_server()
2166
def get_readonly_server(self):
2167
"""Get the server instance for the readonly transport
2169
This is useful for some tests with specific servers to do diagnostics.
2171
if self.__readonly_server is None:
2172
if self.transport_readonly_server is None:
2173
# readonly decorator requested
2174
self.__readonly_server = ReadonlyServer()
2176
# explicit readonly transport.
2177
self.__readonly_server = self.create_transport_readonly_server()
2178
self.start_server(self.__readonly_server,
2179
self.get_vfs_only_server())
2180
return self.__readonly_server
2182
def get_readonly_url(self, relpath=None):
2183
"""Get a URL for the readonly transport.
2185
This will either be backed by '.' or a decorator to the transport
2186
used by self.get_url()
2187
relpath provides for clients to get a path relative to the base url.
2188
These should only be downwards relative, not upwards.
2190
base = self.get_readonly_server().get_url()
2191
return self._adjust_url(base, relpath)
2193
def get_vfs_only_server(self):
2194
"""Get the vfs only read/write server instance.
2196
This is useful for some tests with specific servers that need
2199
For TestCaseWithMemoryTransport this is always a MemoryServer, and there
2200
is no means to override it.
2202
if self.__vfs_server is None:
2203
self.__vfs_server = MemoryServer()
2204
self.start_server(self.__vfs_server)
2205
return self.__vfs_server
2207
def get_server(self):
2208
"""Get the read/write server instance.
2210
This is useful for some tests with specific servers that need
2213
This is built from the self.transport_server factory. If that is None,
2214
then the self.get_vfs_server is returned.
2216
if self.__server is None:
2217
if (self.transport_server is None or self.transport_server is
2218
self.vfs_transport_factory):
2219
self.__server = self.get_vfs_only_server()
2221
# bring up a decorated means of access to the vfs only server.
2222
self.__server = self.transport_server()
2223
self.start_server(self.__server, self.get_vfs_only_server())
2224
return self.__server
2226
def _adjust_url(self, base, relpath):
2227
"""Get a URL (or maybe a path) for the readwrite transport.
2229
This will either be backed by '.' or to an equivalent non-file based
2231
relpath provides for clients to get a path relative to the base url.
2232
These should only be downwards relative, not upwards.
2234
if relpath is not None and relpath != '.':
2235
if not base.endswith('/'):
2237
# XXX: Really base should be a url; we did after all call
2238
# get_url()! But sometimes it's just a path (from
2239
# LocalAbspathServer), and it'd be wrong to append urlescaped data
2240
# to a non-escaped local path.
2241
if base.startswith('./') or base.startswith('/'):
2244
base += urlutils.escape(relpath)
2247
def get_url(self, relpath=None):
2248
"""Get a URL (or maybe a path) for the readwrite transport.
2250
This will either be backed by '.' or to an equivalent non-file based
2252
relpath provides for clients to get a path relative to the base url.
2253
These should only be downwards relative, not upwards.
2255
base = self.get_server().get_url()
2256
return self._adjust_url(base, relpath)
2258
def get_vfs_only_url(self, relpath=None):
2259
"""Get a URL (or maybe a path for the plain old vfs transport.
2261
This will never be a smart protocol. It always has all the
2262
capabilities of the local filesystem, but it might actually be a
2263
MemoryTransport or some other similar virtual filesystem.
2265
This is the backing transport (if any) of the server returned by
2266
get_url and get_readonly_url.
2268
:param relpath: provides for clients to get a path relative to the base
2269
url. These should only be downwards relative, not upwards.
2272
base = self.get_vfs_only_server().get_url()
2273
return self._adjust_url(base, relpath)
2275
def _create_safety_net(self):
2276
"""Make a fake bzr directory.
2278
This prevents any tests propagating up onto the TEST_ROOT directory's
2281
root = TestCaseWithMemoryTransport.TEST_ROOT
2282
bzrdir.BzrDir.create_standalone_workingtree(root)
2284
def _check_safety_net(self):
2285
"""Check that the safety .bzr directory have not been touched.
2287
_make_test_root have created a .bzr directory to prevent tests from
2288
propagating. This method ensures than a test did not leaked.
2290
root = TestCaseWithMemoryTransport.TEST_ROOT
2291
self.permit_url(get_transport(root).base)
2292
wt = workingtree.WorkingTree.open(root)
2293
last_rev = wt.last_revision()
2294
if last_rev != 'null:':
2295
# The current test have modified the /bzr directory, we need to
2296
# recreate a new one or all the followng tests will fail.
2297
# If you need to inspect its content uncomment the following line
2298
# import pdb; pdb.set_trace()
2299
_rmtree_temp_dir(root + '/.bzr', test_id=self.id())
2300
self._create_safety_net()
2301
raise AssertionError('%s/.bzr should not be modified' % root)
2303
def _make_test_root(self):
2304
if TestCaseWithMemoryTransport.TEST_ROOT is None:
2305
# Watch out for tricky test dir (on OSX /tmp -> /private/tmp)
2306
root = osutils.realpath(osutils.mkdtemp(prefix='testbzr-',
2308
TestCaseWithMemoryTransport.TEST_ROOT = root
2310
self._create_safety_net()
2312
# The same directory is used by all tests, and we're not
2313
# specifically told when all tests are finished. This will do.
2314
atexit.register(_rmtree_temp_dir, root)
2316
self.permit_dir(TestCaseWithMemoryTransport.TEST_ROOT)
2317
self.addCleanup(self._check_safety_net)
2319
def makeAndChdirToTestDir(self):
2320
"""Create a temporary directories for this one test.
2322
This must set self.test_home_dir and self.test_dir and chdir to
2325
For TestCaseWithMemoryTransport we chdir to the TEST_ROOT for this test.
2327
os.chdir(TestCaseWithMemoryTransport.TEST_ROOT)
2328
self.test_dir = TestCaseWithMemoryTransport.TEST_ROOT
2329
self.test_home_dir = self.test_dir + "/MemoryTransportMissingHomeDir"
2330
self.permit_dir(self.test_dir)
2332
def make_branch(self, relpath, format=None):
2333
"""Create a branch on the transport at relpath."""
2334
repo = self.make_repository(relpath, format=format)
2335
return repo.bzrdir.create_branch()
2337
def make_bzrdir(self, relpath, format=None):
2339
# might be a relative or absolute path
2340
maybe_a_url = self.get_url(relpath)
2341
segments = maybe_a_url.rsplit('/', 1)
2342
t = get_transport(maybe_a_url)
2343
if len(segments) > 1 and segments[-1] not in ('', '.'):
2347
if isinstance(format, basestring):
2348
format = bzrdir.format_registry.make_bzrdir(format)
2349
return format.initialize_on_transport(t)
2350
except errors.UninitializableFormat:
2351
raise TestSkipped("Format %s is not initializable." % format)
2353
def make_repository(self, relpath, shared=False, format=None):
2354
"""Create a repository on our default transport at relpath.
2356
Note that relpath must be a relative path, not a full url.
2358
# FIXME: If you create a remoterepository this returns the underlying
2359
# real format, which is incorrect. Actually we should make sure that
2360
# RemoteBzrDir returns a RemoteRepository.
2361
# maybe mbp 20070410
2362
made_control = self.make_bzrdir(relpath, format=format)
2363
return made_control.create_repository(shared=shared)
2365
def make_smart_server(self, path):
2366
smart_server = server.SmartTCPServer_for_testing()
2367
self.start_server(smart_server, self.get_server())
2368
remote_transport = get_transport(smart_server.get_url()).clone(path)
2369
return remote_transport
2371
def make_branch_and_memory_tree(self, relpath, format=None):
2372
"""Create a branch on the default transport and a MemoryTree for it."""
2373
b = self.make_branch(relpath, format=format)
2374
return memorytree.MemoryTree.create_on_branch(b)
2376
def make_branch_builder(self, relpath, format=None):
2377
branch = self.make_branch(relpath, format=format)
2378
return branchbuilder.BranchBuilder(branch=branch)
2380
def overrideEnvironmentForTesting(self):
2381
test_home_dir = self.test_home_dir
2382
if isinstance(test_home_dir, unicode):
2383
test_home_dir = test_home_dir.encode(sys.getfilesystemencoding())
2384
os.environ['HOME'] = test_home_dir
2385
os.environ['BZR_HOME'] = test_home_dir
2388
super(TestCaseWithMemoryTransport, self).setUp()
2389
self._make_test_root()
2390
self.addCleanup(os.chdir, os.getcwdu())
2391
self.makeAndChdirToTestDir()
2392
self.overrideEnvironmentForTesting()
2393
self.__readonly_server = None
2394
self.__server = None
2395
self.reduceLockdirTimeout()
2397
def setup_smart_server_with_call_log(self):
2398
"""Sets up a smart server as the transport server with a call log."""
2399
self.transport_server = server.SmartTCPServer_for_testing
2400
self.hpss_calls = []
2402
# Skip the current stack down to the caller of
2403
# setup_smart_server_with_call_log
2404
prefix_length = len(traceback.extract_stack()) - 2
2405
def capture_hpss_call(params):
2406
self.hpss_calls.append(
2407
CapturedCall(params, prefix_length))
2408
client._SmartClient.hooks.install_named_hook(
2409
'call', capture_hpss_call, None)
2411
def reset_smart_call_log(self):
2412
self.hpss_calls = []
2415
class TestCaseInTempDir(TestCaseWithMemoryTransport):
721
2416
"""Derived class that runs a test within a temporary directory.
723
2418
This is useful for tests that need to create a branch, etc.
1010
2675
for readonly urls.
1012
2677
TODO RBC 20060127: make this an option to TestCaseWithTransport so it can
1013
be used without needed to redo it when a different
2678
be used without needed to redo it when a different
1014
2679
subclass is in use ?
1017
2682
def setUp(self):
1018
2683
super(ChrootedTestCase, self).setUp()
1019
if not self.transport_server == bzrlib.transport.memory.MemoryServer:
1020
self.transport_readonly_server = bzrlib.transport.http.HttpServer
2684
if not self.vfs_transport_factory == MemoryServer:
2685
self.transport_readonly_server = HttpServer
2688
def condition_id_re(pattern):
2689
"""Create a condition filter which performs a re check on a test's id.
2691
:param pattern: A regular expression string.
2692
:return: A callable that returns True if the re matches.
2694
filter_re = osutils.re_compile_checked(pattern, 0,
2696
def condition(test):
2698
return filter_re.search(test_id)
2702
def condition_isinstance(klass_or_klass_list):
2703
"""Create a condition filter which returns isinstance(param, klass).
2705
:return: A callable which when called with one parameter obj return the
2706
result of isinstance(obj, klass_or_klass_list).
2709
return isinstance(obj, klass_or_klass_list)
2713
def condition_id_in_list(id_list):
2714
"""Create a condition filter which verify that test's id in a list.
2716
:param id_list: A TestIdList object.
2717
:return: A callable that returns True if the test's id appears in the list.
2719
def condition(test):
2720
return id_list.includes(test.id())
2724
def condition_id_startswith(starts):
2725
"""Create a condition filter verifying that test's id starts with a string.
2727
:param starts: A list of string.
2728
:return: A callable that returns True if the test's id starts with one of
2731
def condition(test):
2732
for start in starts:
2733
if test.id().startswith(start):
2739
def exclude_tests_by_condition(suite, condition):
2740
"""Create a test suite which excludes some tests from suite.
2742
:param suite: The suite to get tests from.
2743
:param condition: A callable whose result evaluates True when called with a
2744
test case which should be excluded from the result.
2745
:return: A suite which contains the tests found in suite that fail
2749
for test in iter_suite_tests(suite):
2750
if not condition(test):
2752
return TestUtil.TestSuite(result)
2755
def filter_suite_by_condition(suite, condition):
2756
"""Create a test suite by filtering another one.
2758
:param suite: The source suite.
2759
:param condition: A callable whose result evaluates True when called with a
2760
test case which should be included in the result.
2761
:return: A suite which contains the tests found in suite that pass
2765
for test in iter_suite_tests(suite):
2768
return TestUtil.TestSuite(result)
1023
2771
def filter_suite_by_re(suite, pattern):
1024
result = TestSuite()
1025
filter_re = re.compile(pattern)
2772
"""Create a test suite by filtering another one.
2774
:param suite: the source suite
2775
:param pattern: pattern that names must match
2776
:returns: the newly created suite
2778
condition = condition_id_re(pattern)
2779
result_suite = filter_suite_by_condition(suite, condition)
2783
def filter_suite_by_id_list(suite, test_id_list):
2784
"""Create a test suite by filtering another one.
2786
:param suite: The source suite.
2787
:param test_id_list: A list of the test ids to keep as strings.
2788
:returns: the newly created suite
2790
condition = condition_id_in_list(test_id_list)
2791
result_suite = filter_suite_by_condition(suite, condition)
2795
def filter_suite_by_id_startswith(suite, start):
2796
"""Create a test suite by filtering another one.
2798
:param suite: The source suite.
2799
:param start: A list of string the test id must start with one of.
2800
:returns: the newly created suite
2802
condition = condition_id_startswith(start)
2803
result_suite = filter_suite_by_condition(suite, condition)
2807
def exclude_tests_by_re(suite, pattern):
2808
"""Create a test suite which excludes some tests from suite.
2810
:param suite: The suite to get tests from.
2811
:param pattern: A regular expression string. Test ids that match this
2812
pattern will be excluded from the result.
2813
:return: A TestSuite that contains all the tests from suite without the
2814
tests that matched pattern. The order of tests is the same as it was in
2817
return exclude_tests_by_condition(suite, condition_id_re(pattern))
2820
def preserve_input(something):
2821
"""A helper for performing test suite transformation chains.
2823
:param something: Anything you want to preserve.
2829
def randomize_suite(suite):
2830
"""Return a new TestSuite with suite's tests in random order.
2832
The tests in the input suite are flattened into a single suite in order to
2833
accomplish this. Any nested TestSuites are removed to provide global
2836
tests = list(iter_suite_tests(suite))
2837
random.shuffle(tests)
2838
return TestUtil.TestSuite(tests)
2841
def split_suite_by_condition(suite, condition):
2842
"""Split a test suite into two by a condition.
2844
:param suite: The suite to split.
2845
:param condition: The condition to match on. Tests that match this
2846
condition are returned in the first test suite, ones that do not match
2847
are in the second suite.
2848
:return: A tuple of two test suites, where the first contains tests from
2849
suite matching the condition, and the second contains the remainder
2850
from suite. The order within each output suite is the same as it was in
1026
2855
for test in iter_suite_tests(suite):
1027
if filter_re.search(test.id()):
1028
result.addTest(test)
2857
matched.append(test)
2859
did_not_match.append(test)
2860
return TestUtil.TestSuite(matched), TestUtil.TestSuite(did_not_match)
2863
def split_suite_by_re(suite, pattern):
2864
"""Split a test suite into two by a regular expression.
2866
:param suite: The suite to split.
2867
:param pattern: A regular expression string. Test ids that match this
2868
pattern will be in the first test suite returned, and the others in the
2869
second test suite returned.
2870
:return: A tuple of two test suites, where the first contains tests from
2871
suite matching pattern, and the second contains the remainder from
2872
suite. The order within each output suite is the same as it was in
2875
return split_suite_by_condition(suite, condition_id_re(pattern))
1032
2878
def run_suite(suite, name='test', verbose=False, pattern=".*",
1033
stop_on_failure=False, keep_output=False,
1035
TestCaseInTempDir._TEST_NAME = name
2879
stop_on_failure=False,
2880
transport=None, lsprof_timed=None, bench_history=None,
2881
matching_tests_first=None,
2884
exclude_pattern=None,
2887
suite_decorators=None,
2889
result_decorators=None,
2891
"""Run a test suite for bzr selftest.
2893
:param runner_class: The class of runner to use. Must support the
2894
constructor arguments passed by run_suite which are more than standard
2896
:return: A boolean indicating success.
2898
TestCase._gather_lsprof_in_benchmarks = lsprof_timed
1041
pb = progress.ProgressBar()
1042
runner = TextTestRunner(stream=sys.stdout,
2903
if runner_class is None:
2904
runner_class = TextTestRunner
2907
runner = runner_class(stream=stream,
1043
2908
descriptions=0,
1044
2909
verbosity=verbosity,
1045
keep_output=keep_output,
2910
bench_history=bench_history,
2912
result_decorators=result_decorators,
1047
2914
runner.stop_on_failure=stop_on_failure
1049
suite = filter_suite_by_re(suite, pattern)
2915
# built in decorator factories:
2917
random_order(random_seed, runner),
2918
exclude_tests(exclude_pattern),
2920
if matching_tests_first:
2921
decorators.append(tests_first(pattern))
2923
decorators.append(filter_tests(pattern))
2924
if suite_decorators:
2925
decorators.extend(suite_decorators)
2926
# tell the result object how many tests will be running: (except if
2927
# --parallel=fork is being used. Robert said he will provide a better
2928
# progress design later -- vila 20090817)
2929
if fork_decorator not in decorators:
2930
decorators.append(CountingDecorator)
2931
for decorator in decorators:
2932
suite = decorator(suite)
2934
# Done after test suite decoration to allow randomisation etc
2935
# to take effect, though that is of marginal benefit.
2937
stream.write("Listing tests only ...\n")
2938
for t in iter_suite_tests(suite):
2939
stream.write("%s\n" % (t.id()))
1050
2941
result = runner.run(suite)
1051
return result.wasSuccessful()
2943
return result.wasStrictlySuccessful()
2945
return result.wasSuccessful()
2948
# A registry where get() returns a suite decorator.
2949
parallel_registry = registry.Registry()
2952
def fork_decorator(suite):
2953
concurrency = osutils.local_concurrency()
2954
if concurrency == 1:
2956
from testtools import ConcurrentTestSuite
2957
return ConcurrentTestSuite(suite, fork_for_tests)
2958
parallel_registry.register('fork', fork_decorator)
2961
def subprocess_decorator(suite):
2962
concurrency = osutils.local_concurrency()
2963
if concurrency == 1:
2965
from testtools import ConcurrentTestSuite
2966
return ConcurrentTestSuite(suite, reinvoke_for_tests)
2967
parallel_registry.register('subprocess', subprocess_decorator)
2970
def exclude_tests(exclude_pattern):
2971
"""Return a test suite decorator that excludes tests."""
2972
if exclude_pattern is None:
2973
return identity_decorator
2974
def decorator(suite):
2975
return ExcludeDecorator(suite, exclude_pattern)
2979
def filter_tests(pattern):
2981
return identity_decorator
2982
def decorator(suite):
2983
return FilterTestsDecorator(suite, pattern)
2987
def random_order(random_seed, runner):
2988
"""Return a test suite decorator factory for randomising tests order.
2990
:param random_seed: now, a string which casts to a long, or a long.
2991
:param runner: A test runner with a stream attribute to report on.
2993
if random_seed is None:
2994
return identity_decorator
2995
def decorator(suite):
2996
return RandomDecorator(suite, random_seed, runner.stream)
3000
def tests_first(pattern):
3002
return identity_decorator
3003
def decorator(suite):
3004
return TestFirstDecorator(suite, pattern)
3008
def identity_decorator(suite):
3013
class TestDecorator(TestSuite):
3014
"""A decorator for TestCase/TestSuite objects.
3016
Usually, subclasses should override __iter__(used when flattening test
3017
suites), which we do to filter, reorder, parallelise and so on, run() and
3021
def __init__(self, suite):
3022
TestSuite.__init__(self)
3025
def countTestCases(self):
3028
cases += test.countTestCases()
3035
def run(self, result):
3036
# Use iteration on self, not self._tests, to allow subclasses to hook
3039
if result.shouldStop:
3045
class CountingDecorator(TestDecorator):
3046
"""A decorator which calls result.progress(self.countTestCases)."""
3048
def run(self, result):
3049
progress_method = getattr(result, 'progress', None)
3050
if callable(progress_method):
3051
progress_method(self.countTestCases(), SUBUNIT_SEEK_SET)
3052
return super(CountingDecorator, self).run(result)
3055
class ExcludeDecorator(TestDecorator):
3056
"""A decorator which excludes test matching an exclude pattern."""
3058
def __init__(self, suite, exclude_pattern):
3059
TestDecorator.__init__(self, suite)
3060
self.exclude_pattern = exclude_pattern
3061
self.excluded = False
3065
return iter(self._tests)
3066
self.excluded = True
3067
suite = exclude_tests_by_re(self, self.exclude_pattern)
3069
self.addTests(suite)
3070
return iter(self._tests)
3073
class FilterTestsDecorator(TestDecorator):
3074
"""A decorator which filters tests to those matching a pattern."""
3076
def __init__(self, suite, pattern):
3077
TestDecorator.__init__(self, suite)
3078
self.pattern = pattern
3079
self.filtered = False
3083
return iter(self._tests)
3084
self.filtered = True
3085
suite = filter_suite_by_re(self, self.pattern)
3087
self.addTests(suite)
3088
return iter(self._tests)
3091
class RandomDecorator(TestDecorator):
3092
"""A decorator which randomises the order of its tests."""
3094
def __init__(self, suite, random_seed, stream):
3095
TestDecorator.__init__(self, suite)
3096
self.random_seed = random_seed
3097
self.randomised = False
3098
self.stream = stream
3102
return iter(self._tests)
3103
self.randomised = True
3104
self.stream.write("Randomizing test order using seed %s\n\n" %
3105
(self.actual_seed()))
3106
# Initialise the random number generator.
3107
random.seed(self.actual_seed())
3108
suite = randomize_suite(self)
3110
self.addTests(suite)
3111
return iter(self._tests)
3113
def actual_seed(self):
3114
if self.random_seed == "now":
3115
# We convert the seed to a long to make it reuseable across
3116
# invocations (because the user can reenter it).
3117
self.random_seed = long(time.time())
3119
# Convert the seed to a long if we can
3121
self.random_seed = long(self.random_seed)
3124
return self.random_seed
3127
class TestFirstDecorator(TestDecorator):
3128
"""A decorator which moves named tests to the front."""
3130
def __init__(self, suite, pattern):
3131
TestDecorator.__init__(self, suite)
3132
self.pattern = pattern
3133
self.filtered = False
3137
return iter(self._tests)
3138
self.filtered = True
3139
suites = split_suite_by_re(self, self.pattern)
3141
self.addTests(suites)
3142
return iter(self._tests)
3145
def partition_tests(suite, count):
3146
"""Partition suite into count lists of tests."""
3148
tests = list(iter_suite_tests(suite))
3149
tests_per_process = int(math.ceil(float(len(tests)) / count))
3150
for block in range(count):
3151
low_test = block * tests_per_process
3152
high_test = low_test + tests_per_process
3153
process_tests = tests[low_test:high_test]
3154
result.append(process_tests)
3158
def fork_for_tests(suite):
3159
"""Take suite and start up one runner per CPU by forking()
3161
:return: An iterable of TestCase-like objects which can each have
3162
run(result) called on them to feed tests to result.
3164
concurrency = osutils.local_concurrency()
3166
from subunit import TestProtocolClient, ProtocolTestCase
3167
from subunit.test_results import AutoTimingTestResultDecorator
3168
class TestInOtherProcess(ProtocolTestCase):
3169
# Should be in subunit, I think. RBC.
3170
def __init__(self, stream, pid):
3171
ProtocolTestCase.__init__(self, stream)
3174
def run(self, result):
3176
ProtocolTestCase.run(self, result)
3178
os.waitpid(self.pid, os.WNOHANG)
3180
test_blocks = partition_tests(suite, concurrency)
3181
for process_tests in test_blocks:
3182
process_suite = TestSuite()
3183
process_suite.addTests(process_tests)
3184
c2pread, c2pwrite = os.pipe()
3189
# Leave stderr and stdout open so we can see test noise
3190
# Close stdin so that the child goes away if it decides to
3191
# read from stdin (otherwise its a roulette to see what
3192
# child actually gets keystrokes for pdb etc).
3195
stream = os.fdopen(c2pwrite, 'wb', 1)
3196
subunit_result = AutoTimingTestResultDecorator(
3197
TestProtocolClient(stream))
3198
process_suite.run(subunit_result)
3203
stream = os.fdopen(c2pread, 'rb', 1)
3204
test = TestInOtherProcess(stream, pid)
3209
def reinvoke_for_tests(suite):
3210
"""Take suite and start up one runner per CPU using subprocess().
3212
:return: An iterable of TestCase-like objects which can each have
3213
run(result) called on them to feed tests to result.
3215
concurrency = osutils.local_concurrency()
3217
from subunit import ProtocolTestCase
3218
class TestInSubprocess(ProtocolTestCase):
3219
def __init__(self, process, name):
3220
ProtocolTestCase.__init__(self, process.stdout)
3221
self.process = process
3222
self.process.stdin.close()
3225
def run(self, result):
3227
ProtocolTestCase.run(self, result)
3230
os.unlink(self.name)
3231
# print "pid %d finished" % finished_process
3232
test_blocks = partition_tests(suite, concurrency)
3233
for process_tests in test_blocks:
3234
# ugly; currently reimplement rather than reuses TestCase methods.
3235
bzr_path = os.path.dirname(os.path.dirname(bzrlib.__file__))+'/bzr'
3236
if not os.path.isfile(bzr_path):
3237
# We are probably installed. Assume sys.argv is the right file
3238
bzr_path = sys.argv[0]
3239
bzr_path = [bzr_path]
3240
if sys.platform == "win32":
3241
# if we're on windows, we can't execute the bzr script directly
3242
bzr_path = [sys.executable] + bzr_path
3243
fd, test_list_file_name = tempfile.mkstemp()
3244
test_list_file = os.fdopen(fd, 'wb', 1)
3245
for test in process_tests:
3246
test_list_file.write(test.id() + '\n')
3247
test_list_file.close()
3249
argv = bzr_path + ['selftest', '--load-list', test_list_file_name,
3251
if '--no-plugins' in sys.argv:
3252
argv.append('--no-plugins')
3253
# stderr=STDOUT would be ideal, but until we prevent noise on
3254
# stderr it can interrupt the subunit protocol.
3255
process = Popen(argv, stdin=PIPE, stdout=PIPE, stderr=PIPE,
3257
test = TestInSubprocess(process, test_list_file_name)
3260
os.unlink(test_list_file_name)
3265
class ForwardingResult(unittest.TestResult):
3267
def __init__(self, target):
3268
unittest.TestResult.__init__(self)
3269
self.result = target
3271
def startTest(self, test):
3272
self.result.startTest(test)
3274
def stopTest(self, test):
3275
self.result.stopTest(test)
3277
def startTestRun(self):
3278
self.result.startTestRun()
3280
def stopTestRun(self):
3281
self.result.stopTestRun()
3283
def addSkip(self, test, reason):
3284
self.result.addSkip(test, reason)
3286
def addSuccess(self, test):
3287
self.result.addSuccess(test)
3289
def addError(self, test, err):
3290
self.result.addError(test, err)
3292
def addFailure(self, test, err):
3293
self.result.addFailure(test, err)
3294
ForwardingResult = testtools.ExtendedToOriginalDecorator
3297
class ProfileResult(ForwardingResult):
3298
"""Generate profiling data for all activity between start and success.
3300
The profile data is appended to the test's _benchcalls attribute and can
3301
be accessed by the forwarded-to TestResult.
3303
While it might be cleaner do accumulate this in stopTest, addSuccess is
3304
where our existing output support for lsprof is, and this class aims to
3305
fit in with that: while it could be moved it's not necessary to accomplish
3306
test profiling, nor would it be dramatically cleaner.
3309
def startTest(self, test):
3310
self.profiler = bzrlib.lsprof.BzrProfiler()
3311
self.profiler.start()
3312
ForwardingResult.startTest(self, test)
3314
def addSuccess(self, test):
3315
stats = self.profiler.stop()
3317
calls = test._benchcalls
3318
except AttributeError:
3319
test._benchcalls = []
3320
calls = test._benchcalls
3321
calls.append(((test.id(), "", ""), stats))
3322
ForwardingResult.addSuccess(self, test)
3324
def stopTest(self, test):
3325
ForwardingResult.stopTest(self, test)
3326
self.profiler = None
3329
# Controlled by "bzr selftest -E=..." option
3330
# Currently supported:
3331
# -Eallow_debug Will no longer clear debug.debug_flags() so it
3332
# preserves any flags supplied at the command line.
3333
# -Edisable_lock_checks Turns errors in mismatched locks into simple prints
3334
# rather than failing tests. And no longer raise
3335
# LockContention when fctnl locks are not being used
3336
# with proper exclusion rules.
3337
selftest_debug_flags = set()
1054
3340
def selftest(verbose=False, pattern=".*", stop_on_failure=True,
1056
3341
transport=None,
1057
test_suite_factory=None):
3342
test_suite_factory=None,
3345
matching_tests_first=None,
3348
exclude_pattern=None,
3354
suite_decorators=None,
1058
3358
"""Run the whole test suite under the enhanced runner"""
3359
# XXX: Very ugly way to do this...
3360
# Disable warning about old formats because we don't want it to disturb
3361
# any blackbox tests.
3362
from bzrlib import repository
3363
repository._deprecation_warning_done = True
1059
3365
global default_transport
1060
3366
if transport is None:
1061
3367
transport = default_transport
1062
3368
old_transport = default_transport
1063
3369
default_transport = transport
3370
global selftest_debug_flags
3371
old_debug_flags = selftest_debug_flags
3372
if debug_flags is not None:
3373
selftest_debug_flags = set(debug_flags)
3375
if load_list is None:
3378
keep_only = load_test_id_list(load_list)
3380
starting_with = [test_prefix_alias_registry.resolve_alias(start)
3381
for start in starting_with]
1065
3382
if test_suite_factory is None:
1066
suite = test_suite()
3383
# Reduce loading time by loading modules based on the starting_with
3385
suite = test_suite(keep_only, starting_with)
1068
3387
suite = test_suite_factory()
3389
# But always filter as requested.
3390
suite = filter_suite_by_id_startswith(suite, starting_with)
3391
result_decorators = []
3393
result_decorators.append(ProfileResult)
1069
3394
return run_suite(suite, 'testbzr', verbose=verbose, pattern=pattern,
1070
stop_on_failure=stop_on_failure, keep_output=keep_output,
1071
transport=transport)
3395
stop_on_failure=stop_on_failure,
3396
transport=transport,
3397
lsprof_timed=lsprof_timed,
3398
bench_history=bench_history,
3399
matching_tests_first=matching_tests_first,
3400
list_only=list_only,
3401
random_seed=random_seed,
3402
exclude_pattern=exclude_pattern,
3404
runner_class=runner_class,
3405
suite_decorators=suite_decorators,
3407
result_decorators=result_decorators,
1073
3410
default_transport = old_transport
3411
selftest_debug_flags = old_debug_flags
3414
def load_test_id_list(file_name):
3415
"""Load a test id list from a text file.
3417
The format is one test id by line. No special care is taken to impose
3418
strict rules, these test ids are used to filter the test suite so a test id
3419
that do not match an existing test will do no harm. This allows user to add
3420
comments, leave blank lines, etc.
3424
ftest = open(file_name, 'rt')
3426
if e.errno != errno.ENOENT:
3429
raise errors.NoSuchFile(file_name)
3431
for test_name in ftest.readlines():
3432
test_list.append(test_name.strip())
3437
def suite_matches_id_list(test_suite, id_list):
3438
"""Warns about tests not appearing or appearing more than once.
3440
:param test_suite: A TestSuite object.
3441
:param test_id_list: The list of test ids that should be found in
3444
:return: (absents, duplicates) absents is a list containing the test found
3445
in id_list but not in test_suite, duplicates is a list containing the
3446
test found multiple times in test_suite.
3448
When using a prefined test id list, it may occurs that some tests do not
3449
exist anymore or that some tests use the same id. This function warns the
3450
tester about potential problems in his workflow (test lists are volatile)
3451
or in the test suite itself (using the same id for several tests does not
3452
help to localize defects).
3454
# Build a dict counting id occurrences
3456
for test in iter_suite_tests(test_suite):
3458
tests[id] = tests.get(id, 0) + 1
3463
occurs = tests.get(id, 0)
3465
not_found.append(id)
3467
duplicates.append(id)
3469
return not_found, duplicates
3472
class TestIdList(object):
3473
"""Test id list to filter a test suite.
3475
Relying on the assumption that test ids are built as:
3476
<module>[.<class>.<method>][(<param>+)], <module> being in python dotted
3477
notation, this class offers methods to :
3478
- avoid building a test suite for modules not refered to in the test list,
3479
- keep only the tests listed from the module test suite.
3482
def __init__(self, test_id_list):
3483
# When a test suite needs to be filtered against us we compare test ids
3484
# for equality, so a simple dict offers a quick and simple solution.
3485
self.tests = dict().fromkeys(test_id_list, True)
3487
# While unittest.TestCase have ids like:
3488
# <module>.<class>.<method>[(<param+)],
3489
# doctest.DocTestCase can have ids like:
3492
# <module>.<function>
3493
# <module>.<class>.<method>
3495
# Since we can't predict a test class from its name only, we settle on
3496
# a simple constraint: a test id always begins with its module name.
3499
for test_id in test_id_list:
3500
parts = test_id.split('.')
3501
mod_name = parts.pop(0)
3502
modules[mod_name] = True
3504
mod_name += '.' + part
3505
modules[mod_name] = True
3506
self.modules = modules
3508
def refers_to(self, module_name):
3509
"""Is there tests for the module or one of its sub modules."""
3510
return self.modules.has_key(module_name)
3512
def includes(self, test_id):
3513
return self.tests.has_key(test_id)
3516
class TestPrefixAliasRegistry(registry.Registry):
3517
"""A registry for test prefix aliases.
3519
This helps implement shorcuts for the --starting-with selftest
3520
option. Overriding existing prefixes is not allowed but not fatal (a
3521
warning will be emitted).
3524
def register(self, key, obj, help=None, info=None,
3525
override_existing=False):
3526
"""See Registry.register.
3528
Trying to override an existing alias causes a warning to be emitted,
3529
not a fatal execption.
3532
super(TestPrefixAliasRegistry, self).register(
3533
key, obj, help=help, info=info, override_existing=False)
3535
actual = self.get(key)
3536
note('Test prefix alias %s is already used for %s, ignoring %s'
3537
% (key, actual, obj))
3539
def resolve_alias(self, id_start):
3540
"""Replace the alias by the prefix in the given string.
3542
Using an unknown prefix is an error to help catching typos.
3544
parts = id_start.split('.')
3546
parts[0] = self.get(parts[0])
3548
raise errors.BzrCommandError(
3549
'%s is not a known test prefix alias' % parts[0])
3550
return '.'.join(parts)
3553
test_prefix_alias_registry = TestPrefixAliasRegistry()
3554
"""Registry of test prefix aliases."""
3557
# This alias allows to detect typos ('bzrlin.') by making all valid test ids
3558
# appear prefixed ('bzrlib.' is "replaced" by 'bzrlib.').
3559
test_prefix_alias_registry.register('bzrlib', 'bzrlib')
3561
# Obvious highest levels prefixes, feel free to add your own via a plugin
3562
test_prefix_alias_registry.register('bd', 'bzrlib.doc')
3563
test_prefix_alias_registry.register('bu', 'bzrlib.utils')
3564
test_prefix_alias_registry.register('bt', 'bzrlib.tests')
3565
test_prefix_alias_registry.register('bb', 'bzrlib.tests.blackbox')
3566
test_prefix_alias_registry.register('bp', 'bzrlib.plugins')
3569
def _test_suite_testmod_names():
3570
"""Return the standard list of test module names to test."""
3573
'bzrlib.tests.blackbox',
3574
'bzrlib.tests.commands',
3575
'bzrlib.tests.per_branch',
3576
'bzrlib.tests.per_bzrdir',
3577
'bzrlib.tests.per_foreign_vcs',
3578
'bzrlib.tests.per_interrepository',
3579
'bzrlib.tests.per_intertree',
3580
'bzrlib.tests.per_inventory',
3581
'bzrlib.tests.per_interbranch',
3582
'bzrlib.tests.per_lock',
3583
'bzrlib.tests.per_merger',
3584
'bzrlib.tests.per_transport',
3585
'bzrlib.tests.per_tree',
3586
'bzrlib.tests.per_pack_repository',
3587
'bzrlib.tests.per_repository',
3588
'bzrlib.tests.per_repository_chk',
3589
'bzrlib.tests.per_repository_reference',
3590
'bzrlib.tests.per_uifactory',
3591
'bzrlib.tests.per_versionedfile',
3592
'bzrlib.tests.per_workingtree',
3593
'bzrlib.tests.test__annotator',
3594
'bzrlib.tests.test__bencode',
3595
'bzrlib.tests.test__chk_map',
3596
'bzrlib.tests.test__dirstate_helpers',
3597
'bzrlib.tests.test__groupcompress',
3598
'bzrlib.tests.test__known_graph',
3599
'bzrlib.tests.test__rio',
3600
'bzrlib.tests.test__simple_set',
3601
'bzrlib.tests.test__static_tuple',
3602
'bzrlib.tests.test__walkdirs_win32',
3603
'bzrlib.tests.test_ancestry',
3604
'bzrlib.tests.test_annotate',
3605
'bzrlib.tests.test_api',
3606
'bzrlib.tests.test_atomicfile',
3607
'bzrlib.tests.test_bad_files',
3608
'bzrlib.tests.test_bisect_multi',
3609
'bzrlib.tests.test_branch',
3610
'bzrlib.tests.test_branchbuilder',
3611
'bzrlib.tests.test_btree_index',
3612
'bzrlib.tests.test_bugtracker',
3613
'bzrlib.tests.test_bundle',
3614
'bzrlib.tests.test_bzrdir',
3615
'bzrlib.tests.test__chunks_to_lines',
3616
'bzrlib.tests.test_cache_utf8',
3617
'bzrlib.tests.test_chk_map',
3618
'bzrlib.tests.test_chk_serializer',
3619
'bzrlib.tests.test_chunk_writer',
3620
'bzrlib.tests.test_clean_tree',
3621
'bzrlib.tests.test_cleanup',
3622
'bzrlib.tests.test_commands',
3623
'bzrlib.tests.test_commit',
3624
'bzrlib.tests.test_commit_merge',
3625
'bzrlib.tests.test_config',
3626
'bzrlib.tests.test_conflicts',
3627
'bzrlib.tests.test_counted_lock',
3628
'bzrlib.tests.test_crash',
3629
'bzrlib.tests.test_decorators',
3630
'bzrlib.tests.test_delta',
3631
'bzrlib.tests.test_debug',
3632
'bzrlib.tests.test_deprecated_graph',
3633
'bzrlib.tests.test_diff',
3634
'bzrlib.tests.test_directory_service',
3635
'bzrlib.tests.test_dirstate',
3636
'bzrlib.tests.test_email_message',
3637
'bzrlib.tests.test_eol_filters',
3638
'bzrlib.tests.test_errors',
3639
'bzrlib.tests.test_export',
3640
'bzrlib.tests.test_extract',
3641
'bzrlib.tests.test_fetch',
3642
'bzrlib.tests.test_fifo_cache',
3643
'bzrlib.tests.test_filters',
3644
'bzrlib.tests.test_ftp_transport',
3645
'bzrlib.tests.test_foreign',
3646
'bzrlib.tests.test_generate_docs',
3647
'bzrlib.tests.test_generate_ids',
3648
'bzrlib.tests.test_globbing',
3649
'bzrlib.tests.test_gpg',
3650
'bzrlib.tests.test_graph',
3651
'bzrlib.tests.test_groupcompress',
3652
'bzrlib.tests.test_hashcache',
3653
'bzrlib.tests.test_help',
3654
'bzrlib.tests.test_hooks',
3655
'bzrlib.tests.test_http',
3656
'bzrlib.tests.test_http_response',
3657
'bzrlib.tests.test_https_ca_bundle',
3658
'bzrlib.tests.test_identitymap',
3659
'bzrlib.tests.test_ignores',
3660
'bzrlib.tests.test_index',
3661
'bzrlib.tests.test_info',
3662
'bzrlib.tests.test_inv',
3663
'bzrlib.tests.test_inventory_delta',
3664
'bzrlib.tests.test_knit',
3665
'bzrlib.tests.test_lazy_import',
3666
'bzrlib.tests.test_lazy_regex',
3667
'bzrlib.tests.test_lock',
3668
'bzrlib.tests.test_lockable_files',
3669
'bzrlib.tests.test_lockdir',
3670
'bzrlib.tests.test_log',
3671
'bzrlib.tests.test_lru_cache',
3672
'bzrlib.tests.test_lsprof',
3673
'bzrlib.tests.test_mail_client',
3674
'bzrlib.tests.test_memorytree',
3675
'bzrlib.tests.test_merge',
3676
'bzrlib.tests.test_merge3',
3677
'bzrlib.tests.test_merge_core',
3678
'bzrlib.tests.test_merge_directive',
3679
'bzrlib.tests.test_missing',
3680
'bzrlib.tests.test_msgeditor',
3681
'bzrlib.tests.test_multiparent',
3682
'bzrlib.tests.test_mutabletree',
3683
'bzrlib.tests.test_nonascii',
3684
'bzrlib.tests.test_options',
3685
'bzrlib.tests.test_osutils',
3686
'bzrlib.tests.test_osutils_encodings',
3687
'bzrlib.tests.test_pack',
3688
'bzrlib.tests.test_patch',
3689
'bzrlib.tests.test_patches',
3690
'bzrlib.tests.test_permissions',
3691
'bzrlib.tests.test_plugins',
3692
'bzrlib.tests.test_progress',
3693
'bzrlib.tests.test_read_bundle',
3694
'bzrlib.tests.test_reconcile',
3695
'bzrlib.tests.test_reconfigure',
3696
'bzrlib.tests.test_registry',
3697
'bzrlib.tests.test_remote',
3698
'bzrlib.tests.test_rename_map',
3699
'bzrlib.tests.test_repository',
3700
'bzrlib.tests.test_revert',
3701
'bzrlib.tests.test_revision',
3702
'bzrlib.tests.test_revisionspec',
3703
'bzrlib.tests.test_revisiontree',
3704
'bzrlib.tests.test_rio',
3705
'bzrlib.tests.test_rules',
3706
'bzrlib.tests.test_sampler',
3707
'bzrlib.tests.test_script',
3708
'bzrlib.tests.test_selftest',
3709
'bzrlib.tests.test_serializer',
3710
'bzrlib.tests.test_setup',
3711
'bzrlib.tests.test_sftp_transport',
3712
'bzrlib.tests.test_shelf',
3713
'bzrlib.tests.test_shelf_ui',
3714
'bzrlib.tests.test_smart',
3715
'bzrlib.tests.test_smart_add',
3716
'bzrlib.tests.test_smart_request',
3717
'bzrlib.tests.test_smart_transport',
3718
'bzrlib.tests.test_smtp_connection',
3719
'bzrlib.tests.test_source',
3720
'bzrlib.tests.test_ssh_transport',
3721
'bzrlib.tests.test_status',
3722
'bzrlib.tests.test_store',
3723
'bzrlib.tests.test_strace',
3724
'bzrlib.tests.test_subsume',
3725
'bzrlib.tests.test_switch',
3726
'bzrlib.tests.test_symbol_versioning',
3727
'bzrlib.tests.test_tag',
3728
'bzrlib.tests.test_testament',
3729
'bzrlib.tests.test_textfile',
3730
'bzrlib.tests.test_textmerge',
3731
'bzrlib.tests.test_timestamp',
3732
'bzrlib.tests.test_trace',
3733
'bzrlib.tests.test_transactions',
3734
'bzrlib.tests.test_transform',
3735
'bzrlib.tests.test_transport',
3736
'bzrlib.tests.test_transport_log',
3737
'bzrlib.tests.test_tree',
3738
'bzrlib.tests.test_treebuilder',
3739
'bzrlib.tests.test_tsort',
3740
'bzrlib.tests.test_tuned_gzip',
3741
'bzrlib.tests.test_ui',
3742
'bzrlib.tests.test_uncommit',
3743
'bzrlib.tests.test_upgrade',
3744
'bzrlib.tests.test_upgrade_stacked',
3745
'bzrlib.tests.test_urlutils',
3746
'bzrlib.tests.test_version',
3747
'bzrlib.tests.test_version_info',
3748
'bzrlib.tests.test_weave',
3749
'bzrlib.tests.test_whitebox',
3750
'bzrlib.tests.test_win32utils',
3751
'bzrlib.tests.test_workingtree',
3752
'bzrlib.tests.test_workingtree_4',
3753
'bzrlib.tests.test_wsgi',
3754
'bzrlib.tests.test_xml',
3758
def _test_suite_modules_to_doctest():
3759
"""Return the list of modules to doctest."""
3762
'bzrlib.branchbuilder',
3763
'bzrlib.decorators',
3766
'bzrlib.iterablefile',
3770
'bzrlib.symbol_versioning',
3773
'bzrlib.version_info_formats.format_custom',
3777
def test_suite(keep_only=None, starting_with=None):
1077
3778
"""Build and return TestSuite for the whole of bzrlib.
3780
:param keep_only: A list of test ids limiting the suite returned.
3782
:param starting_with: An id limiting the suite returned to the tests
1079
3785
This function can be replaced if you need to change the default test
1080
3786
suite on a global basis, but it is not encouraged.
1082
from doctest import DocTestSuite
1084
global MODULES_TO_DOCTEST
1087
'bzrlib.tests.test_ancestry',
1088
'bzrlib.tests.test_api',
1089
'bzrlib.tests.test_bad_files',
1090
'bzrlib.tests.test_branch',
1091
'bzrlib.tests.test_bzrdir',
1092
'bzrlib.tests.test_command',
1093
'bzrlib.tests.test_commit',
1094
'bzrlib.tests.test_commit_merge',
1095
'bzrlib.tests.test_config',
1096
'bzrlib.tests.test_conflicts',
1097
'bzrlib.tests.test_decorators',
1098
'bzrlib.tests.test_diff',
1099
'bzrlib.tests.test_doc_generate',
1100
'bzrlib.tests.test_errors',
1101
'bzrlib.tests.test_escaped_store',
1102
'bzrlib.tests.test_fetch',
1103
'bzrlib.tests.test_gpg',
1104
'bzrlib.tests.test_graph',
1105
'bzrlib.tests.test_hashcache',
1106
'bzrlib.tests.test_http',
1107
'bzrlib.tests.test_identitymap',
1108
'bzrlib.tests.test_inv',
1109
'bzrlib.tests.test_knit',
1110
'bzrlib.tests.test_lockdir',
1111
'bzrlib.tests.test_lockable_files',
1112
'bzrlib.tests.test_log',
1113
'bzrlib.tests.test_merge',
1114
'bzrlib.tests.test_merge3',
1115
'bzrlib.tests.test_merge_core',
1116
'bzrlib.tests.test_missing',
1117
'bzrlib.tests.test_msgeditor',
1118
'bzrlib.tests.test_nonascii',
1119
'bzrlib.tests.test_options',
1120
'bzrlib.tests.test_osutils',
1121
'bzrlib.tests.test_patch',
1122
'bzrlib.tests.test_permissions',
1123
'bzrlib.tests.test_plugins',
1124
'bzrlib.tests.test_progress',
1125
'bzrlib.tests.test_reconcile',
1126
'bzrlib.tests.test_repository',
1127
'bzrlib.tests.test_revision',
1128
'bzrlib.tests.test_revisionnamespaces',
1129
'bzrlib.tests.test_revprops',
1130
'bzrlib.tests.test_rio',
1131
'bzrlib.tests.test_sampler',
1132
'bzrlib.tests.test_selftest',
1133
'bzrlib.tests.test_setup',
1134
'bzrlib.tests.test_sftp_transport',
1135
'bzrlib.tests.test_smart_add',
1136
'bzrlib.tests.test_source',
1137
'bzrlib.tests.test_status',
1138
'bzrlib.tests.test_store',
1139
'bzrlib.tests.test_symbol_versioning',
1140
'bzrlib.tests.test_testament',
1141
'bzrlib.tests.test_textfile',
1142
'bzrlib.tests.test_textmerge',
1143
'bzrlib.tests.test_trace',
1144
'bzrlib.tests.test_transactions',
1145
'bzrlib.tests.test_transform',
1146
'bzrlib.tests.test_transport',
1147
'bzrlib.tests.test_tsort',
1148
'bzrlib.tests.test_tuned_gzip',
1149
'bzrlib.tests.test_ui',
1150
'bzrlib.tests.test_upgrade',
1151
'bzrlib.tests.test_versionedfile',
1152
'bzrlib.tests.test_weave',
1153
'bzrlib.tests.test_whitebox',
1154
'bzrlib.tests.test_workingtree',
1155
'bzrlib.tests.test_xml',
1157
test_transport_implementations = [
1158
'bzrlib.tests.test_transport_implementations']
1161
3789
loader = TestUtil.TestLoader()
1162
from bzrlib.transport import TransportTestProviderAdapter
1163
adapter = TransportTestProviderAdapter()
1164
adapt_modules(test_transport_implementations, adapter, loader, suite)
1165
suite.addTest(loader.loadTestsFromModuleNames(testmod_names))
1166
for package in packages_to_test():
1167
suite.addTest(package.test_suite())
1168
for m in MODULES_TO_TEST:
1169
suite.addTest(loader.loadTestsFromModule(m))
1170
for m in (MODULES_TO_DOCTEST):
1171
suite.addTest(DocTestSuite(m))
1172
for name, plugin in bzrlib.plugin.all_plugins().items():
1173
if getattr(plugin, 'test_suite', None) is not None:
1174
suite.addTest(plugin.test_suite())
3791
if keep_only is not None:
3792
id_filter = TestIdList(keep_only)
3794
# We take precedence over keep_only because *at loading time* using
3795
# both options means we will load less tests for the same final result.
3796
def interesting_module(name):
3797
for start in starting_with:
3799
# Either the module name starts with the specified string
3800
name.startswith(start)
3801
# or it may contain tests starting with the specified string
3802
or start.startswith(name)
3806
loader = TestUtil.FilteredByModuleTestLoader(interesting_module)
3808
elif keep_only is not None:
3809
loader = TestUtil.FilteredByModuleTestLoader(id_filter.refers_to)
3810
def interesting_module(name):
3811
return id_filter.refers_to(name)
3814
loader = TestUtil.TestLoader()
3815
def interesting_module(name):
3816
# No filtering, all modules are interesting
3819
suite = loader.suiteClass()
3821
# modules building their suite with loadTestsFromModuleNames
3822
suite.addTest(loader.loadTestsFromModuleNames(_test_suite_testmod_names()))
3824
for mod in _test_suite_modules_to_doctest():
3825
if not interesting_module(mod):
3826
# No tests to keep here, move along
3829
# note that this really does mean "report only" -- doctest
3830
# still runs the rest of the examples
3831
doc_suite = doctest.DocTestSuite(mod,
3832
optionflags=doctest.REPORT_ONLY_FIRST_FAILURE)
3833
except ValueError, e:
3834
print '**failed to get doctest for: %s\n%s' % (mod, e)
3836
if len(doc_suite._tests) == 0:
3837
raise errors.BzrError("no doctests found in %s" % (mod,))
3838
suite.addTest(doc_suite)
3840
default_encoding = sys.getdefaultencoding()
3841
for name, plugin in bzrlib.plugin.plugins().items():
3842
if not interesting_module(plugin.module.__name__):
3844
plugin_suite = plugin.test_suite()
3845
# We used to catch ImportError here and turn it into just a warning,
3846
# but really if you don't have --no-plugins this should be a failure.
3847
# mbp 20080213 - see http://bugs.launchpad.net/bugs/189771
3848
if plugin_suite is None:
3849
plugin_suite = plugin.load_plugin_tests(loader)
3850
if plugin_suite is not None:
3851
suite.addTest(plugin_suite)
3852
if default_encoding != sys.getdefaultencoding():
3853
bzrlib.trace.warning(
3854
'Plugin "%s" tried to reset default encoding to: %s', name,
3855
sys.getdefaultencoding())
3857
sys.setdefaultencoding(default_encoding)
3859
if keep_only is not None:
3860
# Now that the referred modules have loaded their tests, keep only the
3862
suite = filter_suite_by_id_list(suite, id_filter)
3863
# Do some sanity checks on the id_list filtering
3864
not_found, duplicates = suite_matches_id_list(suite, keep_only)
3866
# The tester has used both keep_only and starting_with, so he is
3867
# already aware that some tests are excluded from the list, there
3868
# is no need to tell him which.
3871
# Some tests mentioned in the list are not in the test suite. The
3872
# list may be out of date, report to the tester.
3873
for id in not_found:
3874
bzrlib.trace.warning('"%s" not found in the test suite', id)
3875
for id in duplicates:
3876
bzrlib.trace.warning('"%s" is used as an id by several tests', id)
1178
def adapt_modules(mods_list, adapter, loader, suite):
1179
"""Adapt the modules in mods_list using adapter and add to suite."""
1180
for test in iter_suite_tests(loader.loadTestsFromModuleNames(mods_list)):
1181
suite.addTests(adapter.adapt(test))
3881
def multiply_scenarios(scenarios_left, scenarios_right):
3882
"""Multiply two sets of scenarios.
3884
:returns: the cartesian product of the two sets of scenarios, that is
3885
a scenario for every possible combination of a left scenario and a
3889
('%s,%s' % (left_name, right_name),
3890
dict(left_dict.items() + right_dict.items()))
3891
for left_name, left_dict in scenarios_left
3892
for right_name, right_dict in scenarios_right]
3895
def multiply_tests(tests, scenarios, result):
3896
"""Multiply tests_list by scenarios into result.
3898
This is the core workhorse for test parameterisation.
3900
Typically the load_tests() method for a per-implementation test suite will
3901
call multiply_tests and return the result.
3903
:param tests: The tests to parameterise.
3904
:param scenarios: The scenarios to apply: pairs of (scenario_name,
3905
scenario_param_dict).
3906
:param result: A TestSuite to add created tests to.
3908
This returns the passed in result TestSuite with the cross product of all
3909
the tests repeated once for each scenario. Each test is adapted by adding
3910
the scenario name at the end of its id(), and updating the test object's
3911
__dict__ with the scenario_param_dict.
3913
>>> import bzrlib.tests.test_sampler
3914
>>> r = multiply_tests(
3915
... bzrlib.tests.test_sampler.DemoTest('test_nothing'),
3916
... [('one', dict(param=1)),
3917
... ('two', dict(param=2))],
3919
>>> tests = list(iter_suite_tests(r))
3923
'bzrlib.tests.test_sampler.DemoTest.test_nothing(one)'
3929
for test in iter_suite_tests(tests):
3930
apply_scenarios(test, scenarios, result)
3934
def apply_scenarios(test, scenarios, result):
3935
"""Apply the scenarios in scenarios to test and add to result.
3937
:param test: The test to apply scenarios to.
3938
:param scenarios: An iterable of scenarios to apply to test.
3940
:seealso: apply_scenario
3942
for scenario in scenarios:
3943
result.addTest(apply_scenario(test, scenario))
3947
def apply_scenario(test, scenario):
3948
"""Copy test and apply scenario to it.
3950
:param test: A test to adapt.
3951
:param scenario: A tuple describing the scenarion.
3952
The first element of the tuple is the new test id.
3953
The second element is a dict containing attributes to set on the
3955
:return: The adapted test.
3957
new_id = "%s(%s)" % (test.id(), scenario[0])
3958
new_test = clone_test(test, new_id)
3959
for name, value in scenario[1].items():
3960
setattr(new_test, name, value)
3964
def clone_test(test, new_id):
3965
"""Clone a test giving it a new id.
3967
:param test: The test to clone.
3968
:param new_id: The id to assign to it.
3969
:return: The new test.
3971
new_test = copy(test)
3972
new_test.id = lambda: new_id
3976
def permute_tests_for_extension(standard_tests, loader, py_module_name,
3978
"""Helper for permutating tests against an extension module.
3980
This is meant to be used inside a modules 'load_tests()' function. It will
3981
create 2 scenarios, and cause all tests in the 'standard_tests' to be run
3982
against both implementations. Setting 'test.module' to the appropriate
3983
module. See bzrlib.tests.test__chk_map.load_tests as an example.
3985
:param standard_tests: A test suite to permute
3986
:param loader: A TestLoader
3987
:param py_module_name: The python path to a python module that can always
3988
be loaded, and will be considered the 'python' implementation. (eg
3989
'bzrlib._chk_map_py')
3990
:param ext_module_name: The python path to an extension module. If the
3991
module cannot be loaded, a single test will be added, which notes that
3992
the module is not available. If it can be loaded, all standard_tests
3993
will be run against that module.
3994
:return: (suite, feature) suite is a test-suite that has all the permuted
3995
tests. feature is the Feature object that can be used to determine if
3996
the module is available.
3999
py_module = __import__(py_module_name, {}, {}, ['NO_SUCH_ATTRIB'])
4001
('python', {'module': py_module}),
4003
suite = loader.suiteClass()
4004
feature = ModuleAvailableFeature(ext_module_name)
4005
if feature.available():
4006
scenarios.append(('C', {'module': feature.module}))
4008
# the compiled module isn't available, so we add a failing test
4009
class FailWithoutFeature(TestCase):
4010
def test_fail(self):
4011
self.requireFeature(feature)
4012
suite.addTest(loader.loadTestsFromTestCase(FailWithoutFeature))
4013
result = multiply_tests(standard_tests, scenarios, suite)
4014
return result, feature
4017
def _rmtree_temp_dir(dirname, test_id=None):
4018
# If LANG=C we probably have created some bogus paths
4019
# which rmtree(unicode) will fail to delete
4020
# so make sure we are using rmtree(str) to delete everything
4021
# except on win32, where rmtree(str) will fail
4022
# since it doesn't have the property of byte-stream paths
4023
# (they are either ascii or mbcs)
4024
if sys.platform == 'win32':
4025
# make sure we are using the unicode win32 api
4026
dirname = unicode(dirname)
4028
dirname = dirname.encode(sys.getfilesystemencoding())
4030
osutils.rmtree(dirname)
4032
# We don't want to fail here because some useful display will be lost
4033
# otherwise. Polluting the tmp dir is bad, but not giving all the
4034
# possible info to the test runner is even worse.
4036
ui.ui_factory.clear_term()
4037
sys.stderr.write('\nWhile running: %s\n' % (test_id,))
4038
sys.stderr.write('Unable to remove testing dir %s\n%s'
4039
% (os.path.basename(dirname), e))
4042
class Feature(object):
4043
"""An operating system Feature."""
4046
self._available = None
4048
def available(self):
4049
"""Is the feature available?
4051
:return: True if the feature is available.
4053
if self._available is None:
4054
self._available = self._probe()
4055
return self._available
4058
"""Implement this method in concrete features.
4060
:return: True if the feature is available.
4062
raise NotImplementedError
4065
if getattr(self, 'feature_name', None):
4066
return self.feature_name()
4067
return self.__class__.__name__
4070
class _SymlinkFeature(Feature):
4073
return osutils.has_symlinks()
4075
def feature_name(self):
4078
SymlinkFeature = _SymlinkFeature()
4081
class _HardlinkFeature(Feature):
4084
return osutils.has_hardlinks()
4086
def feature_name(self):
4089
HardlinkFeature = _HardlinkFeature()
4092
class _OsFifoFeature(Feature):
4095
return getattr(os, 'mkfifo', None)
4097
def feature_name(self):
4098
return 'filesystem fifos'
4100
OsFifoFeature = _OsFifoFeature()
4103
class _UnicodeFilenameFeature(Feature):
4104
"""Does the filesystem support Unicode filenames?"""
4108
# Check for character combinations unlikely to be covered by any
4109
# single non-unicode encoding. We use the characters
4110
# - greek small letter alpha (U+03B1) and
4111
# - braille pattern dots-123456 (U+283F).
4112
os.stat(u'\u03b1\u283f')
4113
except UnicodeEncodeError:
4115
except (IOError, OSError):
4116
# The filesystem allows the Unicode filename but the file doesn't
4120
# The filesystem allows the Unicode filename and the file exists,
4124
UnicodeFilenameFeature = _UnicodeFilenameFeature()
4127
class _CompatabilityThunkFeature(Feature):
4128
"""This feature is just a thunk to another feature.
4130
It issues a deprecation warning if it is accessed, to let you know that you
4131
should really use a different feature.
4134
def __init__(self, dep_version, module, name,
4135
replacement_name, replacement_module=None):
4136
super(_CompatabilityThunkFeature, self).__init__()
4137
self._module = module
4138
if replacement_module is None:
4139
replacement_module = module
4140
self._replacement_module = replacement_module
4142
self._replacement_name = replacement_name
4143
self._dep_version = dep_version
4144
self._feature = None
4147
if self._feature is None:
4148
depr_msg = self._dep_version % ('%s.%s'
4149
% (self._module, self._name))
4150
use_msg = ' Use %s.%s instead.' % (self._replacement_module,
4151
self._replacement_name)
4152
symbol_versioning.warn(depr_msg + use_msg, DeprecationWarning)
4153
# Import the new feature and use it as a replacement for the
4155
mod = __import__(self._replacement_module, {}, {},
4156
[self._replacement_name])
4157
self._feature = getattr(mod, self._replacement_name)
4161
return self._feature._probe()
4164
class ModuleAvailableFeature(Feature):
4165
"""This is a feature than describes a module we want to be available.
4167
Declare the name of the module in __init__(), and then after probing, the
4168
module will be available as 'self.module'.
4170
:ivar module: The module if it is available, else None.
4173
def __init__(self, module_name):
4174
super(ModuleAvailableFeature, self).__init__()
4175
self.module_name = module_name
4179
self._module = __import__(self.module_name, {}, {}, [''])
4186
if self.available(): # Make sure the probe has been done
4190
def feature_name(self):
4191
return self.module_name
4194
# This is kept here for compatibility, it is recommended to use
4195
# 'bzrlib.tests.feature.paramiko' instead
4196
ParamikoFeature = _CompatabilityThunkFeature(
4197
deprecated_in((2,1,0)),
4198
'bzrlib.tests.features', 'ParamikoFeature', 'paramiko')
4201
def probe_unicode_in_user_encoding():
4202
"""Try to encode several unicode strings to use in unicode-aware tests.
4203
Return first successfull match.
4205
:return: (unicode value, encoded plain string value) or (None, None)
4207
possible_vals = [u'm\xb5', u'\xe1', u'\u0410']
4208
for uni_val in possible_vals:
4210
str_val = uni_val.encode(osutils.get_user_encoding())
4211
except UnicodeEncodeError:
4212
# Try a different character
4215
return uni_val, str_val
4219
def probe_bad_non_ascii(encoding):
4220
"""Try to find [bad] character with code [128..255]
4221
that cannot be decoded to unicode in some encoding.
4222
Return None if all non-ascii characters is valid
4225
for i in xrange(128, 256):
4228
char.decode(encoding)
4229
except UnicodeDecodeError:
4234
class _HTTPSServerFeature(Feature):
4235
"""Some tests want an https Server, check if one is available.
4237
Right now, the only way this is available is under python2.6 which provides
4248
def feature_name(self):
4249
return 'HTTPSServer'
4252
HTTPSServerFeature = _HTTPSServerFeature()
4255
class _UnicodeFilename(Feature):
4256
"""Does the filesystem support Unicode filenames?"""
4261
except UnicodeEncodeError:
4263
except (IOError, OSError):
4264
# The filesystem allows the Unicode filename but the file doesn't
4268
# The filesystem allows the Unicode filename and the file exists,
4272
UnicodeFilename = _UnicodeFilename()
4275
class _UTF8Filesystem(Feature):
4276
"""Is the filesystem UTF-8?"""
4279
if osutils._fs_enc.upper() in ('UTF-8', 'UTF8'):
4283
UTF8Filesystem = _UTF8Filesystem()
4286
class _BreakinFeature(Feature):
4287
"""Does this platform support the breakin feature?"""
4290
from bzrlib import breakin
4291
if breakin.determine_signal() is None:
4293
if sys.platform == 'win32':
4294
# Windows doesn't have os.kill, and we catch the SIGBREAK signal.
4295
# We trigger SIGBREAK via a Console api so we need ctypes to
4296
# access the function
4303
def feature_name(self):
4304
return "SIGQUIT or SIGBREAK w/ctypes on win32"
4307
BreakinFeature = _BreakinFeature()
4310
class _CaseInsCasePresFilenameFeature(Feature):
4311
"""Is the file-system case insensitive, but case-preserving?"""
4314
fileno, name = tempfile.mkstemp(prefix='MixedCase')
4316
# first check truly case-preserving for created files, then check
4317
# case insensitive when opening existing files.
4318
name = osutils.normpath(name)
4319
base, rel = osutils.split(name)
4320
found_rel = osutils.canonical_relpath(base, name)
4321
return (found_rel == rel
4322
and os.path.isfile(name.upper())
4323
and os.path.isfile(name.lower()))
4328
def feature_name(self):
4329
return "case-insensitive case-preserving filesystem"
4331
CaseInsCasePresFilenameFeature = _CaseInsCasePresFilenameFeature()
4334
class _CaseInsensitiveFilesystemFeature(Feature):
4335
"""Check if underlying filesystem is case-insensitive but *not* case
4338
# Note that on Windows, Cygwin, MacOS etc, the file-systems are far
4339
# more likely to be case preserving, so this case is rare.
4342
if CaseInsCasePresFilenameFeature.available():
4345
if TestCaseWithMemoryTransport.TEST_ROOT is None:
4346
root = osutils.mkdtemp(prefix='testbzr-', suffix='.tmp')
4347
TestCaseWithMemoryTransport.TEST_ROOT = root
4349
root = TestCaseWithMemoryTransport.TEST_ROOT
4350
tdir = osutils.mkdtemp(prefix='case-sensitive-probe-', suffix='',
4352
name_a = osutils.pathjoin(tdir, 'a')
4353
name_A = osutils.pathjoin(tdir, 'A')
4355
result = osutils.isdir(name_A)
4356
_rmtree_temp_dir(tdir)
4359
def feature_name(self):
4360
return 'case-insensitive filesystem'
4362
CaseInsensitiveFilesystemFeature = _CaseInsensitiveFilesystemFeature()
4365
# Kept for compatibility, use bzrlib.tests.features.subunit instead
4366
SubUnitFeature = _CompatabilityThunkFeature(
4367
deprecated_in((2,1,0)),
4368
'bzrlib.tests.features', 'SubUnitFeature', 'subunit')
4369
# Only define SubUnitBzrRunner if subunit is available.
4371
from subunit import TestProtocolClient
4372
from subunit.test_results import AutoTimingTestResultDecorator
4373
class SubUnitBzrRunner(TextTestRunner):
4374
def run(self, test):
4375
result = AutoTimingTestResultDecorator(
4376
TestProtocolClient(self.stream))