14
14
# You should have received a copy of the GNU General Public License
15
15
# along with this program; if not, write to the Free Software
16
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19
from bzrlib.tests import TestNotApplicable
19
20
from bzrlib.transform import TreeTransform
20
21
from bzrlib.tests.workingtree_implementations import TestCaseWithWorkingTree
23
24
class TestNestedSupport(TestCaseWithWorkingTree):
26
def make_branch_and_tree(self, path):
27
tree = TestCaseWithWorkingTree.make_branch_and_tree(self, path)
28
if not tree.supports_tree_reference():
29
raise TestNotApplicable('Tree references not supported')
25
32
def test_set_get_tree_reference(self):
26
33
"""This tests that setting a tree reference is persistent."""
27
34
tree = self.make_branch_and_tree('.')
28
if not tree.supports_tree_reference():
30
35
transform = TreeTransform(tree)
31
36
trans_id = transform.new_directory('reference', transform.root,
41
46
def test_extract_while_locked(self):
42
47
tree = self.make_branch_and_tree('.')
43
if not tree.supports_tree_reference():
46
49
self.addCleanup(tree.unlock)
47
50
self.build_tree(['subtree/'])
48
51
tree.add(['subtree'], ['subtree-id'])
49
52
subtree = tree.extract('subtree-id')
54
def prepare_with_subtree(self):
55
tree = self.make_branch_and_tree('.')
57
self.addCleanup(tree.unlock)
58
subtree = self.make_branch_and_tree('subtree')
59
tree.add(['subtree'], ['subtree-id'])
62
def test_kind_does_not_autodetect_subtree(self):
63
tree = self.prepare_with_subtree()
64
self.assertEqual('directory', tree.kind('subtree-id'))
66
def test_comparison_data_does_not_autodetect_subtree(self):
67
tree = self.prepare_with_subtree()
68
entry = tree.iter_entries_by_dir(['subtree-id']).next()[1]
69
self.assertEqual('directory',
70
tree._comparison_data(entry, 'subtree')[0])