bzr branch
http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
|
1534.4.46
by Robert Collins
Nearly complete .bzr/checkout splitout. |
1 |
# Copyright (C) 2006 by Canonical Ltd
|
2 |
# Authors: Robert Collins <robert.collins@canonical.com>
|
|
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 |
"""WorkingTree implementation tests for bzr.
|
|
21 |
||
22 |
These test the conformance of all the workingtre variations to the expected API.
|
|
23 |
Specific tests for individual formats are in the tests/test_workingtree file
|
|
24 |
rather than in tests/workingtree_implementations/*.py.
|
|
25 |
"""
|
|
26 |
||
|
1534.5.5
by Robert Collins
Move is_control_file into WorkingTree.is_control_filename and test. |
27 |
import bzrlib.errors as errors |
28 |
from bzrlib.transport import get_transport |
|
|
1534.4.46
by Robert Collins
Nearly complete .bzr/checkout splitout. |
29 |
from bzrlib.tests import ( |
30 |
adapt_modules, |
|
31 |
default_transport, |
|
|
1534.5.5
by Robert Collins
Move is_control_file into WorkingTree.is_control_filename and test. |
32 |
TestCaseWithTransport, |
|
1534.4.46
by Robert Collins
Nearly complete .bzr/checkout splitout. |
33 |
TestLoader, |
34 |
TestSuite, |
|
35 |
)
|
|
|
1534.5.5
by Robert Collins
Move is_control_file into WorkingTree.is_control_filename and test. |
36 |
from bzrlib.workingtree import (WorkingTreeFormat, |
37 |
WorkingTreeTestProviderAdapter, |
|
38 |
_legacy_formats, |
|
39 |
)
|
|
40 |
||
41 |
||
42 |
class TestCaseWithWorkingTree(TestCaseWithTransport): |
|
43 |
||
44 |
def make_bzrdir(self, relpath): |
|
45 |
# todo factor out into bzrdir-using-implementations-tests-base-class
|
|
46 |
try: |
|
47 |
url = self.get_url(relpath) |
|
48 |
segments = url.split('/') |
|
49 |
if segments and segments[-1] not in ('', '.'): |
|
50 |
parent = '/'.join(segments[:-1]) |
|
51 |
t = get_transport(parent) |
|
52 |
try: |
|
53 |
t.mkdir(segments[-1]) |
|
54 |
except errors.FileExists: |
|
55 |
pass
|
|
56 |
return self.bzrdir_format.initialize(url) |
|
57 |
except errors.UninitializableFormat: |
|
58 |
raise TestSkipped("Format %s is not initializable.") |
|
59 |
||
60 |
def make_branch_and_tree(self, relpath): |
|
61 |
made_control = self.make_bzrdir(relpath) |
|
62 |
made_control.create_repository() |
|
63 |
made_control.create_branch() |
|
64 |
return self.workingtree_format.initialize(made_control) |
|
|
1534.4.46
by Robert Collins
Nearly complete .bzr/checkout splitout. |
65 |
|
66 |
||
67 |
def test_suite(): |
|
68 |
result = TestSuite() |
|
69 |
test_workingtree_implementations = [ |
|
|
1534.5.5
by Robert Collins
Move is_control_file into WorkingTree.is_control_filename and test. |
70 |
'bzrlib.tests.workingtree_implementations.test_is_control_filename', |
|
1563.1.4
by Robert Collins
Fix 'bzr pull' on metadir trees. |
71 |
'bzrlib.tests.workingtree_implementations.test_pull', |
|
1534.4.46
by Robert Collins
Nearly complete .bzr/checkout splitout. |
72 |
'bzrlib.tests.workingtree_implementations.test_workingtree', |
73 |
]
|
|
74 |
adapter = WorkingTreeTestProviderAdapter( |
|
75 |
default_transport, |
|
76 |
# None here will cause a readonly decorator to be created
|
|
77 |
# by the TestCaseWithTransport.get_readonly_transport method.
|
|
78 |
None, |
|
79 |
[(format, format._matchingbzrdir) for format in |
|
80 |
WorkingTreeFormat._formats.values() + _legacy_formats]) |
|
81 |
loader = TestLoader() |
|
82 |
adapt_modules(test_workingtree_implementations, adapter, loader, result) |
|
83 |
return result |