~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/blackbox.py

import scotts non verbose commit fix to allow non pointless commits

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
"""
28
28
 
29
29
import sys
 
30
import os
 
31
 
30
32
from bzrlib.selftest import TestCaseInTempDir, BzrTestBase
 
33
from bzrlib.branch import Branch
 
34
from bzrlib.commands import run_bzr
 
35
 
31
36
 
32
37
class ExternalBase(TestCaseInTempDir):
33
38
    def runbzr(self, args, retcode=0,backtick=False):
118
123
        assert file('.bzrignore', 'rb').read() == '*.blah\ngarh\n'
119
124
 
120
125
    def test_revert(self):
121
 
        import os
122
126
        self.runbzr('init')
123
127
 
124
128
        file('hello', 'wt').write('foo')
143
147
        os.rmdir('revertdir')
144
148
        self.runbzr('revert')
145
149
 
146
 
    def skipped_test_mv_modes(self):
 
150
    def test_mv_modes(self):
147
151
        """Test two modes of operation for mv"""
148
152
        from bzrlib.branch import Branch
149
153
        b = Branch('.', init=True)
150
154
        self.build_tree(['a', 'c', 'subdir/'])
 
155
        self.run_bzr('add', self.test_dir)
151
156
        self.run_bzr('mv', 'a', 'b')
152
157
        self.run_bzr('mv', 'b', 'subdir')
153
158
        self.run_bzr('mv', 'subdir/b', 'a')
154
 
        self.run_bzr('mv', 'a', 'b', 'subdir')
 
159
        self.run_bzr('mv', 'a', 'c', 'subdir')
155
160
        self.run_bzr('mv', 'subdir/a', 'subdir/newa')
156
161
 
 
162
 
157
163
    def test_main_version(self):
158
164
        """Check output from version command and master option is reasonable"""
159
165
        # output is intentionally passed through to stdout so that we
190
196
 
191
197
    def test_merge(self):
192
198
        from bzrlib.branch import Branch
193
 
        import os
194
199
        
195
200
        os.mkdir('a')
196
201
        os.chdir('a')
197
 
 
198
202
        self.example_branch()
199
203
        os.chdir('..')
200
204
        self.runbzr('branch a b')
213
217
        a = Branch('.')
214
218
        b = Branch('../b')
215
219
        a.get_revision_xml(b.last_patch())
216
 
 
217
220
        self.log('pending merges: %s', a.pending_merges())
218
 
#        assert a.pending_merges() == [b.last_patch()], "Assertion %s %s" \
219
 
#        % (a.pending_merges(), b.last_patch())
 
221
        #        assert a.pending_merges() == [b.last_patch()], "Assertion %s %s" \
 
222
        #        % (a.pending_merges(), b.last_patch())
 
223
 
 
224
    def test_pull(self):
 
225
        """Pull changes from one branch to another."""
 
226
        os.mkdir('a')
 
227
        os.chdir('a')
 
228
 
 
229
        self.example_branch()
 
230
        self.runbzr('pull', retcode=1)
 
231
        self.runbzr('missing', retcode=1)
 
232
        self.runbzr('missing .')
 
233
        self.runbzr('missing')
 
234
        self.runbzr('pull')
 
235
        self.runbzr('pull /', retcode=1)
 
236
        self.runbzr('pull')
 
237
 
 
238
        os.chdir('..')
 
239
        self.runbzr('branch a b')
 
240
        os.chdir('b')
 
241
        self.runbzr('pull')
 
242
        self.runbzr('commit -m blah --unchanged')
 
243
        os.chdir('../a')
 
244
        a = Branch('.')
 
245
        b = Branch('../b')
 
246
        assert a.revision_history() == b.revision_history()[:-1]
 
247
        self.runbzr('pull ../b')
 
248
        assert a.revision_history() == b.revision_history()
 
249
        self.runbzr('commit -m blah2 --unchanged')
 
250
        os.chdir('../b')
 
251
        self.runbzr('commit -m blah3 --unchanged')
 
252
        self.runbzr('pull ../a', retcode=1)
 
253
        os.chdir('../a')
 
254
        self.runbzr('merge ../b')
 
255
        self.runbzr('commit -m blah4 --unchanged')
 
256
        os.chdir('../b')
 
257
        self.runbzr('pull ../a')
 
258
        assert a.revision_history()[-1] == b.revision_history()[-1]
 
259
        
 
260
 
 
261
    def test_add_reports(self):
 
262
        """add command prints the names of added files."""
 
263
        b = Branch('.', init=True)
 
264
        self.build_tree(['top.txt', 'dir/', 'dir/sub.txt'])
 
265
 
 
266
        from cStringIO import StringIO
 
267
        out = StringIO()
 
268
 
 
269
        ret = self.apply_redirected(None, out, None,
 
270
                                    run_bzr,
 
271
                                    ['add'])
 
272
        self.assertEquals(ret, 0)
 
273
 
 
274
        # the ordering is not defined at the moment
 
275
        results = sorted(out.getvalue().rstrip('\n').split('\n'))
 
276
        self.assertEquals(['added dir',
 
277
                           'added dir/sub.txt',
 
278
                           'added top.txt',],
 
279
                          results)
 
280
 
220
281
 
221
282
class OldTests(ExternalBase):
222
283
    """old tests moved from ./testbzr."""
224
285
    def test_bzr(self):
225
286
        from os import chdir, mkdir
226
287
        from os.path import exists
227
 
        import os
228
288
 
229
289
        runbzr = self.runbzr
230
290
        backtick = self.backtick