~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/blackbox.py

- merge improved merge base selection from aaron
aaron.bentley@utoronto.ca-20050912025534-43d7275dd948e4ad

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
"""
28
28
 
29
29
import sys
30
 
from bzrlib.selftest import InTempDir, BzrTestBase
31
 
 
32
 
 
33
 
class ExternalBase(InTempDir):
34
 
 
 
30
import os
 
31
 
 
32
from bzrlib.selftest import TestCaseInTempDir, BzrTestBase
 
33
from bzrlib.branch import Branch
 
34
from bzrlib.commands import run_bzr
 
35
 
 
36
 
 
37
class ExternalBase(TestCaseInTempDir):
35
38
    def runbzr(self, args, retcode=0,backtick=False):
36
 
        try:
37
 
            import shutil
38
 
            from subprocess import call
39
 
        except ImportError, e:
40
 
            _need_subprocess()
41
 
            raise
42
 
 
43
39
        if isinstance(args, basestring):
44
40
            args = args.split()
45
41
 
50
46
            return self.runcmd(['python', self.BZRPATH,] + args,
51
47
                           retcode=retcode)
52
48
 
 
49
 
53
50
class TestCommands(ExternalBase):
54
51
 
55
52
    def test_help_commands(self):
60
57
        self.runbzr('commit -h')
61
58
 
62
59
    def test_init_branch(self):
63
 
        import os
64
60
        self.runbzr(['init'])
65
61
 
66
62
    def test_whoami(self):
127
123
        assert file('.bzrignore', 'rb').read() == '*.blah\ngarh\n'
128
124
 
129
125
    def test_revert(self):
130
 
        import os
131
126
        self.runbzr('init')
132
127
 
133
128
        file('hello', 'wt').write('foo')
178
173
        self.log(tmp_output)
179
174
        self.assertEquals(output, tmp_output)
180
175
 
 
176
    def example_branch(test):
 
177
        test.runbzr('init')
 
178
        file('hello', 'wt').write('foo')
 
179
        test.runbzr('add hello')
 
180
        test.runbzr('commit -m setup hello')
 
181
        file('goodbye', 'wt').write('baz')
 
182
        test.runbzr('add goodbye')
 
183
        test.runbzr('commit -m setup goodbye')
 
184
 
 
185
    def test_revert(self):
 
186
        self.example_branch()
 
187
        file('hello', 'wt').write('bar')
 
188
        file('goodbye', 'wt').write('qux')
 
189
        self.runbzr('revert hello')
 
190
        self.check_file_contents('hello', 'foo')
 
191
        self.check_file_contents('goodbye', 'qux')
 
192
        self.runbzr('revert')
 
193
        self.check_file_contents('goodbye', 'baz')
 
194
 
 
195
    def test_merge(self):
 
196
        from bzrlib.branch import Branch
 
197
        
 
198
        os.mkdir('a')
 
199
        os.chdir('a')
 
200
 
 
201
        self.example_branch()
 
202
        os.chdir('..')
 
203
        self.runbzr('branch a b')
 
204
        os.chdir('b')
 
205
        file('goodbye', 'wt').write('quux')
 
206
        self.runbzr(['commit',  '-m',  "more u's are always good"])
 
207
 
 
208
        os.chdir('../a')
 
209
        file('hello', 'wt').write('quuux')
 
210
        # We can't merge when there are in-tree changes
 
211
        self.runbzr('merge ../b', retcode=1)
 
212
        self.runbzr(['commit', '-m', "Like an epidemic of u's"])
 
213
        self.runbzr('merge ../b')
 
214
        self.check_file_contents('goodbye', 'quux')
 
215
        # Merging a branch pulls its revision into the tree
 
216
        a = Branch('.')
 
217
        b = Branch('../b')
 
218
        a.get_revision_xml(b.last_patch())
 
219
 
 
220
        self.log('pending merges: %s', a.pending_merges())
 
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
        os.chdir('..')
 
231
        self.runbzr('branch a b')
 
232
        os.chdir('b')
 
233
        self.runbzr('commit -m blah --unchanged')
 
234
        os.chdir('../a')
 
235
        a = Branch('.')
 
236
        b = Branch('../b')
 
237
        assert a.revision_history() == b.revision_history()[:-1]
 
238
        self.runbzr('pull ../b')
 
239
        assert a.revision_history() == b.revision_history()
 
240
        self.runbzr('commit -m blah2 --unchanged')
 
241
        os.chdir('../b')
 
242
        self.runbzr('commit -m blah3 --unchanged')
 
243
        self.runbzr('pull ../a', retcode=1)
 
244
        os.chdir('../a')
 
245
        self.runbzr('merge ../b')
 
246
        self.runbzr('commit -m blah4 --unchanged')
 
247
        os.chdir('../b')
 
248
        self.runbzr('pull ../a')
 
249
        assert a.revision_history()[-1] == b.revision_history()[-1]
 
250
        
 
251
 
 
252
    def test_add_reports(self):
 
253
        """add command prints the names of added files."""
 
254
        b = Branch('.', init=True)
 
255
        self.build_tree(['top.txt', 'dir/', 'dir/sub.txt'])
 
256
 
 
257
        from cStringIO import StringIO
 
258
        out = StringIO()
 
259
 
 
260
        ret = self.apply_redirected(None, out, None,
 
261
                                    run_bzr,
 
262
                                    ['add'])
 
263
        self.assertEquals(ret, 0)
 
264
 
 
265
        # the ordering is not defined at the moment
 
266
        results = sorted(out.getvalue().rstrip('\n').split('\n'))
 
267
        self.assertEquals(['added dir',
 
268
                           'added dir/sub.txt',
 
269
                           'added top.txt',],
 
270
                          results)
 
271
 
 
272
 
181
273
class OldTests(ExternalBase):
182
 
    # old tests moved from ./testbzr
 
274
    """old tests moved from ./testbzr."""
 
275
 
183
276
    def test_bzr(self):
184
277
        from os import chdir, mkdir
185
278
        from os.path import exists
186
 
        import os
187
279
 
188
280
        runbzr = self.runbzr
189
281
        backtick = self.backtick
347
439
        runbzr('log --forward')
348
440
 
349
441
        runbzr('info')
 
442