1
# (C) 2005 Canonical Ltd
2
# Authors: Robert Collins <robert.collins@canonical.com>
4
# This program is free software; you can redistribute it and/or modify
5
# it under the terms of the GNU General Public License as published by
6
# the Free Software Foundation; either version 2 of the License, or
7
# (at your option) any later version.
9
# This program is distributed in the hope that it will be useful,
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
# GNU General Public License for more details.
14
# You should have received a copy of the GNU General Public License
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
19
from bzrlib.branch import Branch
20
from bzrlib.selftest import TestCaseInTempDir
21
from bzrlib.trace import mutter
22
from bzrlib.workingtree import (TreeEntry, TreeDirectory, TreeFile, TreeLink,
25
class TestTreeDirectory(TestCaseInTempDir):
27
def test_kind_character(self):
28
self.assertEqual(TreeDirectory().kind_character(), '/')
31
class TestTreeEntry(TestCaseInTempDir):
33
def test_kind_character(self):
34
self.assertEqual(TreeEntry().kind_character(), '???')
37
class TestTreeFile(TestCaseInTempDir):
39
def test_kind_character(self):
40
self.assertEqual(TreeFile().kind_character(), '')
43
class TestTreeLink(TestCaseInTempDir):
45
def test_kind_character(self):
46
self.assertEqual(TreeLink().kind_character(), '')
49
class TestWorkingTree(TestCaseInTempDir):
51
def test_listfiles(self):
52
branch = Branch.initialize('.')
54
print >> open('file', 'w'), "content"
55
os.symlink('target', 'symlink')
56
tree = branch.working_tree()
57
files = list(tree.list_files())
58
self.assertEqual(files[0], ('dir', '?', 'directory', None, TreeDirectory()))
59
self.assertEqual(files[1], ('file', '?', 'file', None, TreeFile()))
60
self.assertEqual(files[2], ('symlink', '?', 'symlink', None, TreeLink()))
62
def test_construct_with_branch(self):
63
branch = Branch.initialize('.')
64
tree = WorkingTree(branch.base, branch)
65
self.assertEqual(branch, tree.branch)
66
self.assertEqual(branch.base, tree.basedir)
68
def test_construct_without_branch(self):
69
branch = Branch.initialize('.')
70
tree = WorkingTree(branch.base)
71
self.assertEqual(branch.base, tree.branch.base)
72
self.assertEqual(branch.base, tree.basedir)
74
def test_basic_relpath(self):
75
# for comprehensive relpath tests, see whitebox.py.
76
branch = Branch.initialize('.')
77
tree = WorkingTree(branch.base)
78
self.assertEqual('child',
79
tree.relpath(os.path.join(os.getcwd(), 'child')))
81
def test_lock_locks_branch(self):
82
branch = Branch.initialize('.')
83
tree = WorkingTree(branch.base)
85
self.assertEqual(1, tree.branch._lock_count)
86
self.assertEqual('r', tree.branch._lock_mode)
88
self.assertEqual(None, tree.branch._lock_count)
90
self.assertEqual(1, tree.branch._lock_count)
91
self.assertEqual('w', tree.branch._lock_mode)
93
self.assertEqual(None, tree.branch._lock_count)
95
def get_pullable_branches(self):
96
self.build_tree(['from/', 'from/file', 'to/'])
97
br_a = Branch.initialize('from')
99
br_a.commit('foo', rev_id='A')
100
br_b = Branch.initialize('to')
104
br_a, br_b = self.get_pullable_branches()
105
br_b.working_tree().pull(br_a)
106
self.failUnless(br_b.has_revision('A'))
107
self.assertEqual(['A'], br_b.revision_history())
109
def test_pull_overwrites(self):
110
br_a, br_b = self.get_pullable_branches()
111
br_b.commit('foo', rev_id='B')
112
self.assertEqual(['B'], br_b.revision_history())
113
br_b.working_tree().pull(br_a, overwrite=True)
114
self.failUnless(br_b.has_revision('A'))
115
self.failUnless(br_b.has_revision('B'))
116
self.assertEqual(['A'], br_b.revision_history())