~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/blackbox.py

  • Committer: Martin Pool
  • Date: 2005-07-14 08:03:52 UTC
  • Revision ID: mbp@sourcefrog.net-20050714080352-d8631baf3620057d
- start doing new weave-merge algorithm

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
# along with this program; if not, write to the Free Software
16
16
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
17
 
18
 
# Mr. Smoketoomuch: I'm sorry?
19
 
# Mr. Bounder: You'd better cut down a little then.
20
 
# Mr. Smoketoomuch: Oh, I see! Smoke too much so I'd better cut down a little
21
 
#                   then!
22
18
 
23
19
"""Black-box tests for bzr.
24
20
 
25
21
These check that it behaves properly when it's invoked through the regular
26
 
command-line interface. This doesn't actually run a new interpreter but 
27
 
rather starts again from the run_bzr function.
 
22
command-line interface.
 
23
 
 
24
This always reinvokes bzr through a new Python interpreter, which is a
 
25
bit inefficient but arguably tests in a way more representative of how
 
26
it's normally invoked.
28
27
"""
29
28
 
30
 
 
31
 
# XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
32
 
# Note: Please don't add new tests here, it's too big and bulky.  Instead add
33
 
# them into small suites in bzrlib.tests.blackbox.test_FOO for the particular
34
 
# UI command/aspect that is being tested.
35
 
 
36
 
 
37
 
from cStringIO import StringIO
38
 
import os
39
 
import re
40
 
import sys
41
 
 
42
 
import bzrlib
43
 
from bzrlib.branch import Branch
44
 
import bzrlib.bzrdir as bzrdir
45
 
from bzrlib.errors import BzrCommandError
46
 
from bzrlib.osutils import (
47
 
    has_symlinks,
48
 
    pathjoin,
49
 
    rmtree,
50
 
    terminal_width,
51
 
    )
52
 
from bzrlib.tests.HTTPTestUtil import TestCaseWithWebserver
53
 
from bzrlib.tests.test_sftp_transport import TestCaseWithSFTPServer
54
 
from bzrlib.tests.blackbox import ExternalBase
55
 
from bzrlib.workingtree import WorkingTree
56
 
 
57
 
 
58
 
class TestCommands(ExternalBase):
59
 
 
60
 
    def test_whoami(self):
 
29
# this code was previously in testbzr
 
30
 
 
31
from unittest import TestCase
 
32
from bzrlib.selftest import TestBase, InTempDir
 
33
 
 
34
 
 
35
 
 
36
class ExternalBase(InTempDir):
 
37
    def runbzr(self, args, retcode=0):
 
38
        try:
 
39
            import shutil
 
40
            from subprocess import call
 
41
        except ImportError, e:
 
42
            _need_subprocess()
 
43
            raise
 
44
 
 
45
        if isinstance(args, basestring):
 
46
            args = args.split()
 
47
            
 
48
        return self.runcmd(['python', self.BZRPATH,] + args,
 
49
                           retcode=retcode)
 
50
 
 
51
 
 
52
 
 
53
class TestVersion(ExternalBase):
 
54
    def runTest(self):
 
55
        # output is intentionally passed through to stdout so that we
 
56
        # can see the version being tested
 
57
        self.runbzr(['version'])
 
58
 
 
59
 
 
60
 
 
61
class HelpCommands(ExternalBase):
 
62
    def runTest(self):
 
63
        self.runbzr('--help')
 
64
        self.runbzr('help')
 
65
        self.runbzr('help commands')
 
66
        self.runbzr('help help')
 
67
        self.runbzr('commit -h')
 
68
 
 
69
 
 
70
class InitBranch(ExternalBase):
 
71
    def runTest(self):
 
72
        import os
 
73
        self.runbzr(['init'])
 
74
 
 
75
 
 
76
 
 
77
class UserIdentity(ExternalBase):
 
78
    def runTest(self):
61
79
        # this should always identify something, if only "john@localhost"
62
80
        self.runbzr("whoami")
63
81
        self.runbzr("whoami --email")
64
 
 
65
 
        self.assertEquals(self.runbzr("whoami --email",
66
 
                                      backtick=True).count('@'), 1)
67
 
        
68
 
    def test_whoami_branch(self):
69
 
        """branch specific user identity works."""
70
 
        self.runbzr('init')
71
 
        b = bzrlib.branch.Branch.open('.')
72
 
        b.control_files.put_utf8('email', 'Branch Identity <branch@identi.ty>')
73
 
        bzr_email = os.environ.get('BZREMAIL')
74
 
        if bzr_email is not None:
75
 
            del os.environ['BZREMAIL']
76
 
        whoami = self.runbzr("whoami",backtick=True)
77
 
        whoami_email = self.runbzr("whoami --email",backtick=True)
78
 
        self.assertTrue(whoami.startswith('Branch Identity <branch@identi.ty>'))
79
 
        self.assertTrue(whoami_email.startswith('branch@identi.ty'))
80
 
        # Verify that the environment variable overrides the value 
81
 
        # in the file
82
 
        os.environ['BZREMAIL'] = 'Different ID <other@environ.ment>'
83
 
        whoami = self.runbzr("whoami",backtick=True)
84
 
        whoami_email = self.runbzr("whoami --email",backtick=True)
85
 
        self.assertTrue(whoami.startswith('Different ID <other@environ.ment>'))
86
 
        self.assertTrue(whoami_email.startswith('other@environ.ment'))
87
 
        if bzr_email is not None:
88
 
            os.environ['BZREMAIL'] = bzr_email
89
 
 
90
 
    def test_nick_command(self):
91
 
        """bzr nick for viewing, setting nicknames"""
92
 
        os.mkdir('me.dev')
93
 
        os.chdir('me.dev')
94
 
        self.runbzr('init')
95
 
        nick = self.runbzr("nick",backtick=True)
96
 
        self.assertEqual(nick, 'me.dev\n')
97
 
        nick = self.runbzr("nick moo")
98
 
        nick = self.runbzr("nick",backtick=True)
99
 
        self.assertEqual(nick, 'moo\n')
100
 
 
101
 
    def test_invalid_commands(self):
102
 
        self.runbzr("pants", retcode=3)
103
 
        self.runbzr("--pants off", retcode=3)
104
 
        self.runbzr("diff --message foo", retcode=3)
105
 
 
106
 
    def test_remove_deleted(self):
 
82
        self.assertEquals(self.backtick("bzr whoami --email").count('@'),
 
83
                          1)
 
84
 
 
85
 
 
86
class InvalidCommands(ExternalBase):
 
87
    def runTest(self):
 
88
        self.runbzr("pants", retcode=1)
 
89
        self.runbzr("--pants off", retcode=1)
 
90
        self.runbzr("diff --message foo", retcode=1)
 
91
 
 
92
 
 
93
 
 
94
class EmptyCommit(ExternalBase):
 
95
    def runTest(self):
107
96
        self.runbzr("init")
108
 
        self.build_tree(['a'])
109
 
        self.runbzr(['add', 'a'])
110
 
        self.runbzr(['commit', '-m', 'added a'])
111
 
        os.unlink('a')
112
 
        self.runbzr(['remove', 'a'])
113
 
 
114
 
    def test_ignore_patterns(self):
115
 
        self.runbzr('init')
116
 
        self.assertEquals(self.capture('unknowns'), '')
 
97
        self.build_tree(['hello.txt'])
 
98
        self.runbzr("commit -m empty", retcode=1)
 
99
        self.runbzr("add hello.txt")
 
100
        self.runbzr("commit -m added")
 
101
 
 
102
 
 
103
 
 
104
class IgnorePatterns(ExternalBase):
 
105
    def runTest(self):
 
106
        from bzrlib.branch import Branch
 
107
        
 
108
        b = Branch('.', init=True)
 
109
        self.assertEquals(list(b.unknowns()), [])
117
110
 
118
111
        file('foo.tmp', 'wt').write('tmp files are ignored')
119
 
        self.assertEquals(self.capture('unknowns'), '')
 
112
        self.assertEquals(list(b.unknowns()), [])
 
113
        assert self.backtick('bzr unknowns') == ''
120
114
 
121
115
        file('foo.c', 'wt').write('int main() {}')
122
 
        self.assertEquals(self.capture('unknowns'), 'foo.c\n')
 
116
        self.assertEquals(list(b.unknowns()), ['foo.c'])
 
117
        assert self.backtick('bzr unknowns') == 'foo.c\n'
123
118
 
124
119
        self.runbzr(['add', 'foo.c'])
125
 
        self.assertEquals(self.capture('unknowns'), '')
 
120
        assert self.backtick('bzr unknowns') == ''
126
121
 
127
122
        # 'ignore' works when creating the .bzignore file
128
123
        file('foo.blah', 'wt').write('blah')
129
 
        self.assertEquals(self.capture('unknowns'), 'foo.blah\n')
 
124
        self.assertEquals(list(b.unknowns()), ['foo.blah'])
130
125
        self.runbzr('ignore *.blah')
131
 
        self.assertEquals(self.capture('unknowns'), '')
132
 
        self.assertEquals(file('.bzrignore', 'rU').read(), '*.blah\n')
 
126
        self.assertEquals(list(b.unknowns()), [])
 
127
        assert file('.bzrignore', 'rb').read() == '*.blah\n'
133
128
 
134
129
        # 'ignore' works when then .bzrignore file already exists
135
130
        file('garh', 'wt').write('garh')
136
 
        self.assertEquals(self.capture('unknowns'), 'garh\n')
 
131
        self.assertEquals(list(b.unknowns()), ['garh'])
 
132
        assert self.backtick('bzr unknowns') == 'garh\n'
137
133
        self.runbzr('ignore garh')
138
 
        self.assertEquals(self.capture('unknowns'), '')
139
 
        self.assertEquals(file('.bzrignore', 'rU').read(), '*.blah\ngarh\n')
140
 
 
141
 
    def test_revert(self):
142
 
        self.runbzr('init')
143
 
 
144
 
        file('hello', 'wt').write('foo')
145
 
        self.runbzr('add hello')
146
 
        self.runbzr('commit -m setup hello')
147
 
 
148
 
        file('goodbye', 'wt').write('baz')
149
 
        self.runbzr('add goodbye')
150
 
        self.runbzr('commit -m setup goodbye')
151
 
 
152
 
        file('hello', 'wt').write('bar')
153
 
        file('goodbye', 'wt').write('qux')
154
 
        self.runbzr('revert hello')
155
 
        self.check_file_contents('hello', 'foo')
156
 
        self.check_file_contents('goodbye', 'qux')
157
 
        self.runbzr('revert')
158
 
        self.check_file_contents('goodbye', 'baz')
159
 
 
160
 
        os.mkdir('revertdir')
161
 
        self.runbzr('add revertdir')
162
 
        self.runbzr('commit -m f')
163
 
        os.rmdir('revertdir')
164
 
        self.runbzr('revert')
165
 
 
166
 
        if has_symlinks():
167
 
            os.symlink('/unlikely/to/exist', 'symlink')
168
 
            self.runbzr('add symlink')
169
 
            self.runbzr('commit -m f')
170
 
            os.unlink('symlink')
171
 
            self.runbzr('revert')
172
 
            self.failUnlessExists('symlink')
173
 
            os.unlink('symlink')
174
 
            os.symlink('a-different-path', 'symlink')
175
 
            self.runbzr('revert')
176
 
            self.assertEqual('/unlikely/to/exist',
177
 
                             os.readlink('symlink'))
178
 
        else:
179
 
            self.log("skipping revert symlink tests")
180
 
        
181
 
        file('hello', 'wt').write('xyz')
182
 
        self.runbzr('commit -m xyz hello')
183
 
        self.runbzr('revert -r 1 hello')
184
 
        self.check_file_contents('hello', 'foo')
185
 
        self.runbzr('revert hello')
186
 
        self.check_file_contents('hello', 'xyz')
187
 
        os.chdir('revertdir')
188
 
        self.runbzr('revert')
189
 
        os.chdir('..')
190
 
 
191
 
    def test_mv_modes(self):
192
 
        """Test two modes of operation for mv"""
193
 
        self.runbzr('init')
194
 
        self.build_tree(['a', 'c', 'subdir/'])
195
 
        self.run_bzr_captured(['add', self.test_dir])
196
 
        self.run_bzr_captured(['mv', 'a', 'b'])
197
 
        self.run_bzr_captured(['mv', 'b', 'subdir'])
198
 
        self.run_bzr_captured(['mv', 'subdir/b', 'a'])
199
 
        self.run_bzr_captured(['mv', 'a', 'c', 'subdir'])
200
 
        self.run_bzr_captured(['mv', 'subdir/a', 'subdir/newa'])
201
 
 
202
 
    def test_main_version(self):
203
 
        """Check output from version command and master option is reasonable"""
204
 
        # output is intentionally passed through to stdout so that we
205
 
        # can see the version being tested
206
 
        output = self.runbzr('version', backtick=1)
207
 
        self.log('bzr version output:')
208
 
        self.log(output)
209
 
        self.assert_(output.startswith('bzr (bazaar-ng) '))
210
 
        self.assertNotEqual(output.index('Canonical'), -1)
211
 
        # make sure --version is consistent
212
 
        tmp_output = self.runbzr('--version', backtick=1)
213
 
        self.log('bzr --version output:')
214
 
        self.log(tmp_output)
215
 
        self.assertEquals(output, tmp_output)
216
 
 
217
 
    def example_branch(test):
218
 
        test.runbzr('init')
219
 
        file('hello', 'wt').write('foo')
220
 
        test.runbzr('add hello')
221
 
        test.runbzr('commit -m setup hello')
222
 
        file('goodbye', 'wt').write('baz')
223
 
        test.runbzr('add goodbye')
224
 
        test.runbzr('commit -m setup goodbye')
225
 
 
226
 
    def test_export(self):
227
 
        os.mkdir('branch')
228
 
        os.chdir('branch')
229
 
        self.example_branch()
230
 
        self.runbzr('export ../latest')
231
 
        self.assertEqual(file('../latest/goodbye', 'rt').read(), 'baz')
232
 
        self.runbzr('export ../first -r 1')
233
 
        self.assert_(not os.path.exists('../first/goodbye'))
234
 
        self.assertEqual(file('../first/hello', 'rt').read(), 'foo')
235
 
        self.runbzr('export ../first.gz -r 1')
236
 
        self.assertEqual(file('../first.gz/hello', 'rt').read(), 'foo')
237
 
        self.runbzr('export ../first.bz2 -r 1')
238
 
        self.assertEqual(file('../first.bz2/hello', 'rt').read(), 'foo')
239
 
 
240
 
        from tarfile import TarFile
241
 
        self.runbzr('export ../first.tar -r 1')
242
 
        self.assert_(os.path.isfile('../first.tar'))
243
 
        tf = TarFile('../first.tar')
244
 
        self.assert_('first/hello' in tf.getnames(), tf.getnames())
245
 
        self.assertEqual(tf.extractfile('first/hello').read(), 'foo')
246
 
        self.runbzr('export ../first.tar.gz -r 1')
247
 
        self.assert_(os.path.isfile('../first.tar.gz'))
248
 
        self.runbzr('export ../first.tbz2 -r 1')
249
 
        self.assert_(os.path.isfile('../first.tbz2'))
250
 
        self.runbzr('export ../first.tar.bz2 -r 1')
251
 
        self.assert_(os.path.isfile('../first.tar.bz2'))
252
 
        self.runbzr('export ../first.tar.tbz2 -r 1')
253
 
        self.assert_(os.path.isfile('../first.tar.tbz2'))
254
 
 
255
 
        from bz2 import BZ2File
256
 
        tf = TarFile('../first.tar.tbz2', 
257
 
                     fileobj=BZ2File('../first.tar.tbz2', 'r'))
258
 
        self.assert_('first.tar/hello' in tf.getnames(), tf.getnames())
259
 
        self.assertEqual(tf.extractfile('first.tar/hello').read(), 'foo')
260
 
        self.runbzr('export ../first2.tar -r 1 --root pizza')
261
 
        tf = TarFile('../first2.tar')
262
 
        self.assert_('pizza/hello' in tf.getnames(), tf.getnames())
263
 
 
264
 
        from zipfile import ZipFile
265
 
        self.runbzr('export ../first.zip -r 1')
266
 
        self.failUnlessExists('../first.zip')
267
 
        zf = ZipFile('../first.zip')
268
 
        self.assert_('first/hello' in zf.namelist(), zf.namelist())
269
 
        self.assertEqual(zf.read('first/hello'), 'foo')
270
 
 
271
 
        self.runbzr('export ../first2.zip -r 1 --root pizza')
272
 
        zf = ZipFile('../first2.zip')
273
 
        self.assert_('pizza/hello' in zf.namelist(), zf.namelist())
274
 
        
275
 
        self.runbzr('export ../first-zip --format=zip -r 1')
276
 
        zf = ZipFile('../first-zip')
277
 
        self.assert_('first-zip/hello' in zf.namelist(), zf.namelist())
278
 
 
279
 
    def test_branch(self):
280
 
        """Branch from one branch to another."""
281
 
        os.mkdir('a')
282
 
        os.chdir('a')
283
 
        self.example_branch()
284
 
        os.chdir('..')
285
 
        self.runbzr('branch a b')
286
 
        b = bzrlib.branch.Branch.open('b')
287
 
        self.assertEqual('b\n', b.control_files.get_utf8('branch-name').read())
288
 
        self.runbzr('branch a c -r 1')
289
 
        os.chdir('b')
290
 
        self.runbzr('commit -m foo --unchanged')
291
 
        os.chdir('..')
292
 
 
293
 
    def test_branch_basis(self):
294
 
        # ensure that basis really does grab from the basis by having incomplete source
295
 
        tree = self.make_branch_and_tree('commit_tree')
296
 
        self.build_tree(['foo'], transport=tree.bzrdir.transport.clone('..'))
297
 
        tree.add('foo')
298
 
        tree.commit('revision 1', rev_id='1')
299
 
        source = self.make_branch_and_tree('source')
300
 
        # this gives us an incomplete repository
301
 
        tree.bzrdir.open_repository().copy_content_into(source.branch.repository)
302
 
        tree.commit('revision 2', rev_id='2', allow_pointless=True)
303
 
        tree.bzrdir.open_branch().copy_content_into(source.branch)
304
 
        tree.copy_content_into(source)
305
 
        self.assertFalse(source.branch.repository.has_revision('2'))
306
 
        dir = source.bzrdir
307
 
        self.runbzr('branch source target --basis commit_tree')
308
 
        target = bzrdir.BzrDir.open('target')
309
 
        self.assertEqual('2', target.open_branch().last_revision())
310
 
        self.assertEqual('2', target.open_workingtree().last_revision())
311
 
        self.assertTrue(target.open_branch().repository.has_revision('2'))
312
 
 
313
 
    def test_inventory(self):
314
 
        bzr = self.runbzr
315
 
        def output_equals(value, *args):
316
 
            out = self.runbzr(['inventory'] + list(args), backtick=True)
317
 
            self.assertEquals(out, value)
318
 
 
319
 
        bzr('init')
320
 
        open('a', 'wb').write('hello\n')
321
 
        os.mkdir('b')
322
 
 
323
 
        bzr('add a b')
324
 
        bzr('commit -m add')
325
 
 
326
 
        output_equals('a\n', '--kind', 'file')
327
 
        output_equals('b\n', '--kind', 'directory')        
328
 
 
329
 
    def test_ls(self):
330
 
        """Test the abilities of 'bzr ls'"""
331
 
        bzr = self.runbzr
332
 
        def bzrout(*args, **kwargs):
333
 
            kwargs['backtick'] = True
334
 
            return self.runbzr(*args, **kwargs)
335
 
 
336
 
        def ls_equals(value, *args):
337
 
            out = self.runbzr(['ls'] + list(args), backtick=True)
338
 
            self.assertEquals(out, value)
339
 
 
340
 
        bzr('init')
341
 
        open('a', 'wb').write('hello\n')
342
 
 
343
 
        # Can't supply both
344
 
        bzr('ls --verbose --null', retcode=3)
345
 
 
346
 
        ls_equals('a\n')
347
 
        ls_equals('?        a\n', '--verbose')
348
 
        ls_equals('a\n', '--unknown')
349
 
        ls_equals('', '--ignored')
350
 
        ls_equals('', '--versioned')
351
 
        ls_equals('a\n', '--unknown', '--ignored', '--versioned')
352
 
        ls_equals('', '--ignored', '--versioned')
353
 
        ls_equals('a\0', '--null')
354
 
 
355
 
        bzr('add a')
356
 
        ls_equals('V        a\n', '--verbose')
357
 
        bzr('commit -m add')
358
 
        
359
 
        os.mkdir('subdir')
360
 
        ls_equals('V        a\n'
361
 
                  '?        subdir/\n'
362
 
                  , '--verbose')
363
 
        open('subdir/b', 'wb').write('b\n')
364
 
        bzr('add')
365
 
        ls_equals('V        a\n'
366
 
                  'V        subdir/\n'
367
 
                  'V        subdir/b\n'
368
 
                  , '--verbose')
369
 
        bzr('commit -m subdir')
370
 
 
371
 
        ls_equals('a\n'
372
 
                  'subdir\n'
373
 
                  , '--non-recursive')
374
 
 
375
 
        ls_equals('V        a\n'
376
 
                  'V        subdir/\n'
377
 
                  , '--verbose', '--non-recursive')
378
 
 
379
 
        # Check what happens in a sub-directory
380
 
        os.chdir('subdir')
381
 
        ls_equals('b\n')
382
 
        ls_equals('b\0'
383
 
                  , '--null')
384
 
        ls_equals('a\n'
385
 
                  'subdir\n'
386
 
                  'subdir/b\n'
387
 
                  , '--from-root')
388
 
        ls_equals('a\0'
389
 
                  'subdir\0'
390
 
                  'subdir/b\0'
391
 
                  , '--from-root', '--null')
392
 
        ls_equals('a\n'
393
 
                  'subdir\n'
394
 
                  , '--from-root', '--non-recursive')
395
 
 
396
 
        os.chdir('..')
397
 
 
398
 
        # Check what happens when we supply a specific revision
399
 
        ls_equals('a\n', '--revision', '1')
400
 
        ls_equals('V        a\n'
401
 
                  , '--verbose', '--revision', '1')
402
 
 
403
 
        os.chdir('subdir')
404
 
        ls_equals('', '--revision', '1')
405
 
 
406
 
        # Now try to do ignored files.
407
 
        os.chdir('..')
408
 
        open('blah.py', 'wb').write('unknown\n')
409
 
        open('blah.pyo', 'wb').write('ignored\n')
410
 
        ls_equals('a\n'
411
 
                  'blah.py\n'
412
 
                  'blah.pyo\n'
413
 
                  'subdir\n'
414
 
                  'subdir/b\n')
415
 
        ls_equals('V        a\n'
416
 
                  '?        blah.py\n'
417
 
                  'I        blah.pyo\n'
418
 
                  'V        subdir/\n'
419
 
                  'V        subdir/b\n'
420
 
                  , '--verbose')
421
 
        ls_equals('blah.pyo\n'
422
 
                  , '--ignored')
423
 
        ls_equals('blah.py\n'
424
 
                  , '--unknown')
425
 
        ls_equals('a\n'
426
 
                  'subdir\n'
427
 
                  'subdir/b\n'
428
 
                  , '--versioned')
429
 
 
430
 
    def test_cat(self):
431
 
        self.runbzr('init')
432
 
        file("myfile", "wb").write("My contents\n")
433
 
        self.runbzr('add')
434
 
        self.runbzr('commit -m myfile')
435
 
        self.run_bzr_captured('cat -r 1 myfile'.split(' '))
436
 
 
437
 
    def test_pull_verbose(self):
438
 
        """Pull changes from one branch to another and watch the output."""
439
 
 
440
 
        os.mkdir('a')
441
 
        os.chdir('a')
442
 
 
443
 
        bzr = self.runbzr
444
 
        self.example_branch()
445
 
 
446
 
        os.chdir('..')
447
 
        bzr('branch a b')
448
 
        os.chdir('b')
449
 
        open('b', 'wb').write('else\n')
450
 
        bzr('add b')
451
 
        bzr(['commit', '-m', 'added b'])
452
 
 
453
 
        os.chdir('../a')
454
 
        out = bzr('pull --verbose ../b', backtick=True)
455
 
        self.failIfEqual(out.find('Added Revisions:'), -1)
456
 
        self.failIfEqual(out.find('message:\n  added b'), -1)
457
 
        self.failIfEqual(out.find('added b'), -1)
458
 
 
459
 
        # Check that --overwrite --verbose prints out the removed entries
460
 
        bzr('commit -m foo --unchanged')
461
 
        os.chdir('../b')
462
 
        bzr('commit -m baz --unchanged')
463
 
        bzr('pull ../a', retcode=3)
464
 
        out = bzr('pull --overwrite --verbose ../a', backtick=1)
465
 
 
466
 
        remove_loc = out.find('Removed Revisions:')
467
 
        self.failIfEqual(remove_loc, -1)
468
 
        added_loc = out.find('Added Revisions:')
469
 
        self.failIfEqual(added_loc, -1)
470
 
 
471
 
        removed_message = out.find('message:\n  baz')
472
 
        self.failIfEqual(removed_message, -1)
473
 
        self.failUnless(remove_loc < removed_message < added_loc)
474
 
 
475
 
        added_message = out.find('message:\n  foo')
476
 
        self.failIfEqual(added_message, -1)
477
 
        self.failUnless(added_loc < added_message)
478
 
        
479
 
    def test_locations(self):
480
 
        """Using and remembering different locations"""
481
 
        os.mkdir('a')
482
 
        os.chdir('a')
483
 
        self.runbzr('init')
484
 
        self.runbzr('commit -m unchanged --unchanged')
485
 
        self.runbzr('pull', retcode=3)
486
 
        self.runbzr('merge', retcode=3)
487
 
        self.runbzr('branch . ../b')
488
 
        os.chdir('../b')
489
 
        self.runbzr('pull')
490
 
        self.runbzr('branch . ../c')
491
 
        self.runbzr('pull ../c')
492
 
        self.runbzr('merge')
493
 
        os.chdir('../a')
494
 
        self.runbzr('pull ../b')
495
 
        self.runbzr('pull')
496
 
        self.runbzr('pull ../c')
497
 
        self.runbzr('branch ../c ../d')
498
 
        rmtree('../c')
499
 
        self.runbzr('pull')
500
 
        os.chdir('../b')
501
 
        self.runbzr('pull')
502
 
        os.chdir('../d')
503
 
        self.runbzr('pull', retcode=3)
504
 
        self.runbzr('pull ../a --remember')
505
 
        self.runbzr('pull')
506
 
        
507
 
    def test_unknown_command(self):
508
 
        """Handling of unknown command."""
509
 
        out, err = self.run_bzr_captured(['fluffy-badger'],
510
 
                                         retcode=3)
511
 
        self.assertEquals(out, '')
512
 
        err.index('unknown command')
513
 
 
514
 
    def create_conflicts(self):
515
 
        """Create a conflicted tree"""
516
 
        os.mkdir('base')
517
 
        os.chdir('base')
518
 
        file('hello', 'wb').write("hi world")
519
 
        file('answer', 'wb').write("42")
520
 
        self.runbzr('init')
521
 
        self.runbzr('add')
522
 
        self.runbzr('commit -m base')
523
 
        self.runbzr('branch . ../other')
524
 
        self.runbzr('branch . ../this')
525
 
        os.chdir('../other')
526
 
        file('hello', 'wb').write("Hello.")
527
 
        file('answer', 'wb').write("Is anyone there?")
528
 
        self.runbzr('commit -m other')
529
 
        os.chdir('../this')
530
 
        file('hello', 'wb').write("Hello, world")
531
 
        self.runbzr('mv answer question')
532
 
        file('question', 'wb').write("What do you get when you multiply six"
533
 
                                   "times nine?")
534
 
        self.runbzr('commit -m this')
535
 
 
536
 
    def test_remerge(self):
537
 
        """Remerge command works as expected"""
538
 
        self.create_conflicts()
539
 
        self.runbzr('merge ../other --show-base', retcode=1)
540
 
        conflict_text = file('hello').read()
541
 
        assert '|||||||' in conflict_text
542
 
        assert 'hi world' in conflict_text
543
 
        self.runbzr('remerge', retcode=1)
544
 
        conflict_text = file('hello').read()
545
 
        assert '|||||||' not in conflict_text
546
 
        assert 'hi world' not in conflict_text
547
 
        os.unlink('hello.OTHER')
548
 
        os.unlink('question.OTHER')
549
 
        self.runbzr('remerge jello --merge-type weave', retcode=3)
550
 
        self.runbzr('remerge hello --merge-type weave', retcode=1)
551
 
        assert os.path.exists('hello.OTHER')
552
 
        self.assertIs(False, os.path.exists('question.OTHER'))
553
 
        file_id = self.runbzr('file-id hello')
554
 
        file_id = self.runbzr('file-id hello.THIS', retcode=3)
555
 
        self.runbzr('remerge --merge-type weave', retcode=1)
556
 
        assert os.path.exists('hello.OTHER')
557
 
        assert not os.path.exists('hello.BASE')
558
 
        assert '|||||||' not in conflict_text
559
 
        assert 'hi world' not in conflict_text
560
 
        self.runbzr('remerge . --merge-type weave --show-base', retcode=3)
561
 
        self.runbzr('remerge . --show-base --reprocess', retcode=3)
562
 
        self.runbzr('remerge . --merge-type weave --reprocess', retcode=1)
563
 
        self.runbzr('remerge hello --show-base', retcode=1)
564
 
        self.runbzr('remerge hello --reprocess', retcode=1)
565
 
        self.runbzr('resolve --all')
566
 
        self.runbzr('commit -m done',)
567
 
        self.runbzr('remerge', retcode=3)
568
 
 
569
 
    def test_status(self):
570
 
        os.mkdir('branch1')
571
 
        os.chdir('branch1')
572
 
        self.runbzr('init')
573
 
        self.runbzr('commit --unchanged --message f')
574
 
        self.runbzr('branch . ../branch2')
575
 
        self.runbzr('branch . ../branch3')
576
 
        self.runbzr('commit --unchanged --message peter')
577
 
        os.chdir('../branch2')
578
 
        self.runbzr('merge ../branch1')
579
 
        self.runbzr('commit --unchanged --message pumpkin')
580
 
        os.chdir('../branch3')
581
 
        self.runbzr('merge ../branch2')
582
 
        message = self.capture('status')
583
 
 
584
 
 
585
 
    def test_conflicts(self):
586
 
        """Handling of merge conflicts"""
587
 
        self.create_conflicts()
588
 
        self.runbzr('merge ../other --show-base', retcode=1)
589
 
        conflict_text = file('hello').read()
590
 
        self.assert_('<<<<<<<' in conflict_text)
591
 
        self.assert_('>>>>>>>' in conflict_text)
592
 
        self.assert_('=======' in conflict_text)
593
 
        self.assert_('|||||||' in conflict_text)
594
 
        self.assert_('hi world' in conflict_text)
595
 
        self.runbzr('revert')
596
 
        self.runbzr('resolve --all')
597
 
        self.runbzr('merge ../other', retcode=1)
598
 
        conflict_text = file('hello').read()
599
 
        self.assert_('|||||||' not in conflict_text)
600
 
        self.assert_('hi world' not in conflict_text)
601
 
        result = self.runbzr('conflicts', backtick=1)
602
 
        self.assertEquals(result, "Text conflict in hello\nText conflict in"
603
 
                                  " question\n")
604
 
        result = self.runbzr('status', backtick=1)
605
 
        self.assert_("conflicts:\n  Text conflict in hello\n"
606
 
                     "  Text conflict in question\n" in result, result)
607
 
        self.runbzr('resolve hello')
608
 
        result = self.runbzr('conflicts', backtick=1)
609
 
        self.assertEquals(result, "Text conflict in question\n")
610
 
        self.runbzr('commit -m conflicts', retcode=3)
611
 
        self.runbzr('resolve --all')
612
 
        result = self.runbzr('conflicts', backtick=1)
613
 
        self.runbzr('commit -m conflicts')
614
 
        self.assertEquals(result, "")
615
 
 
616
 
    def test_push(self):
617
 
        # create a source branch
618
 
        os.mkdir('my-branch')
619
 
        os.chdir('my-branch')
620
 
        self.example_branch()
621
 
 
622
 
        # with no push target, fail
623
 
        self.runbzr('push', retcode=3)
624
 
        # with an explicit target work
625
 
        self.runbzr('push ../output-branch')
626
 
        # with an implicit target work
627
 
        self.runbzr('push')
628
 
        # nothing missing
629
 
        self.runbzr('missing ../output-branch')
630
 
        # advance this branch
631
 
        self.runbzr('commit --unchanged -m unchanged')
632
 
 
633
 
        os.chdir('../output-branch')
634
 
        # There is no longer a difference as long as we have
635
 
        # access to the working tree
636
 
        self.runbzr('diff')
637
 
 
638
 
        # But we should be missing a revision
639
 
        self.runbzr('missing ../my-branch', retcode=1)
640
 
 
641
 
        # diverge the branches
642
 
        self.runbzr('commit --unchanged -m unchanged')
643
 
        os.chdir('../my-branch')
644
 
        # cannot push now
645
 
        self.runbzr('push', retcode=3)
646
 
        # and there are difference
647
 
        self.runbzr('missing ../output-branch', retcode=1)
648
 
        self.runbzr('missing --verbose ../output-branch', retcode=1)
649
 
        # but we can force a push
650
 
        self.runbzr('push --overwrite')
651
 
        # nothing missing
652
 
        self.runbzr('missing ../output-branch')
653
 
        
654
 
        # pushing to a new dir with no parent should fail
655
 
        self.runbzr('push ../missing/new-branch', retcode=3)
656
 
        # unless we provide --create-prefix
657
 
        self.runbzr('push --create-prefix ../missing/new-branch')
658
 
        # nothing missing
659
 
        self.runbzr('missing ../missing/new-branch')
660
 
 
661
 
    def test_external_command(self):
662
 
        """Test that external commands can be run by setting the path
663
 
        """
664
 
        # We don't at present run bzr in a subprocess for blackbox tests, and so 
665
 
        # don't really capture stdout, only the internal python stream.
666
 
        # Therefore we don't use a subcommand that produces any output or does
667
 
        # anything -- we just check that it can be run successfully.  
668
 
        cmd_name = 'test-command'
669
 
        if sys.platform == 'win32':
670
 
            cmd_name += '.bat'
671
 
        oldpath = os.environ.get('BZRPATH', None)
672
 
        bzr = self.capture
673
 
        try:
674
 
            if os.environ.has_key('BZRPATH'):
675
 
                del os.environ['BZRPATH']
676
 
 
677
 
            f = file(cmd_name, 'wb')
678
 
            if sys.platform == 'win32':
679
 
                f.write('@echo off\n')
680
 
            else:
681
 
                f.write('#!/bin/sh\n')
682
 
            # f.write('echo Hello from test-command')
683
 
            f.close()
684
 
            os.chmod(cmd_name, 0755)
685
 
 
686
 
            # It should not find the command in the local 
687
 
            # directory by default, since it is not in my path
688
 
            bzr(cmd_name, retcode=3)
689
 
 
690
 
            # Now put it into my path
691
 
            os.environ['BZRPATH'] = '.'
692
 
 
693
 
            bzr(cmd_name)
694
 
 
695
 
            # Make sure empty path elements are ignored
696
 
            os.environ['BZRPATH'] = os.pathsep
697
 
 
698
 
            bzr(cmd_name, retcode=3)
699
 
 
700
 
        finally:
701
 
            if oldpath:
702
 
                os.environ['BZRPATH'] = oldpath
703
 
 
704
 
 
705
 
def listdir_sorted(dir):
706
 
    L = os.listdir(dir)
707
 
    L.sort()
708
 
    return L
 
134
        self.assertEquals(list(b.unknowns()), [])
 
135
        assert file('.bzrignore', 'rb').read() == '*.blah\ngarh\n'
 
136
        
 
137
 
709
138
 
710
139
 
711
140
class OldTests(ExternalBase):
712
 
    """old tests moved from ./testbzr."""
713
 
 
714
 
    def test_bzr(self):
 
141
    # old tests moved from ./testbzr
 
142
    def runTest(self):
715
143
        from os import chdir, mkdir
716
144
        from os.path import exists
 
145
        import os
717
146
 
718
147
        runbzr = self.runbzr
719
 
        capture = self.capture
 
148
        backtick = self.backtick
720
149
        progress = self.log
721
150
 
722
151
        progress("basic branch creation")
724
153
        chdir('branch1')
725
154
        runbzr('init')
726
155
 
727
 
        self.assertEquals(capture('root').rstrip(),
728
 
                          pathjoin(self.test_dir, 'branch1'))
 
156
        self.assertEquals(backtick('bzr root').rstrip(),
 
157
                          os.path.join(self.test_dir, 'branch1'))
729
158
 
730
159
        progress("status of new file")
731
160
 
733
162
        f.write('hello world!\n')
734
163
        f.close()
735
164
 
736
 
        self.assertEquals(capture('unknowns'), 'test.txt\n')
737
 
 
738
 
        out = capture("status")
739
 
        self.assertEquals(out, 'unknown:\n  test.txt\n')
740
 
 
741
 
        out = capture("status --all")
742
 
        self.assertEquals(out, "unknown:\n  test.txt\n")
743
 
 
744
 
        out = capture("status test.txt --all")
745
 
        self.assertEquals(out, "unknown:\n  test.txt\n")
 
165
        out = backtick("bzr unknowns")
 
166
        self.assertEquals(out, 'test.txt\n')
 
167
 
 
168
        out = backtick("bzr status")
 
169
        assert out == 'unknown:\n  test.txt\n'
 
170
 
 
171
        out = backtick("bzr status --all")
 
172
        assert out == "unknown:\n  test.txt\n"
 
173
 
 
174
        out = backtick("bzr status test.txt --all")
 
175
        assert out == "unknown:\n  test.txt\n"
746
176
 
747
177
        f = file('test2.txt', 'wt')
748
178
        f.write('goodbye cruel world...\n')
749
179
        f.close()
750
180
 
751
 
        out = capture("status test.txt")
752
 
        self.assertEquals(out, "unknown:\n  test.txt\n")
 
181
        out = backtick("bzr status test.txt")
 
182
        assert out == "unknown:\n  test.txt\n"
753
183
 
754
 
        out = capture("status")
755
 
        self.assertEquals(out, ("unknown:\n" "  test.txt\n" "  test2.txt\n"))
 
184
        out = backtick("bzr status")
 
185
        assert out == ("unknown:\n"
 
186
                       "  test.txt\n"
 
187
                       "  test2.txt\n")
756
188
 
757
189
        os.unlink('test2.txt')
758
190
 
759
191
        progress("command aliases")
760
 
        out = capture("st --all")
761
 
        self.assertEquals(out, ("unknown:\n" "  test.txt\n"))
 
192
        out = backtick("bzr st --all")
 
193
        assert out == ("unknown:\n"
 
194
                       "  test.txt\n")
762
195
 
763
 
        out = capture("stat")
764
 
        self.assertEquals(out, ("unknown:\n" "  test.txt\n"))
 
196
        out = backtick("bzr stat")
 
197
        assert out == ("unknown:\n"
 
198
                       "  test.txt\n")
765
199
 
766
200
        progress("command help")
767
201
        runbzr("help st")
768
202
        runbzr("help")
769
203
        runbzr("help commands")
770
 
        runbzr("help slartibartfast", 3)
 
204
        runbzr("help slartibartfast", 1)
771
205
 
772
 
        out = capture("help ci")
 
206
        out = backtick("bzr help ci")
773
207
        out.index('aliases: ')
774
208
 
775
209
        progress("can't rename unversioned file")
776
 
        runbzr("rename test.txt new-test.txt", 3)
 
210
        runbzr("rename test.txt new-test.txt", 1)
777
211
 
778
212
        progress("adding a file")
779
213
 
780
214
        runbzr("add test.txt")
781
 
        self.assertEquals(capture("unknowns"), '')
782
 
        self.assertEquals(capture("status --all"), ("added:\n" "  test.txt\n"))
 
215
        assert backtick("bzr unknowns") == ''
 
216
        assert backtick("bzr status --all") == ("added:\n"
 
217
                                                "  test.txt\n")
783
218
 
784
219
        progress("rename newly-added file")
785
220
        runbzr("rename test.txt hello.txt")
786
 
        self.assert_(os.path.exists("hello.txt"))
787
 
        self.assert_(not os.path.exists("test.txt"))
 
221
        assert os.path.exists("hello.txt")
 
222
        assert not os.path.exists("test.txt")
788
223
 
789
 
        self.assertEquals(capture("revno"), '0\n')
 
224
        assert backtick("bzr revno") == '0\n'
790
225
 
791
226
        progress("add first revision")
792
227
        runbzr(['commit', '-m', 'add first revision'])
793
228
 
794
229
        progress("more complex renames")
795
230
        os.mkdir("sub1")
796
 
        runbzr("rename hello.txt sub1", 3)
797
 
        runbzr("rename hello.txt sub1/hello.txt", 3)
798
 
        runbzr("move hello.txt sub1", 3)
 
231
        runbzr("rename hello.txt sub1", 1)
 
232
        runbzr("rename hello.txt sub1/hello.txt", 1)
 
233
        runbzr("move hello.txt sub1", 1)
799
234
 
800
235
        runbzr("add sub1")
801
236
        runbzr("rename sub1 sub2")
802
237
        runbzr("move hello.txt sub2")
803
 
        self.assertEqual(capture("relpath sub2/hello.txt"),
804
 
                         pathjoin("sub2", "hello.txt\n"))
 
238
        assert backtick("bzr relpath sub2/hello.txt") == os.path.join("sub2", "hello.txt\n")
805
239
 
806
 
        self.assert_(exists("sub2"))
807
 
        self.assert_(exists("sub2/hello.txt"))
808
 
        self.assert_(not exists("sub1"))
809
 
        self.assert_(not exists("hello.txt"))
 
240
        assert exists("sub2")
 
241
        assert exists("sub2/hello.txt")
 
242
        assert not exists("sub1")
 
243
        assert not exists("hello.txt")
810
244
 
811
245
        runbzr(['commit', '-m', 'commit with some things moved to subdirs'])
812
246
 
813
247
        mkdir("sub1")
814
248
        runbzr('add sub1')
815
249
        runbzr('move sub2/hello.txt sub1')
816
 
        self.assert_(not exists('sub2/hello.txt'))
817
 
        self.assert_(exists('sub1/hello.txt'))
 
250
        assert not exists('sub2/hello.txt')
 
251
        assert exists('sub1/hello.txt')
818
252
        runbzr('move sub2 sub1')
819
 
        self.assert_(not exists('sub2'))
820
 
        self.assert_(exists('sub1/sub2'))
 
253
        assert not exists('sub2')
 
254
        assert exists('sub1/sub2')
821
255
 
822
256
        runbzr(['commit', '-m', 'rename nested subdirectories'])
823
257
 
824
258
        chdir('sub1/sub2')
825
 
        self.assertEquals(capture('root')[:-1],
826
 
                          pathjoin(self.test_dir, 'branch1'))
 
259
        self.assertEquals(backtick('bzr root')[:-1],
 
260
                          os.path.join(self.test_dir, 'branch1'))
827
261
        runbzr('move ../hello.txt .')
828
 
        self.assert_(exists('./hello.txt'))
829
 
        self.assertEquals(capture('relpath hello.txt'),
830
 
                          pathjoin('sub1', 'sub2', 'hello.txt') + '\n')
831
 
        self.assertEquals(capture('relpath ../../sub1/sub2/hello.txt'), pathjoin('sub1', 'sub2', 'hello.txt\n'))
 
262
        assert exists('./hello.txt')
 
263
        assert backtick('bzr relpath hello.txt') == os.path.join('sub1', 'sub2', 'hello.txt\n')
 
264
        assert backtick('bzr relpath ../../sub1/sub2/hello.txt') == os.path.join('sub1', 'sub2', 'hello.txt\n')
832
265
        runbzr(['commit', '-m', 'move to parent directory'])
833
266
        chdir('..')
834
 
        self.assertEquals(capture('relpath sub2/hello.txt'), pathjoin('sub1', 'sub2', 'hello.txt\n'))
 
267
        assert backtick('bzr relpath sub2/hello.txt') == os.path.join('sub1', 'sub2', 'hello.txt\n')
835
268
 
836
269
        runbzr('move sub2/hello.txt .')
837
 
        self.assert_(exists('hello.txt'))
 
270
        assert exists('hello.txt')
838
271
 
839
272
        f = file('hello.txt', 'wt')
840
273
        f.write('some nice new content\n')
841
274
        f.close()
842
275
 
843
276
        f = file('msg.tmp', 'wt')
844
 
        f.write('this is my new commit\nand it has multiple lines, for fun')
 
277
        f.write('this is my new commit\n')
845
278
        f.close()
846
279
 
847
280
        runbzr('commit -F msg.tmp')
848
281
 
849
 
        self.assertEquals(capture('revno'), '5\n')
 
282
        assert backtick('bzr revno') == '5\n'
850
283
        runbzr('export -r 5 export-5.tmp')
851
284
        runbzr('export export.tmp')
852
285
 
853
286
        runbzr('log')
854
287
        runbzr('log -v')
855
 
        runbzr('log -v --forward')
856
 
        runbzr('log -m', retcode=3)
857
 
        log_out = capture('log -m commit')
858
 
        self.assert_("this is my new commit\n  and" in log_out)
859
 
        self.assert_("rename nested" not in log_out)
860
 
        self.assert_('revision-id' not in log_out)
861
 
        self.assert_('revision-id' in capture('log --show-ids -m commit'))
862
 
 
863
 
        log_out = capture('log --line')
864
 
        # determine the widest line we want
865
 
        max_width = terminal_width() - 1
866
 
        for line in log_out.splitlines():
867
 
            self.assert_(len(line) <= max_width, len(line))
868
 
        self.assert_("this is my new commit and" in log_out)
 
288
 
 
289
 
869
290
 
870
291
        progress("file with spaces in name")
871
292
        mkdir('sub directory')
872
293
        file('sub directory/file with spaces ', 'wt').write('see how this works\n')
873
294
        runbzr('add .')
874
 
        runbzr('diff', retcode=1)
 
295
        runbzr('diff')
875
296
        runbzr('commit -m add-spaces')
876
297
        runbzr('check')
877
298
 
880
301
 
881
302
        runbzr('info')
882
303
 
883
 
        if has_symlinks():
884
 
            progress("symlinks")
885
 
            mkdir('symlinks')
886
 
            chdir('symlinks')
887
 
            runbzr('init')
888
 
            os.symlink("NOWHERE1", "link1")
889
 
            runbzr('add link1')
890
 
            self.assertEquals(self.capture('unknowns'), '')
891
 
            runbzr(['commit', '-m', '1: added symlink link1'])
892
 
    
893
 
            mkdir('d1')
894
 
            runbzr('add d1')
895
 
            self.assertEquals(self.capture('unknowns'), '')
896
 
            os.symlink("NOWHERE2", "d1/link2")
897
 
            self.assertEquals(self.capture('unknowns'), 'd1/link2\n')
898
 
            # is d1/link2 found when adding d1
899
 
            runbzr('add d1')
900
 
            self.assertEquals(self.capture('unknowns'), '')
901
 
            os.symlink("NOWHERE3", "d1/link3")
902
 
            self.assertEquals(self.capture('unknowns'), 'd1/link3\n')
903
 
            runbzr(['commit', '-m', '2: added dir, symlink'])
904
 
    
905
 
            runbzr('rename d1 d2')
906
 
            runbzr('move d2/link2 .')
907
 
            runbzr('move link1 d2')
908
 
            self.assertEquals(os.readlink("./link2"), "NOWHERE2")
909
 
            self.assertEquals(os.readlink("d2/link1"), "NOWHERE1")
910
 
            runbzr('add d2/link3')
911
 
            runbzr('diff', retcode=1)
912
 
            runbzr(['commit', '-m', '3: rename of dir, move symlinks, add link3'])
913
 
    
914
 
            os.unlink("link2")
915
 
            os.symlink("TARGET 2", "link2")
916
 
            os.unlink("d2/link1")
917
 
            os.symlink("TARGET 1", "d2/link1")
918
 
            runbzr('diff', retcode=1)
919
 
            self.assertEquals(self.capture("relpath d2/link1"), "d2/link1\n")
920
 
            runbzr(['commit', '-m', '4: retarget of two links'])
921
 
    
922
 
            runbzr('remove d2/link1')
923
 
            self.assertEquals(self.capture('unknowns'), 'd2/link1\n')
924
 
            runbzr(['commit', '-m', '5: remove d2/link1'])
925
 
            # try with the rm alias
926
 
            runbzr('add d2/link1')
927
 
            runbzr(['commit', '-m', '6: add d2/link1'])
928
 
            runbzr('rm d2/link1')
929
 
            self.assertEquals(self.capture('unknowns'), 'd2/link1\n')
930
 
            runbzr(['commit', '-m', '7: remove d2/link1'])
931
 
    
932
 
            os.mkdir("d1")
933
 
            runbzr('add d1')
934
 
            runbzr('rename d2/link3 d1/link3new')
935
 
            self.assertEquals(self.capture('unknowns'), 'd2/link1\n')
936
 
            runbzr(['commit', '-m', '8: remove d2/link1, move/rename link3'])
937
 
            
938
 
            runbzr(['check'])
939
 
            
940
 
            runbzr(['export', '-r', '1', 'exp1.tmp'])
941
 
            chdir("exp1.tmp")
942
 
            self.assertEquals(listdir_sorted("."), [ "link1" ])
943
 
            self.assertEquals(os.readlink("link1"), "NOWHERE1")
944
 
            chdir("..")
945
 
            
946
 
            runbzr(['export', '-r', '2', 'exp2.tmp'])
947
 
            chdir("exp2.tmp")
948
 
            self.assertEquals(listdir_sorted("."), [ "d1", "link1" ])
949
 
            chdir("..")
950
 
            
951
 
            runbzr(['export', '-r', '3', 'exp3.tmp'])
952
 
            chdir("exp3.tmp")
953
 
            self.assertEquals(listdir_sorted("."), [ "d2", "link2" ])
954
 
            self.assertEquals(listdir_sorted("d2"), [ "link1", "link3" ])
955
 
            self.assertEquals(os.readlink("d2/link1"), "NOWHERE1")
956
 
            self.assertEquals(os.readlink("link2")   , "NOWHERE2")
957
 
            chdir("..")
958
 
            
959
 
            runbzr(['export', '-r', '4', 'exp4.tmp'])
960
 
            chdir("exp4.tmp")
961
 
            self.assertEquals(listdir_sorted("."), [ "d2", "link2" ])
962
 
            self.assertEquals(os.readlink("d2/link1"), "TARGET 1")
963
 
            self.assertEquals(os.readlink("link2")   , "TARGET 2")
964
 
            self.assertEquals(listdir_sorted("d2"), [ "link1", "link3" ])
965
 
            chdir("..")
966
 
            
967
 
            runbzr(['export', '-r', '5', 'exp5.tmp'])
968
 
            chdir("exp5.tmp")
969
 
            self.assertEquals(listdir_sorted("."), [ "d2", "link2" ])
970
 
            self.assert_(os.path.islink("link2"))
971
 
            self.assert_(listdir_sorted("d2")== [ "link3" ])
972
 
            chdir("..")
973
 
            
974
 
            runbzr(['export', '-r', '8', 'exp6.tmp'])
975
 
            chdir("exp6.tmp")
976
 
            self.assertEqual(listdir_sorted("."), [ "d1", "d2", "link2"])
977
 
            self.assertEquals(listdir_sorted("d1"), [ "link3new" ])
978
 
            self.assertEquals(listdir_sorted("d2"), [])
979
 
            self.assertEquals(os.readlink("d1/link3new"), "NOWHERE3")
980
 
            chdir("..")
981
 
        else:
982
 
            progress("skipping symlink tests")
983
 
 
984
 
 
985
 
class RemoteTests(object):
986
 
    """Test bzr ui commands against remote branches."""
987
 
 
988
 
    def test_branch(self):
989
 
        os.mkdir('from')
990
 
        wt = self.make_branch_and_tree('from')
991
 
        branch = wt.branch
992
 
        wt.commit('empty commit for nonsense', allow_pointless=True)
993
 
        url = self.get_readonly_url('from')
994
 
        self.run_bzr('branch', url, 'to')
995
 
        branch = Branch.open('to')
996
 
        self.assertEqual(1, len(branch.revision_history()))
997
 
        # the branch should be set in to to from
998
 
        self.assertEqual(url + '/', branch.get_parent())
999
 
 
1000
 
    def test_log(self):
1001
 
        self.build_tree(['branch/', 'branch/file'])
1002
 
        self.capture('init branch')
1003
 
        self.capture('add branch/file')
1004
 
        self.capture('commit -m foo branch')
1005
 
        url = self.get_readonly_url('branch/file')
1006
 
        output = self.capture('log %s' % url)
1007
 
        self.assertEqual(8, len(output.split('\n')))
 
304
 
 
305
 
 
306
 
 
307
 
 
308
 
 
309
        chdir('..')
 
310
        chdir('..')
 
311
        progress('branch')
 
312
        assert os.path.exists('branch1')
 
313
        assert not os.path.exists('branch2')
 
314
        # Can't create a branch if it already exists
 
315
        runbzr('branch branch1', retcode=1)
 
316
        # Can't create a branch if its parent doesn't exist
 
317
        runbzr('branch /unlikely/to/exist', retcode=1)
 
318
        runbzr('branch branch1 branch2')
 
319
 
 
320
        progress("pull")
 
321
        chdir('branch1')
 
322
        runbzr('pull', retcode=1)
 
323
        runbzr('pull ../branch2')
 
324
        chdir('.bzr')
 
325
        runbzr('pull')
 
326
        runbzr('commit --unchanged -m empty')
 
327
        runbzr('pull')
 
328
        chdir('../../branch2')
 
329
        runbzr('pull')
 
330
        runbzr('commit --unchanged -m empty')
 
331
        chdir('../branch1')
 
332
        runbzr('commit --unchanged -m empty')
 
333
        runbzr('pull', retcode=1)
 
334
        chdir ('..')
 
335
 
 
336
        progress('status after remove')
 
337
        mkdir('status-after-remove')
 
338
        # see mail from William Dodé, 2005-05-25
 
339
        # $ bzr init; touch a; bzr add a; bzr commit -m "add a"
 
340
        #     * looking for changes...
 
341
        #     added a
 
342
        #     * commited r1
 
343
        #     $ bzr remove a
 
344
        #     $ bzr status
 
345
        #     bzr: local variable 'kind' referenced before assignment
 
346
        #     at /vrac/python/bazaar-ng/bzrlib/diff.py:286 in compare_trees()
 
347
        #     see ~/.bzr.log for debug information
 
348
        chdir('status-after-remove')
 
349
        runbzr('init')
 
350
        file('a', 'w').write('foo')
 
351
        runbzr('add a')
 
352
        runbzr(['commit', '-m', 'add a'])
 
353
        runbzr('remove a')
 
354
        runbzr('status')
 
355
 
 
356
        chdir('..')
 
357
 
 
358
 
 
359
 
 
360
        progress("recursive and non-recursive add")
 
361
        mkdir('no-recurse')
 
362
        chdir('no-recurse')
 
363
        runbzr('init')
 
364
        mkdir('foo')
 
365
        fp = os.path.join('foo', 'test.txt')
 
366
        f = file(fp, 'w')
 
367
        f.write('hello!\n')
 
368
        f.close()
 
369
        runbzr('add --no-recurse foo')
 
370
        runbzr('file-id foo')
 
371
        runbzr('file-id ' + fp, 1)      # not versioned yet
 
372
        runbzr('commit -m add-dir-only')
 
373
 
 
374
        self.runbzr('file-id ' + fp, 1)      # still not versioned 
 
375
 
 
376
        self.runbzr('add foo')
 
377
        self.runbzr('file-id ' + fp)
 
378
        self.runbzr('commit -m add-sub-file')
 
379
 
 
380
        chdir('..')
 
381
 
 
382
 
 
383
 
 
384
class RevertCommand(ExternalBase):
 
385
    def runTest(self):
 
386
        self.runbzr('init')
 
387
 
 
388
        file('hello', 'wt').write('foo')
 
389
        self.runbzr('add hello')
 
390
        self.runbzr('commit -m setup hello')
1008
391
        
1009
 
    def test_check(self):
1010
 
        self.build_tree(['branch/', 'branch/file'])
1011
 
        self.capture('init branch')
1012
 
        self.capture('add branch/file')
1013
 
        self.capture('commit -m foo branch')
1014
 
        url = self.get_readonly_url('branch/')
1015
 
        self.run_bzr('check', url)
1016
 
    
1017
 
    def test_push(self):
1018
 
        # create a source branch
1019
 
        os.mkdir('my-branch')
1020
 
        os.chdir('my-branch')
1021
 
        self.run_bzr('init')
1022
 
        file('hello', 'wt').write('foo')
1023
 
        self.run_bzr('add', 'hello')
1024
 
        self.run_bzr('commit', '-m', 'setup')
1025
 
 
1026
 
        # with an explicit target work
1027
 
        self.run_bzr('push', self.get_url('output-branch'))
1028
 
 
1029
 
    
1030
 
class HTTPTests(TestCaseWithWebserver, RemoteTests):
1031
 
    """Test various commands against a HTTP server."""
1032
 
    
1033
 
    
1034
 
class SFTPTestsAbsolute(TestCaseWithSFTPServer, RemoteTests):
1035
 
    """Test various commands against a SFTP server using abs paths."""
1036
 
 
1037
 
    
1038
 
class SFTPTestsAbsoluteSibling(TestCaseWithSFTPServer, RemoteTests):
1039
 
    """Test various commands against a SFTP server using abs paths."""
1040
 
 
1041
 
    def setUp(self):
1042
 
        super(SFTPTestsAbsoluteSibling, self).setUp()
1043
 
        self._override_home = '/dev/noone/runs/tests/here'
1044
 
 
1045
 
    
1046
 
class SFTPTestsRelative(TestCaseWithSFTPServer, RemoteTests):
1047
 
    """Test various commands against a SFTP server using homedir rel paths."""
1048
 
 
1049
 
    def setUp(self):
1050
 
        super(SFTPTestsRelative, self).setUp()
1051
 
        self._get_remote_is_absolute = False
 
392
        file('hello', 'wt').write('bar')
 
393
        self.runbzr('revert hello')
 
394
        self.check_file_contents('hello', 'foo')
 
395