99
88
self.run_bzr('init')
102
self.run_bzr(['mkdir', 'dir', 'a/dir', 'a/b/dir'])
91
self.run_bzr('mkdir', 'dir', 'a/dir', 'a/b/dir')
103
92
self.failUnless(os.path.isdir('dir'))
104
93
self.failUnless(os.path.isdir('a/dir'))
105
94
self.failUnless(os.path.isdir('a/b/dir'))
107
wt = WorkingTree.open('.')
108
wt_a = WorkingTree.open('a')
109
wt_b = WorkingTree.open('a/b')
111
delta = wt.changes_from(wt.basis_tree())
112
self.assertEquals(len(delta.added), 1)
113
self.assertEquals(delta.added[0][0], 'dir')
114
self.failIf(delta.modified)
116
delta = wt_a.changes_from(wt_a.basis_tree())
117
self.assertEquals(len(delta.added), 1)
118
self.assertEquals(delta.added[0][0], 'dir')
119
self.failIf(delta.modified)
121
delta = wt_b.changes_from(wt_b.basis_tree())
122
self.assertEquals(len(delta.added), 1)
123
self.assertEquals(delta.added[0][0], 'dir')
124
self.failIf(delta.modified)
96
from bzrlib.diff import compare_trees
98
b_a = Branch.open('a')
99
b_b = Branch.open('a/b')
101
delta = compare_trees(b.basis_tree(), b.working_tree())
102
self.assertEquals(len(delta.added), 1)
103
self.assertEquals(delta.added[0][0], 'dir')
104
self.failIf(delta.modified)
106
delta = compare_trees(b_a.basis_tree(), b_a.working_tree())
107
self.assertEquals(len(delta.added), 1)
108
self.assertEquals(delta.added[0][0], 'dir')
109
self.failIf(delta.modified)
111
delta = compare_trees(b_b.basis_tree(), b_b.working_tree())
112
self.assertEquals(len(delta.added), 1)
113
self.assertEquals(delta.added[0][0], 'dir')
114
self.failIf(delta.modified)
116
def test_branch_add_in_unversioned(self):
117
"""Try to add a file in an unversioned directory.
119
"bzr add" adds the parent as necessary, but simple branch add
122
from bzrlib.branch import Branch
123
from bzrlib.errors import NotVersionedError
125
b = Branch.initialize('.')
127
self.build_tree(['foo/',
130
self.assertRaises(NotVersionedError,
136
def test_add_in_unversioned(self):
137
"""Try to add a file in an unversioned directory.
139
"bzr add" should add the parent(s) as necessary.
141
from bzrlib.branch import Branch
142
eq = self.assertEqual
144
b = Branch.initialize('.')
146
self.build_tree(['inertiatic/', 'inertiatic/esp'])
147
eq(list(b.unknowns()), ['inertiatic'])
148
self.run_bzr('add', 'inertiatic/esp')
149
eq(list(b.unknowns()), [])
151
# Multiple unversioned parents
152
self.build_tree(['veil/', 'veil/cerpin/', 'veil/cerpin/taxt'])
153
eq(list(b.unknowns()), ['veil'])
154
self.run_bzr('add', 'veil/cerpin/taxt')
155
eq(list(b.unknowns()), [])
157
# Check whacky paths work
158
self.build_tree(['cicatriz/', 'cicatriz/esp'])
159
eq(list(b.unknowns()), ['cicatriz'])
160
self.run_bzr('add', 'inertiatic/../cicatriz/esp')
161
eq(list(b.unknowns()), [])
163
def test_add_in_versioned(self):
164
"""Try to add a file in a versioned directory.
166
"bzr add" should do this happily.
168
from bzrlib.branch import Branch
169
eq = self.assertEqual
171
b = Branch.initialize('.')
173
self.build_tree(['inertiatic/', 'inertiatic/esp'])
174
eq(list(b.unknowns()), ['inertiatic'])
175
self.run_bzr('add', '--no-recurse', 'inertiatic')
176
eq(list(b.unknowns()), ['inertiatic'+os.sep+'esp'])
177
self.run_bzr('add', 'inertiatic/esp')
178
eq(list(b.unknowns()), [])
180
def test_subdir_add(self):
181
"""Add in subdirectory should add only things from there down"""
183
from bzrlib.branch import Branch
185
eq = self.assertEqual
189
b = Branch.initialize('.')
191
self.build_tree(['src/', 'README'])
193
eq(sorted(b.unknowns()),
196
self.run_bzr('add', 'src')
198
self.build_tree(['src/foo.c'])
203
eq(sorted(b.unknowns()),
205
eq(len(t.read_working_inventory()), 3)
209
eq(list(b.unknowns()), [])
126
213
def check_branch(self):
127
214
"""After all the above changes, run the check and upgrade commands.
129
216
The upgrade should be a no-op."""
130
b = Branch.open(u'.')
131
218
mutter('branch has %d revisions', b.revno())
133
220
mutter('check branch...')
134
221
from bzrlib.check import check
138
class SubdirCommit(TestCaseWithTransport):
225
class SubdirCommit(TestCaseInTempDir):
140
227
def test_subdir_commit(self):
141
"""Test committing a subdirectory, and committing a directory."""
142
tree = self.make_branch_and_tree('.')
228
"""Test committing a subdirectory, and committing within a directory."""
229
run_bzr = self.run_bzr
230
eq = self.assertEqual
144
232
self.build_tree(['a/', 'b/'])
145
def set_contents(contents):
146
self.build_tree_contents([
151
set_contents('old contents')
152
tree.smart_add(['.'])
153
tree.commit('first revision')
154
set_contents('new contents')
237
for fn in ('a/one', 'b/two', 'top'):
238
file(fn, 'w').write('old contents')
241
run_bzr('commit', '-m', 'first revision')
243
for fn in ('a/one', 'b/two', 'top'):
244
file(fn, 'w').write('new contents')
156
246
mutter('start selective subdir commit')
157
self.run_bzr(['commit', 'a', '-m', 'commit a only'])
159
new = b.repository.revision_tree(b.get_rev_id(2))
162
self.assertEqual(new.get_file_by_path('b/two').read(), 'old contents')
163
self.assertEqual(new.get_file_by_path('top').read(), 'old contents')
164
self.assertEqual(new.get_file_by_path('a/one').read(), 'new contents')
247
run_bzr('commit', 'a', '-m', 'commit a only')
249
old = b.revision_tree(b.get_rev_id(1))
250
new = b.revision_tree(b.get_rev_id(2))
252
eq(new.get_file_by_path('b/two').read(), 'old contents')
253
eq(new.get_file_by_path('top').read(), 'old contents')
254
eq(new.get_file_by_path('a/one').read(), 'new contents')
168
257
# commit from here should do nothing
169
self.run_bzr(['commit', '.', '-m', 'commit subdir only', '--unchanged'])
170
v3 = b.repository.revision_tree(b.get_rev_id(3))
172
self.assertEqual(v3.get_file_by_path('b/two').read(), 'old contents')
173
self.assertEqual(v3.get_file_by_path('top').read(), 'old contents')
174
self.assertEqual(v3.get_file_by_path('a/one').read(), 'new contents')
258
run_bzr('commit', '.', '-m', 'commit subdir only', '--unchanged')
259
v3 = b.revision_tree(b.get_rev_id(3))
260
eq(v3.get_file_by_path('b/two').read(), 'old contents')
261
eq(v3.get_file_by_path('top').read(), 'old contents')
262
eq(v3.get_file_by_path('a/one').read(), 'new contents')
177
264
# commit in subdirectory commits whole tree
178
self.run_bzr(['commit', '-m', 'commit whole tree from subdir'])
179
v4 = b.repository.revision_tree(b.get_rev_id(4))
181
self.assertEqual(v4.get_file_by_path('b/two').read(), 'new contents')
182
self.assertEqual(v4.get_file_by_path('top').read(), 'new contents')
265
run_bzr('commit', '-m', 'commit whole tree from subdir')
266
v4 = b.revision_tree(b.get_rev_id(4))
267
eq(v4.get_file_by_path('b/two').read(), 'new contents')
268
eq(v4.get_file_by_path('top').read(), 'new contents')
185
270
# TODO: factor out some kind of assert_tree_state() method
273
if __name__ == '__main__':