1534.4.24
by Robert Collins
update (C) on branch_implementations/__init__.py |
1 |
# Copyright (C) 2006 by Canonical Ltd
|
2 |
# Authors: Robert Collins <robert.collins@canonical.com>
|
|
1534.4.23
by Robert Collins
Move branch implementations tests into a package. |
3 |
# -*- coding: utf-8 -*-
|
4 |
||
5 |
# This program is free software; you can redistribute it and/or modify
|
|
6 |
# it under the terms of the GNU General Public License as published by
|
|
7 |
# the Free Software Foundation; either version 2 of the License, or
|
|
8 |
# (at your option) any later version.
|
|
9 |
||
10 |
# This program is distributed in the hope that it will be useful,
|
|
11 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
13 |
# GNU General Public License for more details.
|
|
14 |
||
15 |
# You should have received a copy of the GNU General Public License
|
|
16 |
# along with this program; if not, write to the Free Software
|
|
17 |
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
18 |
||
19 |
||
20 |
"""Branch implementation tests for bzr.
|
|
21 |
||
22 |
These test the conformance of all the branch variations to the expected API.
|
|
23 |
Specific tests for individual formats are in the tests/test_branch file
|
|
24 |
rather than in tests/branch_implementations/*.py.
|
|
25 |
"""
|
|
26 |
||
1534.4.41
by Robert Collins
Branch now uses BzrDir reasonably sanely. |
27 |
from bzrlib.branch import (BranchFormat, |
28 |
BranchTestProviderAdapter, |
|
29 |
_legacy_formats, |
|
30 |
)
|
|
1534.4.25
by Robert Collins
Add a --transport parameter to the test suite to set the default transport to be used in the test suite. |
31 |
from bzrlib.tests import ( |
32 |
adapt_modules, |
|
33 |
default_transport, |
|
34 |
TestLoader, |
|
35 |
TestSuite, |
|
36 |
)
|
|
1534.4.23
by Robert Collins
Move branch implementations tests into a package. |
37 |
|
1534.4.24
by Robert Collins
update (C) on branch_implementations/__init__.py |
38 |
|
1534.4.23
by Robert Collins
Move branch implementations tests into a package. |
39 |
def test_suite(): |
40 |
result = TestSuite() |
|
41 |
test_branch_implementations = [ |
|
1587.1.6
by Robert Collins
Update bound branch implementation to 0.8. |
42 |
'bzrlib.tests.branch_implementations.test_bound_sftp', |
1534.4.23
by Robert Collins
Move branch implementations tests into a package. |
43 |
'bzrlib.tests.branch_implementations.test_branch', |
1687.1.8
by Robert Collins
Teach Branch about break_lock. |
44 |
'bzrlib.tests.branch_implementations.test_break_lock', |
1711.8.5
by John Arbash Meinel
Move the new locking tests into their own files, and move the helper functions into a test helper. |
45 |
'bzrlib.tests.branch_implementations.test_locking', |
1534.4.41
by Robert Collins
Branch now uses BzrDir reasonably sanely. |
46 |
'bzrlib.tests.branch_implementations.test_parent', |
1534.4.50
by Robert Collins
Got the bzrdir api straightened out, plenty of refactoring to use it pending, but the api is up and running. |
47 |
'bzrlib.tests.branch_implementations.test_permissions', |
1649.1.1
by Robert Collins
* 'pull' and 'push' now normalise the revision history, so that any two |
48 |
'bzrlib.tests.branch_implementations.test_pull', |
1587.1.10
by Robert Collins
update updates working tree and branch together. |
49 |
'bzrlib.tests.branch_implementations.test_update', |
1534.4.23
by Robert Collins
Move branch implementations tests into a package. |
50 |
]
|
51 |
adapter = BranchTestProviderAdapter( |
|
1534.4.25
by Robert Collins
Add a --transport parameter to the test suite to set the default transport to be used in the test suite. |
52 |
default_transport, |
1534.4.23
by Robert Collins
Move branch implementations tests into a package. |
53 |
# None here will cause a readonly decorator to be created
|
54 |
# by the TestCaseWithTransport.get_readonly_transport method.
|
|
55 |
None, |
|
1534.4.41
by Robert Collins
Branch now uses BzrDir reasonably sanely. |
56 |
[(format, format._matchingbzrdir) for format in |
57 |
BranchFormat._formats.values() + _legacy_formats]) |
|
1534.4.23
by Robert Collins
Move branch implementations tests into a package. |
58 |
loader = TestLoader() |
59 |
adapt_modules(test_branch_implementations, adapter, loader, result) |
|
60 |
return result |