/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
2220.2.17 by Martin Pool
merge up from bzr.dev to get metadir changes
1
# Copyright (C) 2006, 2007 Canonical Ltd
1534.4.24 by Robert Collins
update (C) on branch_implementations/__init__.py
2
# Authors: Robert Collins <robert.collins@canonical.com>
2220.2.17 by Martin Pool
merge up from bzr.dev to get metadir changes
3
#          and others
1887.1.1 by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines,
4
#
1534.4.23 by Robert Collins
Move branch implementations tests into a package.
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.
1887.1.1 by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines,
9
#
1534.4.23 by Robert Collins
Move branch implementations tests into a package.
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.
1887.1.1 by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines,
14
#
1534.4.23 by Robert Collins
Move branch implementations tests into a package.
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
                           )
2018.5.167 by Andrew Bennetts
Various changes in response to John's review.
31
from bzrlib.smart.server import (
32
    SmartTCPServer_for_testing,
33
    ReadonlySmartTCPServer_for_testing,
34
    )
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.
35
from bzrlib.tests import (
36
                          adapt_modules,
37
                          TestLoader,
38
                          TestSuite,
39
                          )
2018.5.167 by Andrew Bennetts
Various changes in response to John's review.
40
from bzrlib.remote import RemoteBranchFormat, RemoteBzrDirFormat
41
from bzrlib.transport.memory import MemoryServer
1534.4.23 by Robert Collins
Move branch implementations tests into a package.
42
1534.4.24 by Robert Collins
update (C) on branch_implementations/__init__.py
43
1534.4.23 by Robert Collins
Move branch implementations tests into a package.
44
def test_suite():
45
    result = TestSuite()
46
    test_branch_implementations = [
1587.1.6 by Robert Collins
Update bound branch implementation to 0.8.
47
        'bzrlib.tests.branch_implementations.test_bound_sftp',
1534.4.23 by Robert Collins
Move branch implementations tests into a package.
48
        'bzrlib.tests.branch_implementations.test_branch',
1687.1.8 by Robert Collins
Teach Branch about break_lock.
49
        'bzrlib.tests.branch_implementations.test_break_lock',
2370.3.1 by John Arbash Meinel
(John Arbash Meinel) Fix bug #93854, make 'bzr checkout' create branches in the same format as the source.
50
        'bzrlib.tests.branch_implementations.test_create_checkout',
2246.1.3 by Robert Collins
New branch hooks: post_push, post_pull, post_commit, post_uncommit. These
51
        'bzrlib.tests.branch_implementations.test_commit',
2245.1.1 by Robert Collins
New Branch hooks facility, with one initial hook 'set_rh' which triggers
52
        'bzrlib.tests.branch_implementations.test_hooks',
1864.7.3 by John Arbash Meinel
Test that the right thing happens when clone/sprout is done with an invalid parent
53
        'bzrlib.tests.branch_implementations.test_http',
2249.4.1 by Wouter van Heyst
New Branch.last_revision_info method, this is being done to allow
54
        'bzrlib.tests.branch_implementations.test_last_revision_info',
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.
55
        'bzrlib.tests.branch_implementations.test_locking',
1534.4.41 by Robert Collins
Branch now uses BzrDir reasonably sanely.
56
        '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.
57
        'bzrlib.tests.branch_implementations.test_permissions',
1649.1.1 by Robert Collins
* 'pull' and 'push' now normalise the revision history, so that any two
58
        'bzrlib.tests.branch_implementations.test_pull',
2375.1.5 by Andrew Bennetts
Deal with review comments from Robert:
59
        'bzrlib.tests.branch_implementations.test_push',
60
        'bzrlib.tests.branch_implementations.test_revision_history',
2220.2.13 by mbp at sourcefrog
reconnect and fix up lower-level tests for tags
61
        'bzrlib.tests.branch_implementations.test_tags',
2246.1.3 by Robert Collins
New branch hooks: post_push, post_pull, post_commit, post_uncommit. These
62
        'bzrlib.tests.branch_implementations.test_uncommit',
1587.1.10 by Robert Collins
update updates working tree and branch together.
63
        'bzrlib.tests.branch_implementations.test_update',
1534.4.23 by Robert Collins
Move branch implementations tests into a package.
64
        ]
2018.11.2 by Andrew Bennetts
Hookup RemoteBranch for testing by bzrlib/tests/branch_implementations tests.
65
    # Generate a list of branch formats and their associated bzrdir formats to
66
    # use.
1752.2.31 by Martin Pool
[broken] some support for write operations over hpss
67
    combinations = [(format, format._matchingbzrdir) for format in 
68
         BranchFormat._formats.values() + _legacy_formats]
1534.4.23 by Robert Collins
Move branch implementations tests into a package.
69
    adapter = BranchTestProviderAdapter(
2018.5.114 by Robert Collins
Commit current test pass improvements.
70
        # None here will cause the default vfs transport server to be used.
71
        None,
1534.4.23 by Robert Collins
Move branch implementations tests into a package.
72
        # None here will cause a readonly decorator to be created
73
        # by the TestCaseWithTransport.get_readonly_transport method.
74
        None,
1752.2.31 by Martin Pool
[broken] some support for write operations over hpss
75
        combinations)
1534.4.23 by Robert Collins
Move branch implementations tests into a package.
76
    loader = TestLoader()
77
    adapt_modules(test_branch_implementations, adapter, loader, result)
2018.11.2 by Andrew Bennetts
Hookup RemoteBranch for testing by bzrlib/tests/branch_implementations tests.
78
79
80
    adapt_to_smart_server = BranchTestProviderAdapter(
81
        SmartTCPServer_for_testing,
82
        ReadonlySmartTCPServer_for_testing,
83
        [(RemoteBranchFormat(), RemoteBzrDirFormat())],
84
        MemoryServer
85
        )
86
    adapt_modules(test_branch_implementations,
87
                  adapt_to_smart_server,
88
                  loader,
89
                  result)
90
1534.4.23 by Robert Collins
Move branch implementations tests into a package.
91
    return result