/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: Robert Collins
  • Date: 2010-05-06 11:08:10 UTC
  • mto: This revision was merged to the branch mainline in revision 5223.
  • Revision ID: robertc@robertcollins.net-20100506110810-h3j07fh5gmw54s25
Cleaner matcher matching revised unlocking protocol.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
====================
2
 
Breezy Testing Guide
 
2
Bazaar Testing Guide
3
3
====================
4
4
 
5
5
 
6
6
The Importance of Testing
7
7
=========================
8
8
 
9
 
Reliability is a critical success factor for any version control system.
10
 
We want Breezy to be highly reliable across multiple platforms while
 
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
11
evolving over time to meet the needs of its community.
12
12
 
13
13
In a nutshell, this is what we expect and encourage:
24
24
  starting on the code itself.  Check the test fails on the old code, then
25
25
  add the feature or fix and check it passes.
26
26
 
27
 
By doing these things, the Breezy team gets increased confidence that
 
27
By doing these things, the Bazaar team gets increased confidence that
28
28
changes do what they claim to do, whether provided by the core team or
29
29
by community members. Equally importantly, we can be surer that changes
30
30
down the track do not break new features or bug fixes that you are
31
31
contributing today.
32
32
 
33
 
As of September 2009, Breezy ships with a test suite containing over
 
33
As of September 2009, Bazaar ships with a test suite containing over
34
34
23,000 tests and growing. We are proud of it and want to remain so. As
35
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 Breezy has?
 
36
on your project to a product *without* a test suite like Bazaar has?
37
37
 
38
38
 
39
39
Running the Test Suite
40
40
======================
41
41
 
42
 
As of Breezy 2.1, you must have the testtools_ library installed to run
43
 
the brz test suite.
 
42
As of Bazaar 2.1, you must have the testtools_ library installed to run
 
43
the bzr test suite.
44
44
 
45
45
.. _testtools: https://launchpad.net/testtools/
46
46
 
47
 
To test all of Breezy, just run::
48
 
 
49
 
  brz selftest 
50
 
 
51
 
With ``--verbose`` brz will print the name of every test as it is run.
 
47
To test all of Bazaar, just run::
 
48
 
 
49
  bzr selftest 
 
50
 
 
51
With ``--verbose`` bzr will print the name of every test as it is run.
52
52
 
53
53
This should always pass, whether run from a source tree or an installed
54
 
copy of Breezy.  Please investigate and/or report any failures.
 
54
copy of Bazaar.  Please investigate and/or report any failures.
55
55
 
56
56
 
57
57
Running particular tests
58
58
------------------------
59
59
 
60
 
Currently, brz selftest is used to invoke tests.
 
60
Currently, bzr selftest is used to invoke tests.
61
61
You can provide a pattern argument to run a subset. For example,
62
62
to run just the blackbox tests, run::
63
63
 
64
 
  ./brz selftest -v blackbox
 
64
  ./bzr selftest -v blackbox
65
65
 
66
66
To skip a particular test (or set of tests), use the --exclude option
67
67
(shorthand -x) like so::
68
68
 
69
 
  ./brz selftest -v -x blackbox
 
69
  ./bzr selftest -v -x blackbox
70
70
 
71
71
To ensure that all tests are being run and succeeding, you can use the
72
72
--strict option which will fail if there are any missing features or known
73
73
failures, like so::
74
74
 
75
 
  ./brz selftest --strict
 
75
  ./bzr selftest --strict
76
76
 
77
77
To list tests without running them, use the --list-only option like so::
78
78
 
79
 
  ./brz selftest --list-only
 
79
  ./bzr selftest --list-only
80
80
 
81
81
This option can be combined with other selftest options (like -x) and
82
82
filter patterns to understand their effect.
87
87
modifications, you still need to run the full test suite for that, but using it
88
88
can help in some cases (like running only the failed tests for some time)::
89
89
 
90
 
  ./brz selftest -- load-list my_failing_tests
 
90
  ./bzr selftest -- load-list my_failing_tests
91
91
 
92
92
This option can also be combined with other selftest options, including
93
93
patterns. It has some drawbacks though, the list can become out of date pretty
98
98
specified string. It will also avoid loading the other tests and as a
99
99
consequence starts running your tests quicker::
100
100
 
101
 
  ./brz selftest --starting-with breezy.blackbox
 
101
  ./bzr selftest --starting-with bzrlib.blackbox
102
102
 
103
103
This option can be combined with all the other selftest options including
104
104
--load-list. The later is rarely used but allows to run a subset of a list of
107
107
Disabling plugins
108
108
-----------------
109
109
 
110
 
To test only the brz core, ignoring any plugins you may have installed,
 
110
To test only the bzr core, ignoring any plugins you may have installed,
111
111
use::
112
112
 
113
 
  ./brz --no-plugins selftest 
 
113
  ./bzr --no-plugins selftest 
114
114
 
115
115
Disabling crash reporting
116
116
-------------------------
117
117
 
118
 
By default Breezy uses apport_ to report program crashes.  In developing
119
 
Breezy it's normal and expected to have it crash from time to time, at
 
118
By default Bazaar uses apport_ to report program crashes.  In developing
 
119
Bazaar it's normal and expected to have it crash from time to time, at
120
120
least because a test failed if for no other reason.
121
121
 
122
122
Therefore you should probably add ``debug_flags = no_apport`` to your
123
 
``breezy.conf`` file (in ``~/.config/breezy/`` on Unix), so that failures just
 
123
``bazaar.conf`` file (in ``~/.bazaar/`` on Unix), so that failures just
124
124
print a traceback rather than writing a crash file.
125
125
 
126
126
.. _apport: https://launchpad.net/apport/
129
129
Test suite debug flags
130
130
----------------------
131
131
 
132
 
Similar to the global ``-Dfoo`` debug options, brz selftest accepts
 
132
Similar to the global ``-Dfoo`` debug options, bzr selftest accepts
133
133
``-E=foo`` debug flags.  These flags are:
134
134
 
135
135
:allow_debug: do *not* clear the global debug flags when running a test.
136
136
  This can provide useful logging to help debug test failures when used
137
 
  with e.g. ``brz -Dhpss selftest -E=allow_debug``
 
137
  with e.g. ``bzr -Dhpss selftest -E=allow_debug``
138
138
 
139
139
  Note that this will probably cause some tests to fail, because they
140
140
  don't expect to run with any debug flags on.
143
143
Using subunit
144
144
-------------
145
145
 
146
 
Breezy can optionally produce output in the machine-readable subunit_
 
146
Bazaar can optionally produce output in the machine-readable subunit_
147
147
format, so that test output can be post-processed by various tools. To
148
148
generate a subunit test stream::
149
149
 
150
 
 $ ./brz selftest --subunit
 
150
 $ ./bzr selftest --subunit
151
151
 
152
152
Processing such a stream can be done using a variety of tools including:
153
153
 
165
165
Using testrepository
166
166
--------------------
167
167
 
168
 
Breezy ships with a config file for testrepository_. This can be very
 
168
Bazaar ships with a config file for testrepository_. This can be very
169
169
useful for keeping track of failing tests and doing general workflow
170
170
support. To run tests using testrepository::
171
171
 
183
183
 
184
184
.. _testrepository: https://launchpad.net/testrepository
185
185
 
186
 
 
187
 
Running tests in parallel
188
 
-------------------------
189
 
 
190
 
Breezy can use subunit to spawn multiple test processes.  There is
191
 
slightly more chance you will hit ordering or timing-dependent bugs but
192
 
it's much faster::
193
 
 
194
 
  $ ./brz selftest --parallel=fork
195
 
 
196
 
Note that you will need the Subunit library
197
 
<https://launchpad.net/subunit/> to use this, which is in
198
 
``python-subunit`` on Ubuntu.
199
 
 
200
 
 
201
 
Running tests from a ramdisk
202
 
----------------------------
203
 
 
204
 
The tests create and delete a lot of temporary files.  In some cases you
205
 
can make the test suite run much faster by running it on a ramdisk.  For
206
 
example::
207
 
 
208
 
  $ sudo mkdir /ram
209
 
  $ sudo mount -t tmpfs none /ram
210
 
  $ TMPDIR=/ram ./brz selftest ...
211
 
 
212
 
You could also change ``/tmp`` in ``/etc/fstab`` to have type ``tmpfs``,
213
 
if you don't mind possibly losing other files in there when the machine
214
 
restarts.  Add this line (if there is none for ``/tmp`` already)::
215
 
 
216
 
  none           /tmp            tmpfs  defaults        0       0
217
 
 
218
 
With a 6-core machine and ``--parallel=fork`` using a tmpfs doubles the
219
 
test execution speed.
220
 
 
221
 
 
222
186
Writing Tests
223
187
=============
224
188
 
225
189
Normally you should add or update a test for all bug fixes or new features
226
 
in Breezy.
 
190
in Bazaar.
227
191
 
228
192
 
229
193
Where should I put a new test?
230
194
------------------------------
231
195
 
232
 
breezy's tests are organised by the type of test.  Most of the tests in
233
 
brz's test suite belong to one of these categories:
 
196
Bzrlib's tests are organised by the type of test.  Most of the tests in
 
197
bzr's test suite belong to one of these categories:
234
198
 
235
199
 - Unit tests
236
200
 - Blackbox (UI) tests
237
201
 - Per-implementation tests
238
202
 - Doctests
239
203
 
240
 
A quick description of these test types and where they belong in breezy's
 
204
A quick description of these test types and where they belong in bzrlib's
241
205
source follows.  Not all tests fall neatly into one of these categories;
242
206
in those cases use your judgement.
243
207
 
250
214
as possible.  Each unit test is generally fairly short and runs very
251
215
quickly.
252
216
 
253
 
They are found in ``breezy/tests/test_*.py``.  So in general tests should
 
217
They are found in ``bzrlib/tests/test_*.py``.  So in general tests should
254
218
be placed in a file named test_FOO.py where FOO is the logical thing under
255
219
test.
256
220
 
257
 
For example, tests for merge3 in breezy belong in breezy/tests/test_merge3.py.
258
 
See breezy/tests/test_sampler.py for a template test script.
 
221
For example, tests for merge3 in bzrlib belong in bzrlib/tests/test_merge3.py.
 
222
See bzrlib/tests/test_sampler.py for a template test script.
259
223
 
260
224
 
261
225
Blackbox (UI) tests
266
230
option, then you should be writing a UI test.  If you are both adding UI
267
231
functionality and library functionality, you will want to write tests for
268
232
both the UI and the core behaviours.  We call UI tests 'blackbox' tests
269
 
and they belong in ``breezy/tests/blackbox/*.py``.
 
233
and they belong in ``bzrlib/tests/blackbox/*.py``.
270
234
 
271
235
When writing blackbox tests please honour the following conventions:
272
236
 
273
237
 1. Place the tests for the command 'name' in
274
 
    breezy/tests/blackbox/test_name.py. This makes it easy for developers
 
238
    bzrlib/tests/blackbox/test_name.py. This makes it easy for developers
275
239
    to locate the test script for a faulty command.
276
240
 
277
 
 2. Use the 'self.run_brz("name")' utility function to invoke the command
278
 
    rather than running brz in a subprocess or invoking the
 
241
 2. Use the 'self.run_bzr("name")' utility function to invoke the command
 
242
    rather than running bzr in a subprocess or invoking the
279
243
    cmd_object.run() method directly. This is a lot faster than
280
244
    subprocesses and generates the same logging output as running it in a
281
245
    subprocess (which invoking the method directly does not).
282
246
 
283
 
 3. Only test the one command in a single test script. Use the breezy
 
247
 3. Only test the one command in a single test script. Use the bzrlib
284
248
    library when setting up tests and when evaluating the side-effects of
285
249
    the command. We do this so that the library api has continual pressure
286
250
    on it to be as functional as the command line in a simple manner, and
288
252
    command changes its name or signature. Ideally only the tests for a
289
253
    given command are affected when a given command is changed.
290
254
 
291
 
 4. If you have a test which does actually require running brz in a
292
 
    subprocess you can use ``run_brz_subprocess``. By default the spawned
 
255
 4. If you have a test which does actually require running bzr in a
 
256
    subprocess you can use ``run_bzr_subprocess``. By default the spawned
293
257
    process will not load plugins unless ``--allow-plugins`` is supplied.
294
258
 
295
259
 
300
264
against multiple implementations of an interface.  For example,
301
265
``per_transport.py`` defines tests that all Transport implementations
302
266
(local filesystem, HTTP, and so on) must pass. They are found in
303
 
``breezy/tests/per_*/*.py``, and ``breezy/tests/per_*.py``.
 
267
``bzrlib/tests/per_*/*.py``, and ``bzrlib/tests/per_*.py``.
304
268
 
305
269
These are really a sub-category of unit tests, but an important one.
306
270
 
307
271
Along the same lines are tests for extension modules. We generally have
308
272
both a pure-python and a compiled implementation for each module. As such,
309
273
we want to run the same tests against both implementations. These can
310
 
generally be found in ``breezy/tests/*__*.py`` since extension modules are
 
274
generally be found in ``bzrlib/tests/*__*.py`` since extension modules are
311
275
usually prefixed with an underscore. Since there are only two
312
276
implementations, we have a helper function
313
 
``breezy.tests.permute_for_extension``, which can simplify the
 
277
``bzrlib.tests.permute_for_extension``, which can simplify the
314
278
``load_tests`` implementation.
315
279
 
316
280
 
320
284
We make selective use of doctests__.  In general they should provide
321
285
*examples* within the API documentation which can incidentally be tested.  We
322
286
don't try to test every important case using doctests |--| regular Python
323
 
tests are generally a better solution.  That is, we just use doctests to make
324
 
our documentation testable, rather than as a way to make tests. Be aware that
325
 
doctests are not as well isolated as the unit tests, if you need more
326
 
isolation, you're likely want to write unit tests anyway if only to get a
327
 
better control of the test environment.
 
287
tests are generally a better solution.  That is, we just use doctests to
 
288
make our documentation testable, rather than as a way to make tests.
328
289
 
329
 
Most of these are in ``breezy/doc/api``.  More additions are welcome.
 
290
Most of these are in ``bzrlib/doc/api``.  More additions are welcome.
330
291
 
331
292
  __ http://docs.python.org/lib/module-doctest.html
332
293
 
333
 
There is an `assertDoctestExampleMatches` method in
334
 
`breezy.tests.TestCase` that allows you to match against doctest-style
335
 
string templates (including ``...`` to skip sections) from regular Python
336
 
tests.
337
 
 
338
294
 
339
295
Shell-like tests
340
296
----------------
341
297
 
342
 
``breezy/tests/script.py`` allows users to write tests in a syntax very
343
 
close to a shell session, using a restricted and limited set of commands
344
 
that should be enough to mimic most of the behaviours.
 
298
``bzrlib/tests/script.py`` allows users to write tests in a syntax very close to a shell session,
 
299
using a restricted and limited set of commands that should be enough to mimic
 
300
most of the behaviours.
345
301
 
346
302
A script is a set of commands, each command is composed of:
347
303
 
366
322
The execution stops as soon as an expected output or an expected error is not
367
323
matched.
368
324
 
369
 
If output occurs and no output is expected, the execution stops and the
370
 
test fails.  If unexpected output occurs on the standard error, then
371
 
execution stops and the test fails.
 
325
When no output is specified, any ouput from the command is accepted
 
326
and execution continue.
372
327
 
373
328
If an error occurs and no expected error is specified, the execution stops.
374
329
 
380
335
 
381
336
Examples:
382
337
 
383
 
The following will succeeds only if 'brz add' outputs 'adding file'::
 
338
The following will succeeds only if 'bzr add' outputs 'adding file'::
384
339
 
385
 
  $ brz add file
 
340
  $ bzr add file
386
341
  >adding file
387
342
 
388
343
If you want the command to succeed for any output, just use::
389
344
 
390
 
  $ brz add file
391
 
  ...
392
 
  2>...
393
 
 
394
 
or use the ``--quiet`` option::
395
 
 
396
 
  $ brz add -q file
 
345
  $ bzr add file
397
346
 
398
347
The following will stop with an error::
399
348
 
400
 
  $ brz not-a-command
 
349
  $ bzr not-a-command
401
350
 
402
351
If you want it to succeed, use::
403
352
 
404
 
  $ brz not-a-command
405
 
  2> brz: ERROR: unknown command "not-a-command"
 
353
  $ bzr not-a-command
 
354
  2> bzr: ERROR: unknown command "not-a-command"
406
355
 
407
356
You can use ellipsis (...) to replace any piece of text you don't want to be
408
357
matched exactly::
409
358
 
410
 
  $ brz branch not-a-branch
411
 
  2>brz: ERROR: Not a branch...not-a-branch/".
 
359
  $ bzr branch not-a-branch
 
360
  2>bzr: ERROR: Not a branch...not-a-branch/".
412
361
 
413
362
This can be used to ignore entire lines too::
414
363
 
433
382
 
434
383
  $ cat file
435
384
 
436
 
You can run files containing shell-like scripts with::
437
 
 
438
 
  $ brz test-script <script>
439
 
 
440
 
where ``<script>`` is the path to the file containing the shell-like script.
441
 
 
442
385
The actual use of ScriptRunner within a TestCase looks something like
443
386
this::
444
387
 
445
 
    from breezy.tests import script
446
 
 
447
 
    def test_unshelve_keep(self):
448
 
        # some setup here
449
 
        script.run_script(self, '''
450
 
            $ brz add -q file
451
 
            $ brz shelve -q --all -m Foo
452
 
            $ brz shelve --list
453
 
            1: Foo
454
 
            $ brz unshelve -q --keep
455
 
            $ brz shelve --list
456
 
            1: Foo
457
 
            $ cat file
458
 
            contents of file
459
 
            ''')
460
 
 
461
 
You can also test commands that read user interaction::
462
 
 
463
 
    def test_confirm_action(self):
464
 
        """You can write tests that demonstrate user confirmation"""
465
 
        commands.builtin_command_registry.register(cmd_test_confirm)
466
 
        self.addCleanup(commands.builtin_command_registry.remove, 'test-confirm')
467
 
        self.run_script("""
468
 
            $ brz test-confirm
469
 
            2>Really do it? [y/n]: 
470
 
            <yes
471
 
            yes
472
 
            """)
473
 
 
474
 
To avoid having to specify "-q" for all commands whose output is
475
 
irrelevant, the run_script() method may be passed the keyword argument
476
 
``null_output_matches_anything=True``.  For example::
477
 
 
478
 
    def test_ignoring_null_output(self):
479
 
        self.run_script("""
480
 
            $ brz init
481
 
            $ brz ci -m 'first revision' --unchanged
482
 
            $ brz log --line
483
 
            1: ...
484
 
            """, null_output_matches_anything=True)
485
 
           
 
388
        def test_unshelve_keep(self):
 
389
                # some setup here
 
390
                sr = ScriptRunner()
 
391
                sr.run_script(self, '''
 
392
        $ bzr add file
 
393
        $ bzr shelve --all -m Foo
 
394
        $ bzr shelve --list
 
395
        1: Foo
 
396
        $ bzr unshelve --keep
 
397
        $ bzr shelve --list
 
398
        1: Foo
 
399
        $ cat file
 
400
        contents of file
 
401
        ''')
 
402
 
486
403
 
487
404
Import tariff tests
488
405
-------------------
489
406
 
490
 
`breezy.tests.test_import_tariff` has some tests that measure how many
 
407
`bzrlib.tests.test_import_tariff` has some tests that measure how many
491
408
Python modules are loaded to run some representative commands.
492
409
 
493
410
We want to avoid loading code unnecessarily, for reasons including:
501
418
 
502
419
* Some optional modules such as `testtools` are meant to be soft
503
420
  dependencies and only needed for particular cases.  If they're loaded in
504
 
  other cases then brz may break for people who don't have those modules.
 
421
  other cases then bzr may break for people who don't have those modules.
505
422
  
506
 
`test_import_tariff` allows us to check that removal of imports doesn't
 
423
`test_import_tarrif` allows us to check that removal of imports doesn't
507
424
regress.
508
425
 
509
426
This is done by running the command in a subprocess with
510
 
``PYTHON_VERBOSE=1``.  Starting a whole Python interpreter is pretty slow,
511
 
so we don't want exhaustive testing here, but just enough to guard against
512
 
distinct fixed problems.
 
427
``--profile-imports``.  Starting a whole Python interpreter is pretty
 
428
slow, so we don't want exhaustive testing here, but just enough to guard
 
429
against distinct fixed problems.
513
430
 
514
431
Assertions about precisely what is loaded tend to be brittle so we instead
515
432
make assertions that particular things aren't loaded.
516
433
 
517
434
Unless selftest is run with ``--no-plugins``, modules will be loaded in
518
435
the usual way and checks made on what they cause to be loaded.  This is
519
 
probably worth checking into, because many brz users have at least some
 
436
probably worth checking into, because many bzr users have at least some
520
437
plugins installed (and they're included in binary installers).
521
438
 
522
439
In theory, plugins might have a good reason to load almost anything:
523
440
someone might write a plugin that opens a network connection or pops up a
524
 
gui window every time you run 'brz status'.  However, it's more likely
 
441
gui window every time you run 'bzr status'.  However, it's more likely
525
442
that the code to do these things is just being loaded accidentally.  We
526
443
might eventually need to have a way to make exceptions for particular
527
444
plugins.
530
447
 
531
448
* non-GUI commands shouldn't load GUI libraries
532
449
 
533
 
* operations on brz native formats sholudn't load foreign branch libraries
 
450
* operations on bzr native formats sholudn't load foreign branch libraries
534
451
 
535
452
* network code shouldn't be loaded for purely local operations
536
453
 
545
462
a hook that is called when a write lock is: acquired, released or broken.
546
463
(Read locks also exist, they cannot be discovered in this way.)
547
464
 
548
 
A hook can be installed by calling breezy.lock.Lock.hooks.install_named_hook.
 
465
A hook can be installed by calling bzrlib.lock.Lock.hooks.install_named_hook.
549
466
The three valid hooks are: `lock_acquired`, `lock_released` and `lock_broken`.
550
467
 
551
468
Example::
563
480
 
564
481
The last part of the `lock_url` allows you to identify the type of object that is locked.
565
482
 
566
 
- brzDir: `/branch-lock`
 
483
- BzrDir: `/branch-lock`
567
484
- Working tree: `/checkout/lock`
568
485
- Branch: `/branch/lock`
569
486
- Repository: `/repository/lock`
572
489
 
573
490
    self.assertEndsWith(locks_acquired[0].lock_url, "/checkout/lock")
574
491
 
575
 
See breezy/tests/commands/test_revert.py for an example of how to use this for
 
492
See bzrlib/tests/commands/test_revert.py for an example of how to use this for
576
493
testing locks.
577
494
 
578
495
 
588
505
that relating to that.  ::
589
506
 
590
507
    try:
591
 
        return self.branch_format.initialize(repo.brzdir)
 
508
        return self.branch_format.initialize(repo.bzrdir)
592
509
    except errors.UninitializableFormat:
593
510
        raise tests.TestSkipped('Uninitializable branch format')
594
511
 
599
516
Several different cases are distinguished:
600
517
 
601
518
TestSkipped
602
 
        Generic skip; the only type that was present up to brz 0.18.
 
519
        Generic skip; the only type that was present up to bzr 0.18.
603
520
 
604
521
TestNotApplicable
605
522
        The test doesn't apply to the parameters with which it was run.
642
559
like merges to the mainline and releases where we want to make sure that
643
560
everything that can be tested has been tested.  Lax mode is for use by
644
561
developers who want to temporarily tolerate some known failures.  The
645
 
default behaviour is obtained by ``brz selftest`` with no options, and
 
562
default behaviour is obtained by ``bzr selftest`` with no options, and
646
563
also (if possible) by running under another unittest harness.
647
564
 
648
565
======================= ======= ======= ========
686
603
actually instances not classses they're now given instance-style names
687
604
like ``apport``.
688
605
 
689
 
Features already defined in ``breezy.tests`` and ``breezy.tests.features``
 
606
Features already defined in ``bzrlib.tests`` and ``bzrlib.tests.features``
690
607
include:
691
608
 
692
609
 - apport
707
624
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
708
625
 
709
626
New features for use with ``_test_needs_features`` or ``requireFeature``
710
 
are defined by subclassing ``breezy.tests.Feature`` and overriding the
 
627
are defined by subclassing ``bzrlib.tests.Feature`` and overriding the
711
628
``_probe`` and ``feature_name`` methods.  For example::
712
629
 
713
630
    class _SymlinkFeature(Feature):
723
640
A helper for handling running tests based on whether a python
724
641
module is available. This can handle 3rd-party dependencies (is
725
642
``paramiko`` available?) as well as stdlib (``termios``) or
726
 
extension modules (``breezy._groupcompress_pyx``). You create a
 
643
extension modules (``bzrlib._groupcompress_pyx``). You create a
727
644
new feature instance with::
728
645
 
729
 
    # in breezy/tests/features.py
 
646
    # in bzrlib/tests/features.py
730
647
    apport = tests.ModuleAvailableFeature('apport')
731
648
 
732
649
 
733
 
    # then in breezy/tests/test_apport.py
 
650
    # then in bzrlib/tests/test_apport.py
734
651
    class TestApportReporting(TestCaseInTempDir):
735
652
 
736
653
        _test_needs_features = [features.apport]
737
654
 
738
655
 
739
 
Testing translations
740
 
-----------------------
741
 
 
742
 
Translations are disabled by default in tests.  If you want to test
743
 
that code is translated you can use the ``ZzzTranslations`` class from
744
 
``test_i18n``::
745
 
 
746
 
    self.overrideAttr(i18n, '_translations', ZzzTranslations())
747
 
 
748
 
And check the output strings look like ``u"zz\xe5{{output}}"``.
749
 
 
750
 
To test the gettext setup and usage you override i18n.installed back
751
 
to self.i18nInstalled and _translations to None, see
752
 
test_i18n.TestInstall.
753
 
 
754
 
 
755
 
Testing deprecated code
756
 
-----------------------
757
 
 
758
 
When code is deprecated, it is still supported for some length of time,
759
 
usually until the next major version. The ``applyDeprecated`` helper
760
 
wraps calls to deprecated code to verify that it is correctly issuing the
761
 
deprecation warning, and also prevents the warnings from being printed
762
 
during test runs.
763
 
 
764
 
Typically patches that apply the ``@deprecated_function`` decorator should
765
 
update the accompanying tests to use the ``applyDeprecated`` wrapper.
766
 
 
767
 
``applyDeprecated`` is defined in ``breezy.tests.TestCase``. See the API
768
 
docs for more details.
769
 
 
770
 
 
771
656
Testing exceptions and errors
772
657
-----------------------------
773
658
 
788
673
 
789
674
2. Tests that when an api is called in a particular situation, it raises
790
675
   an error of the expected class.  You should typically use
791
 
   ``assertRaises``, which in the Breezy test suite returns the exception
 
676
   ``assertRaises``, which in the Bazaar test suite returns the exception
792
677
   object to allow you to examine its parameters.
793
678
 
794
679
In some cases blackbox tests will also want to check error reporting.  But
820
705
Interface implementation testing and test scenarios
821
706
---------------------------------------------------
822
707
 
823
 
There are several cases in Breezy of multiple implementations of a common
 
708
There are several cases in Bazaar of multiple implementations of a common
824
709
conceptual interface.  ("Conceptual" because it's not necessary for all
825
710
the implementations to share a base class, though they often do.)
826
711
Examples include transports and the working tree, branch and repository
830
715
fulfils the interface requirements.  For example, every Transport should
831
716
support the ``has()`` and ``get()`` and ``clone()`` methods.  We have a
832
717
sub-suite of tests in ``test_transport_implementations``.  (Most
833
 
per-implementation tests are in submodules of ``breezy.tests``, but not
 
718
per-implementation tests are in submodules of ``bzrlib.tests``, but not
834
719
the transport tests at the moment.)
835
720
 
836
721
These tests are repeated for each registered Transport, by generating a
846
731
whether a test should be added for that particular implementation,
847
732
or for all implementations of the interface.
848
733
 
 
734
The multiplication of tests for different implementations is normally
 
735
accomplished by overriding the ``load_tests`` function used to load tests
 
736
from a module.  This function typically loads all the tests, then applies
 
737
a TestProviderAdapter to them, which generates a longer suite containing
 
738
all the test variations.
 
739
 
849
740
See also `Per-implementation tests`_ (above).
850
741
 
851
742
 
852
 
Test scenarios and variations
853
 
-----------------------------
 
743
Test scenarios
 
744
--------------
854
745
 
855
746
Some utilities are provided for generating variations of tests.  This can
856
747
be used for per-implementation tests, or other cases where the same test
861
752
values to which the test should be applied.  The test suite should then
862
753
also provide a list of scenarios in which to run the tests.
863
754
 
864
 
A single *scenario* is defined by a `(name, parameter_dict)` tuple.  The
865
 
short string name is combined with the name of the test method to form the
866
 
test instance name.  The parameter dict is merged into the instance's
867
 
attributes.
868
 
 
869
 
For example::
870
 
 
871
 
    load_tests = load_tests_apply_scenarios
872
 
 
873
 
    class TestCheckout(TestCase):
874
 
 
875
 
        scenarios = multiply_scenarios(
876
 
            VaryByRepositoryFormat(), 
877
 
            VaryByTreeFormat(),
878
 
            )
879
 
 
880
 
The `load_tests` declaration or definition should be near the top of the
881
 
file so its effect can be seen.
 
755
Typically ``multiply_tests_from_modules`` should be called from the test
 
756
module's ``load_tests`` function.
882
757
 
883
758
 
884
759
Test support
892
767
TestCase and its subclasses
893
768
~~~~~~~~~~~~~~~~~~~~~~~~~~~
894
769
 
895
 
The ``breezy.tests`` module defines many TestCase classes to help you
 
770
The ``bzrlib.tests`` module defines many TestCase classes to help you
896
771
write your tests.
897
772
 
898
773
TestCase
899
774
    A base TestCase that extends the Python standard library's
900
 
    TestCase in several ways.  TestCase is build on
901
 
    ``testtools.TestCase``, which gives it support for more assertion
902
 
    methods (e.g.  ``assertContainsRe``), ``addCleanup``, and other
903
 
    features (see its API docs for details).  It also has a ``setUp`` that
904
 
    makes sure that global state like registered hooks and loggers won't
905
 
    interfere with your test.  All tests should use this base class
906
 
    (whether directly or via a subclass).  Note that we are trying not to
907
 
    add more assertions at this point, and instead to build up a library
908
 
    of ``breezy.tests.matchers``.
 
775
    TestCase in several ways.  It adds more assertion methods (e.g.
 
776
    ``assertContainsRe``), ``addCleanup``, and other features (see its API
 
777
    docs for details).  It also has a ``setUp`` that makes sure that
 
778
    global state like registered hooks and loggers won't interfere with
 
779
    your test.  All tests should use this base class (whether directly or
 
780
    via a subclass).
909
781
 
910
782
TestCaseWithMemoryTransport
911
783
    Extends TestCase and adds methods like ``get_transport``,
913
785
    stored in a MemoryTransport that is discarded at the end of the test.
914
786
    This class is good for tests that need to make branches or use
915
787
    transports, but that don't require storing things on disk.  All tests
916
 
    that create brzdirs should use this base class (either directly or via
 
788
    that create bzrdirs should use this base class (either directly or via
917
789
    a subclass) as it ensures that the test won't accidentally operate on
918
790
    real branches in your filesystem.
919
791
 
957
829
testing how we work with disk objects should, of course, use a real
958
830
``WorkingTree``.
959
831
 
960
 
Please see breezy.branchbuilder for more details.
 
832
Please see bzrlib.branchbuilder for more details.
961
833
 
962
834
If you're going to examine the commit timestamps e.g. in a test for log
963
835
output, you should set the timestamp on the tree, rather than using fuzzy
981
853
method of ``TestCaseWithMemoryTransport``) or ``make_branch_and_tree`` (a
982
854
method of ``TestCaseWithTransport``).
983
855
 
984
 
Please see breezy.treebuilder for more details.
985
 
 
986
 
PreviewTree
987
 
~~~~~~~~~~~
988
 
 
989
 
PreviewTrees are based on TreeTransforms.  This means they can represent
990
 
virtually any state that a WorkingTree can have, including unversioned files.
991
 
They can be used to test the output of anything that produces TreeTransforms,
992
 
such as merge algorithms and revert.  They can also be used to test anything
993
 
that takes arbitrary Trees as its input.
994
 
 
995
 
::
996
 
 
997
 
  # Get an empty tree to base the transform on.
998
 
  b = self.make_branch('.')
999
 
  empty_tree = b.repository.revision_tree(_mod_revision.NULL_REVISION)
1000
 
  tt = TransformPreview(empty_tree)
1001
 
  self.addCleanup(tt.finalize)
1002
 
  # Empty trees don't have a root, so add it first.
1003
 
  root = tt.new_directory('', ROOT_PARENT, 'tree-root')
1004
 
  # Set the contents of a file.
1005
 
  tt.new_file('new-file', root, 'contents', 'file-id')
1006
 
  preview = tt.get_preview_tree()
1007
 
  # Test the contents.
1008
 
  self.assertEqual('contents', preview.get_file_text('file-id'))
1009
 
 
1010
 
PreviewTrees can stack, with each tree falling back to the previous::
1011
 
 
1012
 
  tt2 = TransformPreview(preview)
1013
 
  self.addCleanup(tt2.finalize)
1014
 
  tt2.new_file('new-file2', tt2.root, 'contents2', 'file-id2')
1015
 
  preview2 = tt2.get_preview_tree()
1016
 
  self.assertEqual('contents', preview2.get_file_text('file-id'))
1017
 
  self.assertEqual('contents2', preview2.get_file_text('file-id2'))
1018
 
 
1019
 
 
1020
 
Temporarily changing state
1021
 
~~~~~~~~~~~~~~~~~~~~~~~~~~
1022
 
 
1023
 
If your test needs to temporarily mutate some global state, and you need
1024
 
it restored at the end, you can say for example::
1025
 
 
1026
 
    self.overrideAttr(osutils, '_cached_user_encoding', 'latin-1')
1027
 
 
1028
 
This should be used with discretion; sometimes it's better to make the
1029
 
underlying code more testable so that you don't need to rely on monkey
1030
 
patching.
1031
 
 
1032
 
 
1033
 
Observing calls to a function
1034
 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1035
 
 
1036
 
Sometimes it's useful to observe how a function is called, typically when
1037
 
calling it has side effects but the side effects are not easy to observe
1038
 
from a test case.  For instance the function may be expensive and we want
1039
 
to assert it is not called too many times, or it has effects on the
1040
 
machine that are safe to run during a test but not easy to measure.  In
1041
 
these cases, you can use `recordCalls` which will monkey-patch in a
1042
 
wrapper that records when the function is called.
1043
 
 
1044
 
 
1045
 
Temporarily changing environment variables
1046
 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1047
 
 
1048
 
If yout test needs to temporarily change some environment variable value
1049
 
(which generally means you want it restored at the end), you can use::
1050
 
 
1051
 
    self.overrideEnv('brz_ENV_VAR', 'new_value')
1052
 
 
1053
 
If you want to remove a variable from the environment, you should use the
1054
 
special ``None`` value::
1055
 
 
1056
 
    self.overrideEnv('PATH', None)
1057
 
 
1058
 
If you add a new feature which depends on a new environment variable, make
1059
 
sure it behaves properly when this variable is not defined (if applicable) and
1060
 
if you need to enforce a specific default value, check the
1061
 
``TestCase._cleanEnvironment`` in ``breezy.tests.__init__.py`` which defines a
1062
 
proper set of values for all tests.
1063
 
 
1064
 
Cleaning up
1065
 
~~~~~~~~~~~
1066
 
 
1067
 
Our base ``TestCase`` class provides an ``addCleanup`` method, which
1068
 
should be used instead of ``tearDown``.  All the cleanups are run when the
1069
 
test finishes, regardless of whether it passes or fails.  If one cleanup
1070
 
fails, later cleanups are still run.
1071
 
 
1072
 
(The same facility is available outside of tests through
1073
 
``breezy.cleanup``.)
1074
 
 
1075
 
 
1076
 
Manual testing
1077
 
==============
1078
 
 
1079
 
Generally we prefer automated testing but sometimes a manual test is the
1080
 
right thing, especially for performance tests that want to measure elapsed
1081
 
time rather than effort.
1082
 
 
1083
 
Simulating slow networks
1084
 
------------------------
1085
 
 
1086
 
To get realistically slow network performance for manually measuring
1087
 
performance, we can simulate 500ms latency (thus 1000ms round trips)::
1088
 
 
1089
 
  $ sudo tc qdisc add dev lo root netem delay 500ms
1090
 
 
1091
 
Normal system behaviour is restored with ::
1092
 
 
1093
 
  $ sudo tc qdisc del dev lo root
1094
 
 
1095
 
A more precise version that only filters traffic to port 4155 is::
1096
 
 
1097
 
    tc qdisc add dev lo root handle 1: prio
1098
 
    tc qdisc add dev lo parent 1:3 handle 30: netem delay 500ms 
1099
 
    tc filter add dev lo protocol ip parent 1:0 prio 3 u32 match ip dport 4155 0xffff flowid 1:3 
1100
 
    tc filter add dev lo protocol ip parent 1:0 prio 3 u32 match ip sport 4155 0xffff flowid 1:3 
1101
 
 
1102
 
and to remove this::
1103
 
 
1104
 
    tc filter del dev lo protocol ip parent 1: pref 3 u32
1105
 
    tc qdisc del dev lo root handle 1:
1106
 
 
1107
 
You can use similar code to add additional delay to a real network
1108
 
interface, perhaps only when talking to a particular server or pointing at
1109
 
a VM.  For more information see <http://lartc.org/>.
 
856
Please see bzrlib.treebuilder for more details.
1110
857
 
1111
858
 
1112
859
.. |--| unicode:: U+2014
1113
860
 
1114
861
..
1115
 
   vim: ft=rst tw=74 ai et sw=4
 
862
   vim: ft=rst tw=74 ai