1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
|
import os
import os.path
from unittest import makeSuite
from bzrlib import branch, osutils, workingtree
from bzrlib.config import LocationConfig
from bzrlib.transport import get_transport
from bzrlib.tests import TestCaseWithTransport, HardlinkFeature
class TestBzrTools(TestCaseWithTransport):
@staticmethod
def touch(filename):
file(filename, 'wb').write('')
def test_clean_tree(self):
self.run_bzr('init')
self.run_bzr('ignore *~')
self.run_bzr('ignore *.pyc')
self.touch('name')
self.touch('name~')
assert os.path.lexists('name~')
self.touch('name.pyc')
self.run_bzr('clean-tree')
assert os.path.lexists('name~')
assert not os.path.lexists('name')
self.touch('name')
self.run_bzr('clean-tree --detritus')
assert os.path.lexists('name')
assert not os.path.lexists('name~')
assert os.path.lexists('name.pyc')
self.run_bzr('clean-tree --ignored')
assert os.path.lexists('name')
assert not os.path.lexists('name.pyc')
self.run_bzr('clean-tree --unknown')
assert not os.path.lexists('name')
self.touch('name')
self.touch('name~')
self.touch('name.pyc')
self.run_bzr('clean-tree --unknown --ignored')
assert not os.path.lexists('name')
assert not os.path.lexists('name~')
assert not os.path.lexists('name.pyc')
def test_shelve(self):
self.run_bzr('init')
self.run_bzr('commit -m uc --unchanged')
self.run_bzr('shelve -r 1 -m foo --all', retcode=3)
file('foo', 'wb').write('foo')
self.run_bzr('add foo')
self.run_bzr('commit -m foo')
self.run_bzr('shelve -r 1 -m foo --all', retcode=0)
def test_fetch_ghosts(self):
self.run_bzr('init')
self.run_bzr('fetch-ghosts .')
def test_patch(self):
self.run_bzr('init')
file('myfile', 'wb').write('hello')
self.run_bzr('add')
self.run_bzr('commit -m hello')
file('myfile', 'wb').write('goodbye')
file('mypatch', 'wb').write(self.run_bzr('diff', retcode=1)[0])
self.run_bzr('revert')
assert file('myfile', 'rb').read() == 'hello'
self.run_bzr('patch --silent mypatch')
assert file('myfile', 'rb').read() == 'goodbye'
def test_branch_history(self):
self.run_bzr('init')
file('myfile', 'wb').write('hello')
self.run_bzr('add')
self.run_bzr('commit -m hello')
self.run_bzr('branch-history')
def test_branch_history(self):
self.run_bzr('init')
file('myfile', 'wb').write('hello')
self.run_bzr('add')
self.run_bzr('commit -m hello')
self.run_bzr('graph-ancestry . graph.dot')
self.run_bzr('branch . my_branch')
self.run_bzr('graph-ancestry . graph.dot --merge-branch my_branch')
def test_fetch_ghosts(self):
self.run_bzr('init')
file('myfile', 'wb').write('hello')
self.run_bzr('add')
self.run_bzr('commit -m hello')
self.run_bzr('branch . my_branch')
self.run_bzr('fetch-ghosts my_branch')
def test_zap(self):
self.run_bzr('init source')
self.run_bzr('checkout --lightweight source checkout')
self.run_bzr('zap checkout')
self.assertIs(False, os.path.exists('checkout'))
self.assertIs(True, os.path.exists('source'))
def test_zap_modified(self):
tree = self.make_branch_and_tree('source')
checkout = tree.branch.create_checkout('checkout', lightweight=True)
self.build_tree(['checkout/file'])
checkout.add('file')
self.run_bzr_error(('This checkout has uncommitted changes',),
'zap checkout')
self.failUnlessExists('checkout')
self.run_bzr('zap checkout --force')
self.failIfExists('checkout')
self.failUnlessExists('source')
def test_zap_branch(self):
self.run_bzr('init source')
self.run_bzr('checkout --lightweight source checkout')
self.run_bzr('zap --branch checkout', retcode=3)
self.assertIs(True, os.path.exists('checkout'))
self.assertIs(True, os.path.exists('source'))
self.run_bzr('branch source source2')
self.run_bzr('checkout --lightweight source2 checkout2')
self.run_bzr('zap --branch checkout2')
self.assertIs(False, os.path.exists('checkout2'))
self.assertIs(False, os.path.exists('source2'))
def test_branches(self):
self.run_bzr('init source')
self.run_bzr('init source/subsource')
self.run_bzr('checkout --lightweight source checkout')
self.run_bzr('init checkout/subcheckout')
self.run_bzr('init checkout/.bzr/subcheckout')
out = self.run_bzr('branches')[0]
lines = out.split('\n')
self.assertIs(True, 'source' in lines)
self.assertIs(True, 'source/subsource' in lines)
self.assertIs(True, 'checkout/subcheckout' in lines)
self.assertIs(True, 'checkout' not in lines)
def test_import_upstream(self):
self.run_bzr('init source')
os.mkdir('source/src')
f = file('source/src/myfile', 'wb')
f.write('hello?')
f.close()
os.chdir('source')
self.run_bzr('add')
self.run_bzr('commit -m hello')
self.run_bzr('export ../source-0.1.tar.gz')
self.run_bzr('export ../source-0.1.tar.bz2')
self.run_bzr('export ../source-0.1')
self.run_bzr('init ../import')
os.chdir('../import')
self.run_bzr('import ../source-0.1.tar.gz')
self.failUnlessExists('src/myfile')
result = self.run_bzr('import ../source-0.1.tar.gz', retcode=3)[1]
self.assertContainsRe(result, 'Working tree has uncommitted changes')
self.run_bzr('commit -m commit')
self.run_bzr('import ../source-0.1.tar.gz')
os.chdir('..')
self.run_bzr('init import2')
self.run_bzr('import source-0.1.tar.gz import2')
self.failUnlessExists('import2/src/myfile')
self.run_bzr('import source-0.1.tar.gz import3')
self.failUnlessExists('import3/src/myfile')
self.run_bzr('import source-0.1.tar.bz2 import4')
self.failUnlessExists('import4/src/myfile')
self.run_bzr('import source-0.1 import5')
self.failUnlessExists('import5/src/myfile')
def test_cbranch(self):
source = self.make_branch_and_tree('source')
config = LocationConfig(osutils.abspath('target'))
config.set_user_option('cbranch_target', 'target_branch')
self.run_bzr('cbranch source target')
checkout = workingtree.WorkingTree.open('target')
self.assertEqual(checkout.branch.base,
get_transport('target').base)
self.assertEqual(checkout.branch.get_master_branch().base,
get_transport('target_branch').base)
self.assertEqual(checkout.branch.get_master_branch().get_parent(),
get_transport('source').base)
def test_cbranch_hardlink(self):
self.requireFeature(HardlinkFeature)
source = self.make_branch_and_tree('source')
self.build_tree(['source/file'])
source.add('file')
source.commit('added file')
config = LocationConfig(osutils.abspath('target'))
config.set_user_option('cbranch_target', 'target_branch')
self.run_bzr('cbranch source target --lightweight')
checkout = workingtree.WorkingTree.open('target')
self.assertNotEqual(os.lstat(checkout.abspath('file')).st_ino,
os.lstat(source.abspath('file')).st_ino)
config = LocationConfig(osutils.abspath('target2'))
config.set_user_option('cbranch_target', 'target_branch2')
self.run_bzr('cbranch source target2 --lightweight --hardlink')
checkout2 = workingtree.WorkingTree.open('target2')
self.assertEqual(os.lstat(checkout2.abspath('file')).st_ino,
os.lstat(source.abspath('file')).st_ino)
def test_suite():
return makeSuite(TestBzrTools)
|