bzr branch
http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
|
2255.7.9
by John Arbash Meinel
Add more tests for WorkingTree.move() and a similar suite |
1 |
# Copyright (C) 2006, 2007 Canonical Ltd
|
|
1887.1.1
by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines, |
2 |
#
|
|
1534.4.46
by Robert Collins
Nearly complete .bzr/checkout splitout. |
3 |
# This program is free software; you can redistribute it and/or modify
|
4 |
# it under the terms of the GNU General Public License as published by
|
|
5 |
# the Free Software Foundation; either version 2 of the License, or
|
|
6 |
# (at your option) any later version.
|
|
|
1887.1.1
by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines, |
7 |
#
|
|
1534.4.46
by Robert Collins
Nearly complete .bzr/checkout splitout. |
8 |
# This program is distributed in the hope that it will be useful,
|
9 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
10 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
11 |
# GNU General Public License for more details.
|
|
|
1887.1.1
by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines, |
12 |
#
|
|
1534.4.46
by Robert Collins
Nearly complete .bzr/checkout splitout. |
13 |
# You should have received a copy of the GNU General Public License
|
14 |
# along with this program; if not, write to the Free Software
|
|
|
4183.7.1
by Sabin Iacob
update FSF mailing address |
15 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
1534.4.46
by Robert Collins
Nearly complete .bzr/checkout splitout. |
16 |
|
17 |
||
18 |
"""WorkingTree implementation tests for bzr.
|
|
19 |
||
20 |
These test the conformance of all the workingtre variations to the expected API.
|
|
|
3943.8.1
by Marius Kruger
remove all trailing whitespace from bzr source |
21 |
Specific tests for individual formats are in the tests/test_workingtree file
|
|
1534.4.46
by Robert Collins
Nearly complete .bzr/checkout splitout. |
22 |
rather than in tests/workingtree_implementations/*.py.
|
23 |
"""
|
|
24 |
||
|
1534.5.5
by Robert Collins
Move is_control_file into WorkingTree.is_control_filename and test. |
25 |
import bzrlib.errors as errors |
26 |
from bzrlib.transport import get_transport |
|
|
1534.4.46
by Robert Collins
Nearly complete .bzr/checkout splitout. |
27 |
from bzrlib.tests import ( |
28 |
default_transport, |
|
|
4084.5.1
by Robert Collins
Bulk update all test adaptation into a single approach, using multiply_tests rather than test adapters. |
29 |
multiply_tests, |
|
1534.4.46
by Robert Collins
Nearly complete .bzr/checkout splitout. |
30 |
)
|
|
1666.1.4
by Robert Collins
* 'Metadir' is now the default disk format. This improves behaviour in |
31 |
from bzrlib.tests.bzrdir_implementations.test_bzrdir import TestCaseWithBzrDir |
|
1534.5.5
by Robert Collins
Move is_control_file into WorkingTree.is_control_filename and test. |
32 |
from bzrlib.workingtree import (WorkingTreeFormat, |
33 |
_legacy_formats, |
|
34 |
)
|
|
35 |
||
36 |
||
|
4084.5.1
by Robert Collins
Bulk update all test adaptation into a single approach, using multiply_tests rather than test adapters. |
37 |
def make_scenarios(transport_server, transport_readonly_server, formats): |
38 |
"""Create a scenario for the specified converter |
|
|
2553.2.10
by Robert Collins
And overhaul WorkingTreeTestProviderAdapter too. |
39 |
|
|
4084.5.1
by Robert Collins
Bulk update all test adaptation into a single approach, using multiply_tests rather than test adapters. |
40 |
:param workingtree_format: The particular workingtree format to test.
|
41 |
:param bzrdir_format: The bzrdir format to test.
|
|
42 |
:return: a (name, options) tuple, where options is a dict of values
|
|
43 |
to be used as members of the TestCase.
|
|
|
2553.2.10
by Robert Collins
And overhaul WorkingTreeTestProviderAdapter too. |
44 |
"""
|
|
4084.5.1
by Robert Collins
Bulk update all test adaptation into a single approach, using multiply_tests rather than test adapters. |
45 |
result = [] |
46 |
for workingtree_format in formats: |
|
47 |
result.append((workingtree_format.__class__.__name__, |
|
48 |
make_scenario(transport_server, transport_readonly_server, |
|
49 |
workingtree_format))) |
|
50 |
return result |
|
51 |
||
52 |
||
53 |
def make_scenario(transport_server, transport_readonly_server, |
|
54 |
workingtree_format): |
|
55 |
return { |
|
56 |
"transport_server": transport_server, |
|
57 |
"transport_readonly_server": transport_readonly_server, |
|
58 |
"bzrdir_format": workingtree_format._matchingbzrdir, |
|
59 |
"workingtree_format": workingtree_format, |
|
60 |
}
|
|
|
3363.1.1
by Aaron Bentley
Refactor intertree scenario creation |
61 |
|
|
2553.2.10
by Robert Collins
And overhaul WorkingTreeTestProviderAdapter too. |
62 |
|
|
1666.1.4
by Robert Collins
* 'Metadir' is now the default disk format. This improves behaviour in |
63 |
class TestCaseWithWorkingTree(TestCaseWithBzrDir): |
64 |
||
65 |
def make_branch_and_tree(self, relpath, format=None): |
|
66 |
made_control = self.make_bzrdir(relpath, format=format) |
|
|
1534.5.5
by Robert Collins
Move is_control_file into WorkingTree.is_control_filename and test. |
67 |
made_control.create_repository() |
68 |
made_control.create_branch() |
|
69 |
return self.workingtree_format.initialize(made_control) |
|
|
1534.4.46
by Robert Collins
Nearly complete .bzr/checkout splitout. |
70 |
|
71 |
||
|
4084.5.1
by Robert Collins
Bulk update all test adaptation into a single approach, using multiply_tests rather than test adapters. |
72 |
def load_tests(standard_tests, module, loader): |
|
1534.4.46
by Robert Collins
Nearly complete .bzr/checkout splitout. |
73 |
test_workingtree_implementations = [ |
|
2100.3.8
by Aaron Bentley
Add add_reference |
74 |
'bzrlib.tests.workingtree_implementations.test_add_reference', |
|
2255.7.10
by John Arbash Meinel
Handle the case when we are adding a file to an empty directory. |
75 |
'bzrlib.tests.workingtree_implementations.test_add', |
|
1666.1.4
by Robert Collins
* 'Metadir' is now the default disk format. This improves behaviour in |
76 |
'bzrlib.tests.workingtree_implementations.test_basis_inventory', |
|
2255.2.72
by John Arbash Meinel
Add some tests for WorkingTree.basis_tree() |
77 |
'bzrlib.tests.workingtree_implementations.test_basis_tree', |
|
1687.1.9
by Robert Collins
Teach WorkingTree about break-lock. |
78 |
'bzrlib.tests.workingtree_implementations.test_break_lock', |
|
1852.9.6
by Robert Collins
Merge the change from Tree.compare to Tree.changes_from. |
79 |
'bzrlib.tests.workingtree_implementations.test_changes_from', |
|
3368.2.11
by Ian Clatworthy
add filtered option to get_file and get_file_byname in workingtree.py |
80 |
'bzrlib.tests.workingtree_implementations.test_content_filters', |
|
1666.1.18
by Robert Collins
Add a progress bar during commit operations. |
81 |
'bzrlib.tests.workingtree_implementations.test_commit', |
|
1711.4.30
by John Arbash Meinel
Don't peak under the covers, and test all working tree implementations for executable success (suggested by Robert Collins) |
82 |
'bzrlib.tests.workingtree_implementations.test_executable', |
|
1986.5.3
by Robert Collins
New method ``WorkingTree.flush()`` which will write the current memory |
83 |
'bzrlib.tests.workingtree_implementations.test_flush', |
|
3709.3.2
by Robert Collins
Race-free stat-fingerprint updating during commit via a new method get_file_with_stat. |
84 |
'bzrlib.tests.workingtree_implementations.test_get_file_with_stat', |
|
2405.3.1
by John Arbash Meinel
Add some tests for get_file_mtime, and clean up others. |
85 |
'bzrlib.tests.workingtree_implementations.test_get_file_mtime', |
|
1773.2.1
by Robert Collins
Teach all trees about unknowns, conflicts and get_parent_ids. |
86 |
'bzrlib.tests.workingtree_implementations.test_get_parent_ids', |
|
2338.4.2
by Marien Zwart
Move the workingtree-related inventory tests to a separate file. |
87 |
'bzrlib.tests.workingtree_implementations.test_inv', |
|
1534.5.5
by Robert Collins
Move is_control_file into WorkingTree.is_control_filename and test. |
88 |
'bzrlib.tests.workingtree_implementations.test_is_control_filename', |
|
1713.2.1
by Robert Collins
Some tests for WorkingTree.is_ignored so it can be refactored with confidence. |
89 |
'bzrlib.tests.workingtree_implementations.test_is_ignored', |
|
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. |
90 |
'bzrlib.tests.workingtree_implementations.test_locking', |
|
1979.2.1
by Robert Collins
(robertc) adds a convenience method "merge_from_branch" to WorkingTree. |
91 |
'bzrlib.tests.workingtree_implementations.test_merge_from_branch', |
|
1908.11.3
by Robert Collins
Merge bzr.dev |
92 |
'bzrlib.tests.workingtree_implementations.test_mkdir', |
|
2255.2.137
by John Arbash Meinel
Move the WorkingTree.move() tests into their own module |
93 |
'bzrlib.tests.workingtree_implementations.test_move', |
|
2255.2.195
by Robert Collins
Fix set_reference_revision on dirstate format trees. |
94 |
'bzrlib.tests.workingtree_implementations.test_nested_specifics', |
|
1908.5.3
by Robert Collins
Rename the tree.set_parents tests to tree.parents - preparing to add related function tests. Also remove duplication within the tests by factoring out a helper assert. |
95 |
'bzrlib.tests.workingtree_implementations.test_parents', |
|
2255.2.100
by Robert Collins
Create a paths2ids api to replace find_ids_across_trees, with tests. |
96 |
'bzrlib.tests.workingtree_implementations.test_paths2ids', |
|
1563.1.4
by Robert Collins
Fix 'bzr pull' on metadir trees. |
97 |
'bzrlib.tests.workingtree_implementations.test_pull', |
|
1986.1.2
by Robert Collins
Various changes to allow non-workingtree specific tests to run entirely |
98 |
'bzrlib.tests.workingtree_implementations.test_put_file', |
|
2201.1.1
by John Arbash Meinel
Fix bug #76299 by ignoring write errors during readonly hashcache write. |
99 |
'bzrlib.tests.workingtree_implementations.test_readonly', |
|
1986.5.3
by Robert Collins
New method ``WorkingTree.flush()`` which will write the current memory |
100 |
'bzrlib.tests.workingtree_implementations.test_read_working_inventory', |
|
2292.1.30
by Marius Kruger
* Minor text fixes. |
101 |
'bzrlib.tests.workingtree_implementations.test_remove', |
|
2255.7.9
by John Arbash Meinel
Add more tests for WorkingTree.move() and a similar suite |
102 |
'bzrlib.tests.workingtree_implementations.test_rename_one', |
|
1908.11.2
by Robert Collins
Implement WorkingTree interface conformance tests for |
103 |
'bzrlib.tests.workingtree_implementations.test_revision_tree', |
|
1986.5.2
by Robert Collins
``WorkingTree.set_root_id(None)`` is now deprecated. Please |
104 |
'bzrlib.tests.workingtree_implementations.test_set_root_id', |
|
2255.2.62
by John Arbash Meinel
add a workingtree_implementations test that makes sure smart_add_tree orks properly |
105 |
'bzrlib.tests.workingtree_implementations.test_smart_add', |
|
2598.5.7
by Aaron Bentley
Updates from review |
106 |
'bzrlib.tests.workingtree_implementations.test_uncommit', |
|
1988.2.1
by Robert Collins
WorkingTree has a new api ``unversion`` which allow the unversioning of |
107 |
'bzrlib.tests.workingtree_implementations.test_unversion', |
|
3586.1.4
by Ian Clatworthy
first cut at tree-level view tests |
108 |
'bzrlib.tests.workingtree_implementations.test_views', |
|
1852.15.7
by Robert Collins
Start testing behaviour of unknowns in WorkingTree.walkdirs. |
109 |
'bzrlib.tests.workingtree_implementations.test_walkdirs', |
|
1534.4.46
by Robert Collins
Nearly complete .bzr/checkout splitout. |
110 |
'bzrlib.tests.workingtree_implementations.test_workingtree', |
111 |
]
|
|
|
3302.9.16
by Vincent Ladeuil
bzrlib.tests.workingtree_implementations switched from |
112 |
|
|
4084.5.1
by Robert Collins
Bulk update all test adaptation into a single approach, using multiply_tests rather than test adapters. |
113 |
scenarios = make_scenarios( |
|
1534.4.46
by Robert Collins
Nearly complete .bzr/checkout splitout. |
114 |
default_transport, |
115 |
# None here will cause a readonly decorator to be created
|
|
116 |
# by the TestCaseWithTransport.get_readonly_transport method.
|
|
117 |
None, |
|
|
3543.1.1
by Michael Hudson
change the scenario multiplication to get the bzrdir format from the tree and |
118 |
WorkingTreeFormat._formats.values() + _legacy_formats) |
|
3302.9.16
by Vincent Ladeuil
bzrlib.tests.workingtree_implementations switched from |
119 |
|
|
3302.9.27
by Vincent Ladeuil
Fixed as per Ian's review. |
120 |
# add the tests for the sub modules
|
|
4084.5.1
by Robert Collins
Bulk update all test adaptation into a single approach, using multiply_tests rather than test adapters. |
121 |
return multiply_tests( |
122 |
loader.loadTestsFromModuleNames(test_workingtree_implementations), |
|
123 |
scenarios, standard_tests) |