/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to doc/developers/testing.txt

  • Committer: John Arbash Meinel
  • Date: 2009-12-23 04:19:34 UTC
  • mto: This revision was merged to the branch mainline in revision 4922.
  • Revision ID: john@arbash-meinel.com-20091223041934-zbixrn1cg015bqq4
Rename test_bencode to test__bencode, and use self.module

This makes it more similar to the rest of the extension permutation tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
====================
 
2
Bazaar Testing Guide
 
3
====================
 
4
 
 
5
 
 
6
The Importance of Testing
 
7
=========================
 
8
 
 
9
Reliability is a critical success factor for any Version Control System.
 
10
We want Bazaar to be highly reliable across multiple platforms while
 
11
evolving over time to meet the needs of its community.
 
12
 
 
13
In a nutshell, this is what we expect and encourage:
 
14
 
 
15
* New functionality should have test cases.  Preferably write the
 
16
  test before writing the code.
 
17
 
 
18
  In general, you can test at either the command-line level or the
 
19
  internal API level.  See `Writing tests`_ below for more detail.
 
20
 
 
21
* Try to practice Test-Driven Development: before fixing a bug, write a
 
22
  test case so that it does not regress.  Similarly for adding a new
 
23
  feature: write a test case for a small version of the new feature before
 
24
  starting on the code itself.  Check the test fails on the old code, then
 
25
  add the feature or fix and check it passes.
 
26
 
 
27
By doing these things, the Bazaar team gets increased confidence that
 
28
changes do what they claim to do, whether provided by the core team or
 
29
by community members. Equally importantly, we can be surer that changes
 
30
down the track do not break new features or bug fixes that you are
 
31
contributing today.
 
32
 
 
33
As of September 2009, Bazaar ships with a test suite containing over
 
34
23,000 tests and growing. We are proud of it and want to remain so. As
 
35
community members, we all benefit from it. Would you trust version control
 
36
on your project to a product *without* a test suite like Bazaar has?
 
37
 
 
38
 
 
39
Running the Test Suite
 
40
======================
 
41
 
 
42
Currently, bzr selftest is used to invoke tests.
 
43
You can provide a pattern argument to run a subset. For example,
 
44
to run just the blackbox tests, run::
 
45
 
 
46
  ./bzr selftest -v blackbox
 
47
 
 
48
To skip a particular test (or set of tests), use the --exclude option
 
49
(shorthand -x) like so::
 
50
 
 
51
  ./bzr selftest -v -x blackbox
 
52
 
 
53
To ensure that all tests are being run and succeeding, you can use the
 
54
--strict option which will fail if there are any missing features or known
 
55
failures, like so::
 
56
 
 
57
  ./bzr selftest --strict
 
58
 
 
59
To list tests without running them, use the --list-only option like so::
 
60
 
 
61
  ./bzr selftest --list-only
 
62
 
 
63
This option can be combined with other selftest options (like -x) and
 
64
filter patterns to understand their effect.
 
65
 
 
66
Once you understand how to create a list of tests, you can use the --load-list
 
67
option to run only a restricted set of tests that you kept in a file, one test
 
68
id by line. Keep in mind that this will never be sufficient to validate your
 
69
modifications, you still need to run the full test suite for that, but using it
 
70
can help in some cases (like running only the failed tests for some time)::
 
71
 
 
72
  ./bzr selftest -- load-list my_failing_tests
 
73
 
 
74
This option can also be combined with other selftest options, including
 
75
patterns. It has some drawbacks though, the list can become out of date pretty
 
76
quick when doing Test Driven Development.
 
77
 
 
78
To address this concern, there is another way to run a restricted set of tests:
 
79
the --starting-with option will run only the tests whose name starts with the
 
80
specified string. It will also avoid loading the other tests and as a
 
81
consequence starts running your tests quicker::
 
82
 
 
83
  ./bzr selftest --starting-with bzrlib.blackbox
 
84
 
 
85
This option can be combined with all the other selftest options including
 
86
--load-list. The later is rarely used but allows to run a subset of a list of
 
87
failing tests for example.
 
88
 
 
89
 
 
90
Test suite debug flags
 
91
----------------------
 
92
 
 
93
Similar to the global ``-Dfoo`` debug options, bzr selftest accepts
 
94
``-E=foo`` debug flags.  These flags are:
 
95
 
 
96
:allow_debug: do *not* clear the global debug flags when running a test.
 
97
  This can provide useful logging to help debug test failures when used
 
98
  with e.g. ``bzr -Dhpss selftest -E=allow_debug``
 
99
 
 
100
 
 
101
Writing Tests
 
102
=============
 
103
 
 
104
Where should I put a new test?
 
105
------------------------------
 
106
 
 
107
Bzrlib's tests are organised by the type of test.  Most of the tests in
 
108
bzr's test suite belong to one of these categories:
 
109
 
 
110
 - Unit tests
 
111
 - Blackbox (UI) tests
 
112
 - Per-implementation tests
 
113
 - Doctests
 
114
 
 
115
A quick description of these test types and where they belong in bzrlib's
 
116
source follows.  Not all tests fall neatly into one of these categories;
 
117
in those cases use your judgement.
 
118
 
 
119
 
 
120
Unit tests
 
121
~~~~~~~~~~
 
122
 
 
123
Unit tests make up the bulk of our test suite.  These are tests that are
 
124
focused on exercising a single, specific unit of the code as directly
 
125
as possible.  Each unit test is generally fairly short and runs very
 
126
quickly.
 
127
 
 
128
They are found in ``bzrlib/tests/test_*.py``.  So in general tests should
 
129
be placed in a file named test_FOO.py where FOO is the logical thing under
 
130
test.
 
131
 
 
132
For example, tests for merge3 in bzrlib belong in bzrlib/tests/test_merge3.py.
 
133
See bzrlib/tests/test_sampler.py for a template test script.
 
134
 
 
135
 
 
136
Blackbox (UI) tests
 
137
~~~~~~~~~~~~~~~~~~~
 
138
 
 
139
Tests can be written for the UI or for individual areas of the library.
 
140
Choose whichever is appropriate: if adding a new command, or a new command
 
141
option, then you should be writing a UI test.  If you are both adding UI
 
142
functionality and library functionality, you will want to write tests for
 
143
both the UI and the core behaviours.  We call UI tests 'blackbox' tests
 
144
and they belong in ``bzrlib/tests/blackbox/*.py``.
 
145
 
 
146
When writing blackbox tests please honour the following conventions:
 
147
 
 
148
 1. Place the tests for the command 'name' in
 
149
    bzrlib/tests/blackbox/test_name.py. This makes it easy for developers
 
150
    to locate the test script for a faulty command.
 
151
 
 
152
 2. Use the 'self.run_bzr("name")' utility function to invoke the command
 
153
    rather than running bzr in a subprocess or invoking the
 
154
    cmd_object.run() method directly. This is a lot faster than
 
155
    subprocesses and generates the same logging output as running it in a
 
156
    subprocess (which invoking the method directly does not).
 
157
 
 
158
 3. Only test the one command in a single test script. Use the bzrlib
 
159
    library when setting up tests and when evaluating the side-effects of
 
160
    the command. We do this so that the library api has continual pressure
 
161
    on it to be as functional as the command line in a simple manner, and
 
162
    to isolate knock-on effects throughout the blackbox test suite when a
 
163
    command changes its name or signature. Ideally only the tests for a
 
164
    given command are affected when a given command is changed.
 
165
 
 
166
 4. If you have a test which does actually require running bzr in a
 
167
    subprocess you can use ``run_bzr_subprocess``. By default the spawned
 
168
    process will not load plugins unless ``--allow-plugins`` is supplied.
 
169
 
 
170
 
 
171
Per-implementation tests
 
172
~~~~~~~~~~~~~~~~~~~~~~~~
 
173
 
 
174
Per-implementation tests are tests that are defined once and then run
 
175
against multiple implementations of an interface.  For example,
 
176
``per_transport.py`` defines tests that all Transport implementations
 
177
(local filesystem, HTTP, and so on) must pass. They are found in
 
178
``bzrlib/tests/per_*/*.py``, and ``bzrlib/tests/per_*.py``.
 
179
 
 
180
These are really a sub-category of unit tests, but an important one.
 
181
 
 
182
Along the same lines are tests for extension modules. We generally have
 
183
both a pure-python and a compiled implementation for each module. As such,
 
184
we want to run the same tests against both implementations. These can
 
185
generally be found in ``bzrlib/tests/*__*.py`` since extension modules are
 
186
usually prefixed with an underscore. Since there are only two
 
187
implementations, we have a helper function
 
188
``bzrlib.tests.permute_for_extension``, which can simplify the
 
189
``load_tests`` implementation.
 
190
 
 
191
 
 
192
Doctests
 
193
~~~~~~~~
 
194
 
 
195
We make selective use of doctests__.  In general they should provide
 
196
*examples* within the API documentation which can incidentally be tested.  We
 
197
don't try to test every important case using doctests |--| regular Python
 
198
tests are generally a better solution.  That is, we just use doctests to
 
199
make our documentation testable, rather than as a way to make tests.
 
200
 
 
201
Most of these are in ``bzrlib/doc/api``.  More additions are welcome.
 
202
 
 
203
  __ http://docs.python.org/lib/module-doctest.html
 
204
 
 
205
 
 
206
Shell-like tests
 
207
~~~~~~~~~~~~~~~~
 
208
 
 
209
``bzrlib/tests/script.py`` allows users to write tests in a syntax very close to a shell session,
 
210
using a restricted and limited set of commands that should be enough to mimic
 
211
most of the behaviours.
 
212
 
 
213
A script is a set of commands, each command is composed of:
 
214
 
 
215
 * one mandatory command line,
 
216
 * one optional set of input lines to feed the command,
 
217
 * one optional set of output expected lines,
 
218
 * one optional set of error expected lines.
 
219
 
 
220
Input, output and error lines can be specified in any order.
 
221
 
 
222
Except for the expected output, all lines start with a special
 
223
string (based on their origin when used under a Unix shell):
 
224
 
 
225
 * '$ ' for the command,
 
226
 * '<' for input,
 
227
 * nothing for output,
 
228
 * '2>' for errors,
 
229
 
 
230
Comments can be added anywhere, they start with '#' and end with
 
231
the line.
 
232
 
 
233
The execution stops as soon as an expected output or an expected error is not
 
234
matched.
 
235
 
 
236
When no output is specified, any ouput from the command is accepted
 
237
and execution continue.
 
238
 
 
239
If an error occurs and no expected error is specified, the execution stops.
 
240
 
 
241
An error is defined by a returned status different from zero, not by the
 
242
presence of text on the error stream.
 
243
 
 
244
The matching is done on a full string comparison basis unless '...' is used, in
 
245
which case expected output/errors can be less precise.
 
246
 
 
247
Examples:
 
248
 
 
249
The following will succeeds only if 'bzr add' outputs 'adding file'::
 
250
 
 
251
  $ bzr add file
 
252
  >adding file
 
253
 
 
254
If you want the command to succeed for any output, just use::
 
255
 
 
256
  $ bzr add file
 
257
 
 
258
The following will stop with an error::
 
259
 
 
260
  $ bzr not-a-command
 
261
 
 
262
If you want it to succeed, use::
 
263
 
 
264
  $ bzr not-a-command
 
265
  2> bzr: ERROR: unknown command "not-a-command"
 
266
 
 
267
You can use ellipsis (...) to replace any piece of text you don't want to be
 
268
matched exactly::
 
269
 
 
270
  $ bzr branch not-a-branch
 
271
  2>bzr: ERROR: Not a branch...not-a-branch/".
 
272
 
 
273
This can be used to ignore entire lines too::
 
274
 
 
275
  $ cat
 
276
  <first line
 
277
  <second line
 
278
  <third line
 
279
  # And here we explain that surprising fourth line
 
280
  <fourth line
 
281
  <last line
 
282
  >first line
 
283
  >...
 
284
  >last line
 
285
 
 
286
You can check the content of a file with cat::
 
287
 
 
288
  $ cat <file
 
289
  >expected content
 
290
 
 
291
You can also check the existence of a file with cat, the following will fail if
 
292
the file doesn't exist::
 
293
 
 
294
  $ cat file
 
295
 
 
296
 
 
297
 
 
298
.. Effort tests
 
299
.. ~~~~~~~~~~~~
 
300
 
 
301
 
 
302
 
 
303
Skipping tests
 
304
--------------
 
305
 
 
306
In our enhancements to unittest we allow for some addition results beyond
 
307
just success or failure.
 
308
 
 
309
If a test can't be run, it can say that it's skipped by raising a special
 
310
exception.  This is typically used in parameterized tests |--| for example
 
311
if a transport doesn't support setting permissions, we'll skip the tests
 
312
that relating to that.  ::
 
313
 
 
314
    try:
 
315
        return self.branch_format.initialize(repo.bzrdir)
 
316
    except errors.UninitializableFormat:
 
317
        raise tests.TestSkipped('Uninitializable branch format')
 
318
 
 
319
Raising TestSkipped is a good idea when you want to make it clear that the
 
320
test was not run, rather than just returning which makes it look as if it
 
321
was run and passed.
 
322
 
 
323
Several different cases are distinguished:
 
324
 
 
325
TestSkipped
 
326
        Generic skip; the only type that was present up to bzr 0.18.
 
327
 
 
328
TestNotApplicable
 
329
        The test doesn't apply to the parameters with which it was run.
 
330
        This is typically used when the test is being applied to all
 
331
        implementations of an interface, but some aspects of the interface
 
332
        are optional and not present in particular concrete
 
333
        implementations.  (Some tests that should raise this currently
 
334
        either silently return or raise TestSkipped.)  Another option is
 
335
        to use more precise parameterization to avoid generating the test
 
336
        at all.
 
337
 
 
338
UnavailableFeature
 
339
        The test can't be run because a dependency (typically a Python
 
340
        library) is not available in the test environment.  These
 
341
        are in general things that the person running the test could fix
 
342
        by installing the library.  It's OK if some of these occur when
 
343
        an end user runs the tests or if we're specifically testing in a
 
344
        limited environment, but a full test should never see them.
 
345
 
 
346
        See `Test feature dependencies`_ below.
 
347
 
 
348
KnownFailure
 
349
        The test exists but is known to fail, for example this might be
 
350
        appropriate to raise if you've committed a test for a bug but not
 
351
        the fix for it, or if something works on Unix but not on Windows.
 
352
 
 
353
        Raising this allows you to distinguish these failures from the
 
354
        ones that are not expected to fail.  If the test would fail
 
355
        because of something we don't expect or intend to fix,
 
356
        KnownFailure is not appropriate, and TestNotApplicable might be
 
357
        better.
 
358
 
 
359
        KnownFailure should be used with care as we don't want a
 
360
        proliferation of quietly broken tests.
 
361
 
 
362
ModuleAvailableFeature
 
363
        A helper for handling running tests based on whether a python
 
364
        module is available. This can handle 3rd-party dependencies (is
 
365
        ``paramiko`` available?) as well as stdlib (``termios``) or
 
366
        extension modules (``bzrlib._groupcompress_pyx``). You create a
 
367
        new feature instance with::
 
368
 
 
369
            MyModuleFeature = ModuleAvailableFeature('bzrlib.something')
 
370
 
 
371
            ...
 
372
            def test_something(self):
 
373
                self.requireFeature(MyModuleFeature)
 
374
                something = MyModuleFeature.module
 
375
 
 
376
 
 
377
We plan to support three modes for running the test suite to control the
 
378
interpretation of these results.  Strict mode is for use in situations
 
379
like merges to the mainline and releases where we want to make sure that
 
380
everything that can be tested has been tested.  Lax mode is for use by
 
381
developers who want to temporarily tolerate some known failures.  The
 
382
default behaviour is obtained by ``bzr selftest`` with no options, and
 
383
also (if possible) by running under another unittest harness.
 
384
 
 
385
======================= ======= ======= ========
 
386
result                  strict  default lax
 
387
======================= ======= ======= ========
 
388
TestSkipped             pass    pass    pass
 
389
TestNotApplicable       pass    pass    pass
 
390
UnavailableFeature      fail    pass    pass
 
391
KnownFailure            fail    pass    pass
 
392
======================= ======= ======= ========
 
393
 
 
394
 
 
395
Test feature dependencies
 
396
-------------------------
 
397
 
 
398
Writing tests that require a feature
 
399
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
400
 
 
401
Rather than manually checking the environment in each test, a test class
 
402
can declare its dependence on some test features.  The feature objects are
 
403
checked only once for each run of the whole test suite.
 
404
 
 
405
(For historical reasons, as of May 2007 many cases that should depend on
 
406
features currently raise TestSkipped.)
 
407
 
 
408
For example::
 
409
 
 
410
    class TestStrace(TestCaseWithTransport):
 
411
 
 
412
        _test_needs_features = [StraceFeature]
 
413
 
 
414
This means all tests in this class need the feature.  If the feature is
 
415
not available the test will be skipped using UnavailableFeature.
 
416
 
 
417
Individual tests can also require a feature using the ``requireFeature``
 
418
method::
 
419
 
 
420
    self.requireFeature(StraceFeature)
 
421
 
 
422
Features already defined in bzrlib.tests include:
 
423
 
 
424
 - SymlinkFeature,
 
425
 - HardlinkFeature,
 
426
 - OsFifoFeature,
 
427
 - UnicodeFilenameFeature,
 
428
 - FTPServerFeature, and
 
429
 - CaseInsensitiveFilesystemFeature.
 
430
 
 
431
 
 
432
Defining a new feature that tests can require
 
433
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
434
 
 
435
New features for use with ``_test_needs_features`` or ``requireFeature``
 
436
are defined by subclassing ``bzrlib.tests.Feature`` and overriding the
 
437
``_probe`` and ``feature_name`` methods.  For example::
 
438
 
 
439
    class _SymlinkFeature(Feature):
 
440
 
 
441
        def _probe(self):
 
442
            return osutils.has_symlinks()
 
443
 
 
444
        def feature_name(self):
 
445
            return 'symlinks'
 
446
 
 
447
    SymlinkFeature = _SymlinkFeature()
 
448
 
 
449
 
 
450
Testing exceptions and errors
 
451
-----------------------------
 
452
 
 
453
It's important to test handling of errors and exceptions.  Because this
 
454
code is often not hit in ad-hoc testing it can often have hidden bugs --
 
455
it's particularly common to get NameError because the exception code
 
456
references a variable that has since been renamed.
 
457
 
 
458
.. TODO: Something about how to provoke errors in the right way?
 
459
 
 
460
In general we want to test errors at two levels:
 
461
 
 
462
1. A test in ``test_errors.py`` checking that when the exception object is
 
463
   constructed with known parameters it produces an expected string form.
 
464
   This guards against mistakes in writing the format string, or in the
 
465
   ``str`` representations of its parameters.  There should be one for
 
466
   each exception class.
 
467
 
 
468
2. Tests that when an api is called in a particular situation, it raises
 
469
   an error of the expected class.  You should typically use
 
470
   ``assertRaises``, which in the Bazaar test suite returns the exception
 
471
   object to allow you to examine its parameters.
 
472
 
 
473
In some cases blackbox tests will also want to check error reporting.  But
 
474
it can be difficult to provoke every error through the commandline
 
475
interface, so those tests are only done as needed |--| eg in response to a
 
476
particular bug or if the error is reported in an unusual way(?)  Blackbox
 
477
tests should mostly be testing how the command-line interface works, so
 
478
should only test errors if there is something particular to the cli in how
 
479
they're displayed or handled.
 
480
 
 
481
 
 
482
Testing warnings
 
483
----------------
 
484
 
 
485
The Python ``warnings`` module is used to indicate a non-fatal code
 
486
problem.  Code that's expected to raise a warning can be tested through
 
487
callCatchWarnings.
 
488
 
 
489
The test suite can be run with ``-Werror`` to check no unexpected errors
 
490
occur.
 
491
 
 
492
However, warnings should be used with discretion.  It's not an appropriate
 
493
way to give messages to the user, because the warning is normally shown
 
494
only once per source line that causes the problem.  You should also think
 
495
about whether the warning is serious enought that it should be visible to
 
496
users who may not be able to fix it.
 
497
 
 
498
 
 
499
Interface implementation testing and test scenarios
 
500
---------------------------------------------------
 
501
 
 
502
There are several cases in Bazaar of multiple implementations of a common
 
503
conceptual interface.  ("Conceptual" because it's not necessary for all
 
504
the implementations to share a base class, though they often do.)
 
505
Examples include transports and the working tree, branch and repository
 
506
classes.
 
507
 
 
508
In these cases we want to make sure that every implementation correctly
 
509
fulfils the interface requirements.  For example, every Transport should
 
510
support the ``has()`` and ``get()`` and ``clone()`` methods.  We have a
 
511
sub-suite of tests in ``test_transport_implementations``.  (Most
 
512
per-implementation tests are in submodules of ``bzrlib.tests``, but not
 
513
the transport tests at the moment.)
 
514
 
 
515
These tests are repeated for each registered Transport, by generating a
 
516
new TestCase instance for the cross product of test methods and transport
 
517
implementations.  As each test runs, it has ``transport_class`` and
 
518
``transport_server`` set to the class it should test.  Most tests don't
 
519
access these directly, but rather use ``self.get_transport`` which returns
 
520
a transport of the appropriate type.
 
521
 
 
522
The goal is to run per-implementation only the tests that relate to that
 
523
particular interface.  Sometimes we discover a bug elsewhere that happens
 
524
with only one particular transport.  Once it's isolated, we can consider
 
525
whether a test should be added for that particular implementation,
 
526
or for all implementations of the interface.
 
527
 
 
528
The multiplication of tests for different implementations is normally
 
529
accomplished by overriding the ``load_tests`` function used to load tests
 
530
from a module.  This function typically loads all the tests, then applies
 
531
a TestProviderAdapter to them, which generates a longer suite containing
 
532
all the test variations.
 
533
 
 
534
See also `Per-implementation tests`_ (above).
 
535
 
 
536
 
 
537
Test scenarios
 
538
--------------
 
539
 
 
540
Some utilities are provided for generating variations of tests.  This can
 
541
be used for per-implementation tests, or other cases where the same test
 
542
code needs to run several times on different scenarios.
 
543
 
 
544
The general approach is to define a class that provides test methods,
 
545
which depend on attributes of the test object being pre-set with the
 
546
values to which the test should be applied.  The test suite should then
 
547
also provide a list of scenarios in which to run the tests.
 
548
 
 
549
Typically ``multiply_tests_from_modules`` should be called from the test
 
550
module's ``load_tests`` function.
 
551
 
 
552
 
 
553
Test support
 
554
------------
 
555
 
 
556
We have a rich collection of tools to support writing tests. Please use
 
557
them in preference to ad-hoc solutions as they provide portability and
 
558
performance benefits.
 
559
 
 
560
 
 
561
TestCase and its subclasses
 
562
~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
563
 
 
564
The ``bzrlib.tests`` module defines many TestCase classes to help you
 
565
write your tests.
 
566
 
 
567
TestCase
 
568
    A base TestCase that extends the Python standard library's
 
569
    TestCase in several ways.  It adds more assertion methods (e.g.
 
570
    ``assertContainsRe``), ``addCleanup``, and other features (see its API
 
571
    docs for details).  It also has a ``setUp`` that makes sure that
 
572
    global state like registered hooks and loggers won't interfere with
 
573
    your test.  All tests should use this base class (whether directly or
 
574
    via a subclass).
 
575
 
 
576
TestCaseWithMemoryTransport
 
577
    Extends TestCase and adds methods like ``get_transport``,
 
578
    ``make_branch`` and ``make_branch_builder``.  The files created are
 
579
    stored in a MemoryTransport that is discarded at the end of the test.
 
580
    This class is good for tests that need to make branches or use
 
581
    transports, but that don't require storing things on disk.  All tests
 
582
    that create bzrdirs should use this base class (either directly or via
 
583
    a subclass) as it ensures that the test won't accidentally operate on
 
584
    real branches in your filesystem.
 
585
 
 
586
TestCaseInTempDir
 
587
    Extends TestCaseWithMemoryTransport.  For tests that really do need
 
588
    files to be stored on disk, e.g. because a subprocess uses a file, or
 
589
    for testing functionality that accesses the filesystem directly rather
 
590
    than via the Transport layer (such as dirstate).
 
591
 
 
592
TestCaseWithTransport
 
593
    Extends TestCaseInTempDir.  Provides ``get_url`` and
 
594
    ``get_readonly_url`` facilities.  Subclasses can control the
 
595
    transports used by setting ``vfs_transport_factory``,
 
596
    ``transport_server`` and/or ``transport_readonly_server``.
 
597
 
 
598
 
 
599
See the API docs for more details.
 
600
 
 
601
 
 
602
BranchBuilder
 
603
~~~~~~~~~~~~~
 
604
 
 
605
When writing a test for a feature, it is often necessary to set up a
 
606
branch with a certain history.  The ``BranchBuilder`` interface allows the
 
607
creation of test branches in a quick and easy manner.  Here's a sample
 
608
session::
 
609
 
 
610
  builder = self.make_branch_builder('relpath')
 
611
  builder.build_commit()
 
612
  builder.build_commit()
 
613
  builder.build_commit()
 
614
  branch = builder.get_branch()
 
615
 
 
616
``make_branch_builder`` is a method of ``TestCaseWithMemoryTransport``.
 
617
 
 
618
Note that many current tests create test branches by inheriting from
 
619
``TestCaseWithTransport`` and using the ``make_branch_and_tree`` helper to
 
620
give them a ``WorkingTree`` that they can commit to. However, using the
 
621
newer ``make_branch_builder`` helper is preferred, because it can build
 
622
the changes in memory, rather than on disk. Tests that are explictly
 
623
testing how we work with disk objects should, of course, use a real
 
624
``WorkingTree``.
 
625
 
 
626
Please see bzrlib.branchbuilder for more details.
 
627
 
 
628
If you're going to examine the commit timestamps e.g. in a test for log
 
629
output, you should set the timestamp on the tree, rather than using fuzzy
 
630
matches in the test.
 
631
 
 
632
 
 
633
TreeBuilder
 
634
~~~~~~~~~~~
 
635
 
 
636
The ``TreeBuilder`` interface allows the construction of arbitrary trees
 
637
with a declarative interface. A sample session might look like::
 
638
 
 
639
  tree = self.make_branch_and_tree('path')
 
640
  builder = TreeBuilder()
 
641
  builder.start_tree(tree)
 
642
  builder.build(['foo', "bar/", "bar/file"])
 
643
  tree.commit('commit the tree')
 
644
  builder.finish_tree()
 
645
 
 
646
Usually a test will create a tree using ``make_branch_and_memory_tree`` (a
 
647
method of ``TestCaseWithMemoryTransport``) or ``make_branch_and_tree`` (a
 
648
method of ``TestCaseWithTransport``).
 
649
 
 
650
Please see bzrlib.treebuilder for more details.
 
651
 
 
652
 
 
653
.. |--| unicode:: U+2014
 
654
 
 
655
..
 
656
   vim: ft=rst tw=74 ai