/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/selftest/blackbox.py

  • Committer: Aaron Bentley
  • Date: 2005-11-11 17:46:11 UTC
  • mto: (1185.65.2 bzr.revision-storage)
  • mto: This revision was merged to the branch mainline in revision 1509.
  • Revision ID: aaron.bentley@utoronto.ca-20051111174611-05c622f83aca3d78
Support whitespace in diff filenames

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2005 by Canonical Ltd
 
2
# -*- coding: utf-8 -*-
 
3
 
 
4
# This program is free software; you can redistribute it and/or modify
 
5
# it under the terms of the GNU General Public License as published by
 
6
# the Free Software Foundation; either version 2 of the License, or
 
7
# (at your option) any later version.
 
8
 
 
9
# This program is distributed in the hope that it will be useful,
 
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
# GNU General Public License for more details.
 
13
 
 
14
# You should have received a copy of the GNU General Public License
 
15
# along with this program; if not, write to the Free Software
 
16
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
17
 
 
18
 
 
19
"""Black-box tests for bzr.
 
20
 
 
21
These check that it behaves properly when it's invoked through the regular
 
22
command-line interface. This doesn't actually run a new interpreter but 
 
23
rather starts again from the run_bzr function.
 
24
"""
 
25
 
 
26
 
 
27
from cStringIO import StringIO
 
28
import os
 
29
import re
 
30
import shutil
 
31
import sys
 
32
 
 
33
from bzrlib.branch import Branch
 
34
from bzrlib.clone import copy_branch
 
35
from bzrlib.errors import BzrCommandError
 
36
from bzrlib.osutils import has_symlinks
 
37
from bzrlib.selftest import TestCaseInTempDir, BzrTestBase
 
38
from bzrlib.selftest.HTTPTestUtil import TestCaseWithWebserver
 
39
 
 
40
 
 
41
class ExternalBase(TestCaseInTempDir):
 
42
 
 
43
    def runbzr(self, args, retcode=0, backtick=False):
 
44
        if isinstance(args, basestring):
 
45
            args = args.split()
 
46
 
 
47
        if backtick:
 
48
            return self.run_bzr_captured(args, retcode=retcode)[0]
 
49
        else:
 
50
            return self.run_bzr_captured(args, retcode=retcode)
 
51
 
 
52
 
 
53
class TestCommands(ExternalBase):
 
54
 
 
55
    def test_help_commands(self):
 
56
        self.runbzr('--help')
 
57
        self.runbzr('help')
 
58
        self.runbzr('help commands')
 
59
        self.runbzr('help help')
 
60
        self.runbzr('commit -h')
 
61
 
 
62
    def test_init_branch(self):
 
63
        self.runbzr(['init'])
 
64
 
 
65
        # Can it handle subdirectories as well?
 
66
        self.runbzr('init subdir1')
 
67
        self.assert_(os.path.exists('subdir1'))
 
68
        self.assert_(os.path.exists('subdir1/.bzr'))
 
69
 
 
70
        self.runbzr('init subdir2/nothere', retcode=3)
 
71
        
 
72
        os.mkdir('subdir2')
 
73
        self.runbzr('init subdir2')
 
74
        self.runbzr('init subdir2', retcode=3)
 
75
 
 
76
        self.runbzr('init subdir2/subsubdir1')
 
77
        self.assert_(os.path.exists('subdir2/subsubdir1/.bzr'))
 
78
 
 
79
    def test_whoami(self):
 
80
        # this should always identify something, if only "john@localhost"
 
81
        self.runbzr("whoami")
 
82
        self.runbzr("whoami --email")
 
83
 
 
84
        self.assertEquals(self.runbzr("whoami --email",
 
85
                                      backtick=True).count('@'), 1)
 
86
        
 
87
    def test_whoami_branch(self):
 
88
        """branch specific user identity works."""
 
89
        self.runbzr('init')
 
90
        f = file('.bzr/email', 'wt')
 
91
        f.write('Branch Identity <branch@identi.ty>')
 
92
        f.close()
 
93
        bzr_email = os.environ.get('BZREMAIL')
 
94
        if bzr_email is not None:
 
95
            del os.environ['BZREMAIL']
 
96
        whoami = self.runbzr("whoami",backtick=True)
 
97
        whoami_email = self.runbzr("whoami --email",backtick=True)
 
98
        self.assertTrue(whoami.startswith('Branch Identity <branch@identi.ty>'))
 
99
        self.assertTrue(whoami_email.startswith('branch@identi.ty'))
 
100
        # Verify that the environment variable overrides the value 
 
101
        # in the file
 
102
        os.environ['BZREMAIL'] = 'Different ID <other@environ.ment>'
 
103
        whoami = self.runbzr("whoami",backtick=True)
 
104
        whoami_email = self.runbzr("whoami --email",backtick=True)
 
105
        self.assertTrue(whoami.startswith('Different ID <other@environ.ment>'))
 
106
        self.assertTrue(whoami_email.startswith('other@environ.ment'))
 
107
        if bzr_email is not None:
 
108
            os.environ['BZREMAIL'] = bzr_email
 
109
 
 
110
    def test_nick_command(self):
 
111
        """bzr nick for viewing, setting nicknames"""
 
112
        os.mkdir('me.dev')
 
113
        os.chdir('me.dev')
 
114
        self.runbzr('init')
 
115
        nick = self.runbzr("nick",backtick=True)
 
116
        self.assertEqual(nick, 'me.dev\n')
 
117
        nick = self.runbzr("nick moo")
 
118
        nick = self.runbzr("nick",backtick=True)
 
119
        self.assertEqual(nick, 'moo\n')
 
120
 
 
121
 
 
122
    def test_invalid_commands(self):
 
123
        self.runbzr("pants", retcode=3)
 
124
        self.runbzr("--pants off", retcode=3)
 
125
        self.runbzr("diff --message foo", retcode=3)
 
126
 
 
127
    def test_empty_commit(self):
 
128
        self.runbzr("init")
 
129
        self.build_tree(['hello.txt'])
 
130
        self.runbzr("commit -m empty", retcode=3)
 
131
        self.runbzr("add hello.txt")
 
132
        self.runbzr("commit -m added")
 
133
 
 
134
    def test_empty_commit_message(self):
 
135
        self.runbzr("init")
 
136
        file('foo.c', 'wt').write('int main() {}')
 
137
        self.runbzr(['add', 'foo.c'])
 
138
        self.runbzr(["commit", "-m", ""] , retcode=3) 
 
139
 
 
140
    def test_other_branch_commit(self):
 
141
        # this branch is to ensure consistent behaviour, whether we're run
 
142
        # inside a branch, or not.
 
143
        os.mkdir('empty_branch')
 
144
        os.chdir('empty_branch')
 
145
        self.runbzr('init')
 
146
        os.mkdir('branch')
 
147
        os.chdir('branch')
 
148
        self.runbzr('init')
 
149
        file('foo.c', 'wt').write('int main() {}')
 
150
        file('bar.c', 'wt').write('int main() {}')
 
151
        os.chdir('..')
 
152
        self.runbzr(['add', 'branch/foo.c'])
 
153
        self.runbzr(['add', 'branch'])
 
154
        # can't commit files in different trees; sane error
 
155
        self.runbzr('commit -m newstuff branch/foo.c .', retcode=3)
 
156
        self.runbzr('commit -m newstuff branch/foo.c')
 
157
        self.runbzr('commit -m newstuff branch')
 
158
        self.runbzr('commit -m newstuff branch', retcode=3)
 
159
 
 
160
 
 
161
    def test_ignore_patterns(self):
 
162
        from bzrlib.branch import Branch
 
163
        
 
164
        b = Branch.initialize('.')
 
165
        self.assertEquals(list(b.unknowns()), [])
 
166
 
 
167
        file('foo.tmp', 'wt').write('tmp files are ignored')
 
168
        self.assertEquals(list(b.unknowns()), [])
 
169
        self.assertEquals(self.capture('unknowns'), '')
 
170
 
 
171
        file('foo.c', 'wt').write('int main() {}')
 
172
        self.assertEquals(list(b.unknowns()), ['foo.c'])
 
173
        self.assertEquals(self.capture('unknowns'), 'foo.c\n')
 
174
 
 
175
        self.runbzr(['add', 'foo.c'])
 
176
        self.assertEquals(self.capture('unknowns'), '')
 
177
 
 
178
        # 'ignore' works when creating the .bzignore file
 
179
        file('foo.blah', 'wt').write('blah')
 
180
        self.assertEquals(list(b.unknowns()), ['foo.blah'])
 
181
        self.runbzr('ignore *.blah')
 
182
        self.assertEquals(list(b.unknowns()), [])
 
183
        self.assertEquals(file('.bzrignore', 'rU').read(), '*.blah\n')
 
184
 
 
185
        # 'ignore' works when then .bzrignore file already exists
 
186
        file('garh', 'wt').write('garh')
 
187
        self.assertEquals(list(b.unknowns()), ['garh'])
 
188
        self.assertEquals(self.capture('unknowns'), 'garh\n')
 
189
        self.runbzr('ignore garh')
 
190
        self.assertEquals(list(b.unknowns()), [])
 
191
        self.assertEquals(file('.bzrignore', 'rU').read(), '*.blah\ngarh\n')
 
192
 
 
193
    def test_revert(self):
 
194
        self.runbzr('init')
 
195
 
 
196
        file('hello', 'wt').write('foo')
 
197
        self.runbzr('add hello')
 
198
        self.runbzr('commit -m setup hello')
 
199
 
 
200
        file('goodbye', 'wt').write('baz')
 
201
        self.runbzr('add goodbye')
 
202
        self.runbzr('commit -m setup goodbye')
 
203
 
 
204
        file('hello', 'wt').write('bar')
 
205
        file('goodbye', 'wt').write('qux')
 
206
        self.runbzr('revert hello')
 
207
        self.check_file_contents('hello', 'foo')
 
208
        self.check_file_contents('goodbye', 'qux')
 
209
        self.runbzr('revert')
 
210
        self.check_file_contents('goodbye', 'baz')
 
211
 
 
212
        os.mkdir('revertdir')
 
213
        self.runbzr('add revertdir')
 
214
        self.runbzr('commit -m f')
 
215
        os.rmdir('revertdir')
 
216
        self.runbzr('revert')
 
217
 
 
218
        os.symlink('/unlikely/to/exist', 'symlink')
 
219
        self.runbzr('add symlink')
 
220
        self.runbzr('commit -m f')
 
221
        os.unlink('symlink')
 
222
        self.runbzr('revert')
 
223
        self.failUnlessExists('symlink')
 
224
        os.unlink('symlink')
 
225
        os.symlink('a-different-path', 'symlink')
 
226
        self.runbzr('revert')
 
227
        self.assertEqual('/unlikely/to/exist',
 
228
                         os.readlink('symlink'))
 
229
        
 
230
        file('hello', 'wt').write('xyz')
 
231
        self.runbzr('commit -m xyz hello')
 
232
        self.runbzr('revert -r 1 hello')
 
233
        self.check_file_contents('hello', 'foo')
 
234
        self.runbzr('revert hello')
 
235
        self.check_file_contents('hello', 'xyz')
 
236
        os.chdir('revertdir')
 
237
        self.runbzr('revert')
 
238
        os.chdir('..')
 
239
 
 
240
 
 
241
    def test_mv_modes(self):
 
242
        """Test two modes of operation for mv"""
 
243
        from bzrlib.branch import Branch
 
244
        b = Branch.initialize('.')
 
245
        self.build_tree(['a', 'c', 'subdir/'])
 
246
        self.run_bzr_captured(['add', self.test_dir])
 
247
        self.run_bzr_captured(['mv', 'a', 'b'])
 
248
        self.run_bzr_captured(['mv', 'b', 'subdir'])
 
249
        self.run_bzr_captured(['mv', 'subdir/b', 'a'])
 
250
        self.run_bzr_captured(['mv', 'a', 'c', 'subdir'])
 
251
        self.run_bzr_captured(['mv', 'subdir/a', 'subdir/newa'])
 
252
 
 
253
    def test_main_version(self):
 
254
        """Check output from version command and master option is reasonable"""
 
255
        # output is intentionally passed through to stdout so that we
 
256
        # can see the version being tested
 
257
        output = self.runbzr('version', backtick=1)
 
258
        self.log('bzr version output:')
 
259
        self.log(output)
 
260
        self.assert_(output.startswith('bzr (bazaar-ng) '))
 
261
        self.assertNotEqual(output.index('Canonical'), -1)
 
262
        # make sure --version is consistent
 
263
        tmp_output = self.runbzr('--version', backtick=1)
 
264
        self.log('bzr --version output:')
 
265
        self.log(tmp_output)
 
266
        self.assertEquals(output, tmp_output)
 
267
 
 
268
    def example_branch(test):
 
269
        test.runbzr('init')
 
270
        file('hello', 'wt').write('foo')
 
271
        test.runbzr('add hello')
 
272
        test.runbzr('commit -m setup hello')
 
273
        file('goodbye', 'wt').write('baz')
 
274
        test.runbzr('add goodbye')
 
275
        test.runbzr('commit -m setup goodbye')
 
276
 
 
277
    def test_export(self):
 
278
        os.mkdir('branch')
 
279
        os.chdir('branch')
 
280
        self.example_branch()
 
281
        self.runbzr('export ../latest')
 
282
        self.assertEqual(file('../latest/goodbye', 'rt').read(), 'baz')
 
283
        self.runbzr('export ../first -r 1')
 
284
        self.assert_(not os.path.exists('../first/goodbye'))
 
285
        self.assertEqual(file('../first/hello', 'rt').read(), 'foo')
 
286
        self.runbzr('export ../first.gz -r 1')
 
287
        self.assertEqual(file('../first.gz/hello', 'rt').read(), 'foo')
 
288
        self.runbzr('export ../first.bz2 -r 1')
 
289
        self.assertEqual(file('../first.bz2/hello', 'rt').read(), 'foo')
 
290
        self.runbzr('export ../first.tar -r 1')
 
291
        self.assert_(os.path.isfile('../first.tar'))
 
292
        from tarfile import TarFile
 
293
        tf = TarFile('../first.tar')
 
294
        self.assert_('first/hello' in tf.getnames(), tf.getnames())
 
295
        self.assertEqual(tf.extractfile('first/hello').read(), 'foo')
 
296
        self.runbzr('export ../first.tar.gz -r 1')
 
297
        self.assert_(os.path.isfile('../first.tar.gz'))
 
298
        self.runbzr('export ../first.tbz2 -r 1')
 
299
        self.assert_(os.path.isfile('../first.tbz2'))
 
300
        self.runbzr('export ../first.tar.bz2 -r 1')
 
301
        self.assert_(os.path.isfile('../first.tar.bz2'))
 
302
        self.runbzr('export ../first.tar.tbz2 -r 1')
 
303
        self.assert_(os.path.isfile('../first.tar.tbz2'))
 
304
        from bz2 import BZ2File
 
305
        tf = TarFile('../first.tar.tbz2', 
 
306
                     fileobj=BZ2File('../first.tar.tbz2', 'r'))
 
307
        self.assert_('first.tar/hello' in tf.getnames(), tf.getnames())
 
308
        self.assertEqual(tf.extractfile('first.tar/hello').read(), 'foo')
 
309
        self.runbzr('export ../first2.tar -r 1 --root pizza')
 
310
        tf = TarFile('../first2.tar')
 
311
        self.assert_('pizza/hello' in tf.getnames(), tf.getnames())
 
312
 
 
313
    def test_diff(self):
 
314
        self.example_branch()
 
315
        file('hello', 'wt').write('hello world!')
 
316
        self.runbzr('commit -m fixing hello')
 
317
        output = self.runbzr('diff -r 2..3', backtick=1, retcode=1)
 
318
        self.assert_('\n+hello world!' in output)
 
319
        output = self.runbzr('diff -r last:3..last:1', backtick=1, retcode=1)
 
320
        self.assert_('\n+baz' in output)
 
321
        file('moo', 'wb').write('moo')
 
322
        self.runbzr('add moo')
 
323
        os.unlink('moo')
 
324
        self.runbzr('diff')
 
325
 
 
326
    def test_diff_branches(self):
 
327
        self.build_tree(['branch1/', 'branch1/file', 'branch2/'])
 
328
        branch = Branch.initialize('branch1')
 
329
        branch.add(['file'])
 
330
        branch.commit('add file')
 
331
        copy_branch(branch, 'branch2')
 
332
        print >> open('branch2/file', 'w'), 'new content'
 
333
        branch2 = Branch.open('branch2')
 
334
        branch2.commit('update file')
 
335
        # should open branch1 and diff against branch2, 
 
336
        output = self.run_bzr_captured(['diff', '-r', 'branch:branch2', 
 
337
                                        'branch1'],
 
338
                                       retcode=1)
 
339
        self.assertEquals(("=== modified file 'file'\n"
 
340
                           "--- file\t\n"
 
341
                           "+++ file\t\n"
 
342
                           "@@ -1,1 +1,1 @@\n"
 
343
                           "-new content\n"
 
344
                           "+contents of branch1/file\n"
 
345
                           "\n", ''), output)
 
346
        output = self.run_bzr_captured(['diff', 'branch2', 'branch1'],
 
347
                                       retcode=1)
 
348
        self.assertEqualDiff(("=== modified file 'file'\n"
 
349
                              "--- file\t\n"
 
350
                              "+++ file\t\n"
 
351
                              "@@ -1,1 +1,1 @@\n"
 
352
                              "-new content\n"
 
353
                              "+contents of branch1/file\n"
 
354
                              "\n", ''), output)
 
355
 
 
356
 
 
357
    def test_branch(self):
 
358
        """Branch from one branch to another."""
 
359
        os.mkdir('a')
 
360
        os.chdir('a')
 
361
        self.example_branch()
 
362
        os.chdir('..')
 
363
        self.runbzr('branch a b')
 
364
        self.assertFileEqual('b\n', 'b/.bzr/branch-name')
 
365
        self.runbzr('branch a c -r 1')
 
366
        os.chdir('b')
 
367
        self.runbzr('commit -m foo --unchanged')
 
368
        os.chdir('..')
 
369
        # naughty - abstraction violations RBC 20050928  
 
370
        print "test_branch used to delete the stores, how is this meant to work ?"
 
371
        #shutil.rmtree('a/.bzr/revision-store')
 
372
        #shutil.rmtree('a/.bzr/inventory-store', ignore_errors=True)
 
373
        #shutil.rmtree('a/.bzr/text-store', ignore_errors=True)
 
374
        self.runbzr('branch a d --basis b')
 
375
 
 
376
    def test_merge(self):
 
377
        from bzrlib.branch import Branch
 
378
        
 
379
        os.mkdir('a')
 
380
        os.chdir('a')
 
381
        self.example_branch()
 
382
        os.chdir('..')
 
383
        self.runbzr('branch a b')
 
384
        os.chdir('b')
 
385
        file('goodbye', 'wt').write('quux')
 
386
        self.runbzr(['commit',  '-m',  "more u's are always good"])
 
387
 
 
388
        os.chdir('../a')
 
389
        file('hello', 'wt').write('quuux')
 
390
        # We can't merge when there are in-tree changes
 
391
        self.runbzr('merge ../b', retcode=3)
 
392
        self.runbzr(['commit', '-m', "Like an epidemic of u's"])
 
393
        self.runbzr('merge ../b -r last:1..last:1 --merge-type blooof',
 
394
                    retcode=3)
 
395
        self.runbzr('merge ../b -r last:1..last:1 --merge-type merge3')
 
396
        self.runbzr('revert --no-backup')
 
397
        self.runbzr('merge ../b -r last:1..last:1 --merge-type weave')
 
398
        self.runbzr('revert --no-backup')
 
399
        self.runbzr('merge ../b -r last:1..last:1 --reprocess')
 
400
        self.runbzr('revert --no-backup')
 
401
        self.runbzr('merge ../b -r last:1')
 
402
        self.check_file_contents('goodbye', 'quux')
 
403
        # Merging a branch pulls its revision into the tree
 
404
        a = Branch.open('.')
 
405
        b = Branch.open('../b')
 
406
        a.get_revision_xml(b.last_revision())
 
407
        self.log('pending merges: %s', a.pending_merges())
 
408
        self.assertEquals(a.pending_merges(), [b.last_revision()])
 
409
        self.runbzr('commit -m merged')
 
410
        self.runbzr('merge ../b -r last:1')
 
411
        self.assertEqual(Branch.open('.').pending_merges(), [])
 
412
 
 
413
 
 
414
    def test_merge_with_missing_file(self):
 
415
        """Merge handles missing file conflicts"""
 
416
        os.mkdir('a')
 
417
        os.chdir('a')
 
418
        os.mkdir('sub')
 
419
        print >> file('sub/a.txt', 'wb'), "hello"
 
420
        print >> file('b.txt', 'wb'), "hello"
 
421
        print >> file('sub/c.txt', 'wb'), "hello"
 
422
        self.runbzr('init')
 
423
        self.runbzr('add')
 
424
        self.runbzr(('commit', '-m', 'added a'))
 
425
        self.runbzr('branch . ../b')
 
426
        print >> file('sub/a.txt', 'ab'), "there"
 
427
        print >> file('b.txt', 'ab'), "there"
 
428
        print >> file('sub/c.txt', 'ab'), "there"
 
429
        self.runbzr(('commit', '-m', 'Added there'))
 
430
        os.unlink('sub/a.txt')
 
431
        os.unlink('sub/c.txt')
 
432
        os.rmdir('sub')
 
433
        os.unlink('b.txt')
 
434
        self.runbzr(('commit', '-m', 'Removed a.txt'))
 
435
        os.chdir('../b')
 
436
        print >> file('sub/a.txt', 'ab'), "something"
 
437
        print >> file('b.txt', 'ab'), "something"
 
438
        print >> file('sub/c.txt', 'ab'), "something"
 
439
        self.runbzr(('commit', '-m', 'Modified a.txt'))
 
440
        self.runbzr('merge ../a/', retcode=1)
 
441
        self.assert_(os.path.exists('sub/a.txt.THIS'))
 
442
        self.assert_(os.path.exists('sub/a.txt.BASE'))
 
443
        os.chdir('../a')
 
444
        self.runbzr('merge ../b/', retcode=1)
 
445
        self.assert_(os.path.exists('sub/a.txt.OTHER'))
 
446
        self.assert_(os.path.exists('sub/a.txt.BASE'))
 
447
 
 
448
    def test_pull(self):
 
449
        """Pull changes from one branch to another."""
 
450
        os.mkdir('a')
 
451
        os.chdir('a')
 
452
 
 
453
        self.example_branch()
 
454
        self.runbzr('pull', retcode=3)
 
455
        self.runbzr('missing', retcode=3)
 
456
        self.runbzr('missing .')
 
457
        self.runbzr('missing')
 
458
        self.runbzr('pull')
 
459
        self.runbzr('pull /', retcode=3)
 
460
        self.runbzr('pull')
 
461
 
 
462
        os.chdir('..')
 
463
        self.runbzr('branch a b')
 
464
        os.chdir('b')
 
465
        self.runbzr('pull')
 
466
        os.mkdir('subdir')
 
467
        self.runbzr('add subdir')
 
468
        self.runbzr('commit -m blah --unchanged')
 
469
        os.chdir('../a')
 
470
        a = Branch.open('.')
 
471
        b = Branch.open('../b')
 
472
        self.assertEquals(a.revision_history(), b.revision_history()[:-1])
 
473
        self.runbzr('pull ../b')
 
474
        self.assertEquals(a.revision_history(), b.revision_history())
 
475
        self.runbzr('commit -m blah2 --unchanged')
 
476
        os.chdir('../b')
 
477
        self.runbzr('commit -m blah3 --unchanged')
 
478
        # no overwrite
 
479
        self.runbzr('pull ../a', retcode=3)
 
480
        os.chdir('..')
 
481
        self.runbzr('branch b overwriteme')
 
482
        os.chdir('overwriteme')
 
483
        self.runbzr('pull --overwrite ../a')
 
484
        overwritten = Branch.open('.')
 
485
        self.assertEqual(overwritten.revision_history(),
 
486
                         a.revision_history())
 
487
        os.chdir('../a')
 
488
        self.runbzr('merge ../b')
 
489
        self.runbzr('commit -m blah4 --unchanged')
 
490
        os.chdir('../b/subdir')
 
491
        self.runbzr('pull ../../a')
 
492
        self.assertEquals(a.revision_history()[-1], b.revision_history()[-1])
 
493
        self.runbzr('commit -m blah5 --unchanged')
 
494
        self.runbzr('commit -m blah6 --unchanged')
 
495
        os.chdir('..')
 
496
        self.runbzr('pull ../a')
 
497
        os.chdir('../a')
 
498
        self.runbzr('commit -m blah7 --unchanged')
 
499
        self.runbzr('merge ../b')
 
500
        self.runbzr('commit -m blah8 --unchanged')
 
501
        self.runbzr('pull ../b')
 
502
        self.runbzr('pull ../b')
 
503
 
 
504
    def test_ls(self):
 
505
        """Test the abilities of 'bzr ls'"""
 
506
        bzr = self.runbzr
 
507
        def bzrout(*args, **kwargs):
 
508
            kwargs['backtick'] = True
 
509
            return self.runbzr(*args, **kwargs)
 
510
 
 
511
        def ls_equals(value, *args):
 
512
            out = self.runbzr(['ls'] + list(args), backtick=True)
 
513
            self.assertEquals(out, value)
 
514
 
 
515
        bzr('init')
 
516
        open('a', 'wb').write('hello\n')
 
517
 
 
518
        # Can't supply both
 
519
        bzr('ls --verbose --null', retcode=3)
 
520
 
 
521
        ls_equals('a\n')
 
522
        ls_equals('?        a\n', '--verbose')
 
523
        ls_equals('a\n', '--unknown')
 
524
        ls_equals('', '--ignored')
 
525
        ls_equals('', '--versioned')
 
526
        ls_equals('a\n', '--unknown', '--ignored', '--versioned')
 
527
        ls_equals('', '--ignored', '--versioned')
 
528
        ls_equals('a\0', '--null')
 
529
 
 
530
        bzr('add a')
 
531
        ls_equals('V        a\n', '--verbose')
 
532
        bzr('commit -m add')
 
533
        
 
534
        os.mkdir('subdir')
 
535
        ls_equals('V        a\n'
 
536
                  '?        subdir/\n'
 
537
                  , '--verbose')
 
538
        open('subdir/b', 'wb').write('b\n')
 
539
        bzr('add')
 
540
        ls_equals('V        a\n'
 
541
                  'V        subdir/\n'
 
542
                  'V        subdir/b\n'
 
543
                  , '--verbose')
 
544
        bzr('commit -m subdir')
 
545
 
 
546
        ls_equals('a\n'
 
547
                  'subdir\n'
 
548
                  , '--non-recursive')
 
549
 
 
550
        ls_equals('V        a\n'
 
551
                  'V        subdir/\n'
 
552
                  , '--verbose', '--non-recursive')
 
553
 
 
554
        # Check what happens in a sub-directory
 
555
        os.chdir('subdir')
 
556
        ls_equals('b\n')
 
557
        ls_equals('b\0'
 
558
                  , '--null')
 
559
        ls_equals('a\n'
 
560
                  'subdir\n'
 
561
                  'subdir/b\n'
 
562
                  , '--from-root')
 
563
        ls_equals('a\0'
 
564
                  'subdir\0'
 
565
                  'subdir/b\0'
 
566
                  , '--from-root', '--null')
 
567
        ls_equals('a\n'
 
568
                  'subdir\n'
 
569
                  , '--from-root', '--non-recursive')
 
570
 
 
571
        os.chdir('..')
 
572
 
 
573
        # Check what happens when we supply a specific revision
 
574
        ls_equals('a\n', '--revision', '1')
 
575
        ls_equals('V        a\n'
 
576
                  , '--verbose', '--revision', '1')
 
577
 
 
578
        os.chdir('subdir')
 
579
        ls_equals('', '--revision', '1')
 
580
 
 
581
        # Now try to do ignored files.
 
582
        os.chdir('..')
 
583
        open('blah.py', 'wb').write('unknown\n')
 
584
        open('blah.pyo', 'wb').write('ignored\n')
 
585
        ls_equals('a\n'
 
586
                  'blah.py\n'
 
587
                  'blah.pyo\n'
 
588
                  'subdir\n'
 
589
                  'subdir/b\n')
 
590
        ls_equals('V        a\n'
 
591
                  '?        blah.py\n'
 
592
                  'I        blah.pyo\n'
 
593
                  'V        subdir/\n'
 
594
                  'V        subdir/b\n'
 
595
                  , '--verbose')
 
596
        ls_equals('blah.pyo\n'
 
597
                  , '--ignored')
 
598
        ls_equals('blah.py\n'
 
599
                  , '--unknown')
 
600
        ls_equals('a\n'
 
601
                  'subdir\n'
 
602
                  'subdir/b\n'
 
603
                  , '--versioned')
 
604
 
 
605
 
 
606
    def test_locations(self):
 
607
        """Using and remembering different locations"""
 
608
        os.mkdir('a')
 
609
        os.chdir('a')
 
610
        self.runbzr('init')
 
611
        self.runbzr('commit -m unchanged --unchanged')
 
612
        self.runbzr('pull', retcode=3)
 
613
        self.runbzr('merge', retcode=3)
 
614
        self.runbzr('branch . ../b')
 
615
        os.chdir('../b')
 
616
        self.runbzr('pull')
 
617
        self.runbzr('branch . ../c')
 
618
        self.runbzr('pull ../c')
 
619
        self.runbzr('merge')
 
620
        os.chdir('../a')
 
621
        self.runbzr('pull ../b')
 
622
        self.runbzr('pull')
 
623
        self.runbzr('pull ../c')
 
624
        self.runbzr('branch ../c ../d')
 
625
        shutil.rmtree('../c')
 
626
        self.runbzr('pull')
 
627
        os.chdir('../b')
 
628
        self.runbzr('pull')
 
629
        os.chdir('../d')
 
630
        self.runbzr('pull', retcode=3)
 
631
        self.runbzr('pull ../a --remember')
 
632
        self.runbzr('pull')
 
633
        
 
634
    def test_add_reports(self):
 
635
        """add command prints the names of added files."""
 
636
        b = Branch.initialize('.')
 
637
        self.build_tree(['top.txt', 'dir/', 'dir/sub.txt'])
 
638
        out = self.run_bzr_captured(['add'], retcode = 0)[0]
 
639
        # the ordering is not defined at the moment
 
640
        results = sorted(out.rstrip('\n').split('\n'))
 
641
        self.assertEquals(['added dir',
 
642
                           'added dir'+os.sep+'sub.txt',
 
643
                           'added top.txt',],
 
644
                          results)
 
645
 
 
646
    def test_add_quiet_is(self):
 
647
        """add -q does not print the names of added files."""
 
648
        b = Branch.initialize('.')
 
649
        self.build_tree(['top.txt', 'dir/', 'dir/sub.txt'])
 
650
        out = self.run_bzr_captured(['add', '-q'], retcode = 0)[0]
 
651
        # the ordering is not defined at the moment
 
652
        results = sorted(out.rstrip('\n').split('\n'))
 
653
        self.assertEquals([''], results)
 
654
 
 
655
    def test_unknown_command(self):
 
656
        """Handling of unknown command."""
 
657
        out, err = self.run_bzr_captured(['fluffy-badger'],
 
658
                                         retcode=3)
 
659
        self.assertEquals(out, '')
 
660
        err.index('unknown command')
 
661
 
 
662
    def create_conflicts(self):
 
663
        """Create a conflicted tree"""
 
664
        os.mkdir('base')
 
665
        os.chdir('base')
 
666
        file('hello', 'wb').write("hi world")
 
667
        file('answer', 'wb').write("42")
 
668
        self.runbzr('init')
 
669
        self.runbzr('add')
 
670
        self.runbzr('commit -m base')
 
671
        self.runbzr('branch . ../other')
 
672
        self.runbzr('branch . ../this')
 
673
        os.chdir('../other')
 
674
        file('hello', 'wb').write("Hello.")
 
675
        file('answer', 'wb').write("Is anyone there?")
 
676
        self.runbzr('commit -m other')
 
677
        os.chdir('../this')
 
678
        file('hello', 'wb').write("Hello, world")
 
679
        self.runbzr('mv answer question')
 
680
        file('question', 'wb').write("What do you get when you multiply six"
 
681
                                   "times nine?")
 
682
        self.runbzr('commit -m this')
 
683
 
 
684
    def test_remerge(self):
 
685
        """Remerge command works as expected"""
 
686
        self.create_conflicts()
 
687
        self.runbzr('merge ../other --show-base', retcode=1)
 
688
        conflict_text = file('hello').read()
 
689
        assert '|||||||' in conflict_text
 
690
        assert 'hi world' in conflict_text
 
691
        self.runbzr('remerge', retcode=1)
 
692
        conflict_text = file('hello').read()
 
693
        assert '|||||||' not in conflict_text
 
694
        assert 'hi world' not in conflict_text
 
695
        os.unlink('hello.OTHER')
 
696
        self.runbzr('remerge hello --merge-type weave', retcode=1)
 
697
        assert os.path.exists('hello.OTHER')
 
698
        file_id = self.runbzr('file-id hello')
 
699
        file_id = self.runbzr('file-id hello.THIS', retcode=3)
 
700
        self.runbzr('remerge --merge-type weave', retcode=1)
 
701
        assert os.path.exists('hello.OTHER')
 
702
        assert not os.path.exists('hello.BASE')
 
703
        assert '|||||||' not in conflict_text
 
704
        assert 'hi world' not in conflict_text
 
705
        self.runbzr('remerge . --merge-type weave --show-base', retcode=3)
 
706
        self.runbzr('remerge . --merge-type weave --reprocess', retcode=3)
 
707
        self.runbzr('remerge . --show-base --reprocess', retcode=3)
 
708
        self.runbzr('remerge hello --show-base', retcode=1)
 
709
        self.runbzr('remerge hello --reprocess', retcode=1)
 
710
        self.runbzr('resolve --all')
 
711
        self.runbzr('commit -m done',)
 
712
        self.runbzr('remerge', retcode=3)
 
713
 
 
714
 
 
715
    def test_conflicts(self):
 
716
        """Handling of merge conflicts"""
 
717
        self.create_conflicts()
 
718
        self.runbzr('merge ../other --show-base', retcode=1)
 
719
        conflict_text = file('hello').read()
 
720
        self.assert_('<<<<<<<' in conflict_text)
 
721
        self.assert_('>>>>>>>' in conflict_text)
 
722
        self.assert_('=======' in conflict_text)
 
723
        self.assert_('|||||||' in conflict_text)
 
724
        self.assert_('hi world' in conflict_text)
 
725
        self.runbzr('revert')
 
726
        self.runbzr('resolve --all')
 
727
        self.runbzr('merge ../other', retcode=1)
 
728
        conflict_text = file('hello').read()
 
729
        self.assert_('|||||||' not in conflict_text)
 
730
        self.assert_('hi world' not in conflict_text)
 
731
        result = self.runbzr('conflicts', backtick=1)
 
732
        self.assertEquals(result, "hello\nquestion\n")
 
733
        result = self.runbzr('status', backtick=1)
 
734
        self.assert_("conflicts:\n  hello\n  question\n" in result, result)
 
735
        self.runbzr('resolve hello')
 
736
        result = self.runbzr('conflicts', backtick=1)
 
737
        self.assertEquals(result, "question\n")
 
738
        self.runbzr('commit -m conflicts', retcode=3)
 
739
        self.runbzr('resolve --all')
 
740
        result = self.runbzr('conflicts', backtick=1)
 
741
        self.runbzr('commit -m conflicts')
 
742
        self.assertEquals(result, "")
 
743
 
 
744
    def test_resign(self):
 
745
        """Test re signing of data."""
 
746
        import bzrlib.gpg
 
747
        oldstrategy = bzrlib.gpg.GPGStrategy
 
748
        branch = Branch.initialize('.')
 
749
        branch.commit("base", allow_pointless=True, rev_id='A')
 
750
        try:
 
751
            # monkey patch gpg signing mechanism
 
752
            from bzrlib.testament import Testament
 
753
            bzrlib.gpg.GPGStrategy = bzrlib.gpg.LoopbackGPGStrategy
 
754
            self.runbzr('re-sign -r revid:A')
 
755
            self.assertEqual(Testament.from_revision(branch,'A').as_short_text(),
 
756
                             branch.revision_store.get('A', 'sig').read())
 
757
        finally:
 
758
            bzrlib.gpg.GPGStrategy = oldstrategy
 
759
            
 
760
    def test_resign_range(self):
 
761
        import bzrlib.gpg
 
762
        oldstrategy = bzrlib.gpg.GPGStrategy
 
763
        branch = Branch.initialize('.')
 
764
        branch.commit("base", allow_pointless=True, rev_id='A')
 
765
        branch.commit("base", allow_pointless=True, rev_id='B')
 
766
        branch.commit("base", allow_pointless=True, rev_id='C')
 
767
        try:
 
768
            # monkey patch gpg signing mechanism
 
769
            from bzrlib.testament import Testament
 
770
            bzrlib.gpg.GPGStrategy = bzrlib.gpg.LoopbackGPGStrategy
 
771
            self.runbzr('re-sign -r 1..')
 
772
            self.assertEqual(Testament.from_revision(branch,'A').as_short_text(),
 
773
                             branch.revision_store.get('A', 'sig').read())
 
774
            self.assertEqual(Testament.from_revision(branch,'B').as_short_text(),
 
775
                             branch.revision_store.get('B', 'sig').read())
 
776
            self.assertEqual(Testament.from_revision(branch,'C').as_short_text(),
 
777
                             branch.revision_store.get('C', 'sig').read())
 
778
        finally:
 
779
            bzrlib.gpg.GPGStrategy = oldstrategy
 
780
 
 
781
    def test_push(self):
 
782
        # create a source branch
 
783
        os.mkdir('my-branch')
 
784
        os.chdir('my-branch')
 
785
        self.example_branch()
 
786
 
 
787
        # with no push target, fail
 
788
        self.runbzr('push', retcode=3)
 
789
        # with an explicit target work
 
790
        self.runbzr('push ../output-branch')
 
791
        # with an implicit target work
 
792
        self.runbzr('push')
 
793
        # nothing missing
 
794
        self.runbzr('missing ../output-branch')
 
795
        # advance this branch
 
796
        self.runbzr('commit --unchanged -m unchanged')
 
797
 
 
798
        os.chdir('../output-branch')
 
799
        # should be a diff as we have not pushed the tree
 
800
        self.runbzr('diff', retcode=1)
 
801
        self.runbzr('revert')
 
802
        # but not now.
 
803
        self.runbzr('diff')
 
804
        # diverge the branches
 
805
        self.runbzr('commit --unchanged -m unchanged')
 
806
        os.chdir('../my-branch')
 
807
        # cannot push now
 
808
        self.runbzr('push', retcode=3)
 
809
        # and there are difference
 
810
        self.runbzr('missing ../output-branch', retcode=1)
 
811
        # but we can force a push
 
812
        self.runbzr('push --overwrite')
 
813
        # nothing missing
 
814
        self.runbzr('missing ../output-branch')
 
815
        
 
816
        # pushing to a new dir with no parent should fail
 
817
        self.runbzr('push ../missing/new-branch', retcode=3)
 
818
        # unless we provide --create-prefix
 
819
        self.runbzr('push --create-prefix ../missing/new-branch')
 
820
        # nothing missing
 
821
        self.runbzr('missing ../missing/new-branch')
 
822
 
 
823
 
 
824
def listdir_sorted(dir):
 
825
    L = os.listdir(dir)
 
826
    L.sort()
 
827
    return L
 
828
 
 
829
 
 
830
class OldTests(ExternalBase):
 
831
    """old tests moved from ./testbzr."""
 
832
 
 
833
    def test_bzr(self):
 
834
        from os import chdir, mkdir
 
835
        from os.path import exists
 
836
 
 
837
        runbzr = self.runbzr
 
838
        capture = self.capture
 
839
        progress = self.log
 
840
 
 
841
        progress("basic branch creation")
 
842
        mkdir('branch1')
 
843
        chdir('branch1')
 
844
        runbzr('init')
 
845
 
 
846
        self.assertEquals(capture('root').rstrip(),
 
847
                          os.path.join(self.test_dir, 'branch1'))
 
848
 
 
849
        progress("status of new file")
 
850
 
 
851
        f = file('test.txt', 'wt')
 
852
        f.write('hello world!\n')
 
853
        f.close()
 
854
 
 
855
        self.assertEquals(capture('unknowns'), 'test.txt\n')
 
856
 
 
857
        out = capture("status")
 
858
        self.assertEquals(out, 'unknown:\n  test.txt\n')
 
859
 
 
860
        out = capture("status --all")
 
861
        self.assertEquals(out, "unknown:\n  test.txt\n")
 
862
 
 
863
        out = capture("status test.txt --all")
 
864
        self.assertEquals(out, "unknown:\n  test.txt\n")
 
865
 
 
866
        f = file('test2.txt', 'wt')
 
867
        f.write('goodbye cruel world...\n')
 
868
        f.close()
 
869
 
 
870
        out = capture("status test.txt")
 
871
        self.assertEquals(out, "unknown:\n  test.txt\n")
 
872
 
 
873
        out = capture("status")
 
874
        self.assertEquals(out, ("unknown:\n" "  test.txt\n" "  test2.txt\n"))
 
875
 
 
876
        os.unlink('test2.txt')
 
877
 
 
878
        progress("command aliases")
 
879
        out = capture("st --all")
 
880
        self.assertEquals(out, ("unknown:\n" "  test.txt\n"))
 
881
 
 
882
        out = capture("stat")
 
883
        self.assertEquals(out, ("unknown:\n" "  test.txt\n"))
 
884
 
 
885
        progress("command help")
 
886
        runbzr("help st")
 
887
        runbzr("help")
 
888
        runbzr("help commands")
 
889
        runbzr("help slartibartfast", 3)
 
890
 
 
891
        out = capture("help ci")
 
892
        out.index('aliases: ')
 
893
 
 
894
        progress("can't rename unversioned file")
 
895
        runbzr("rename test.txt new-test.txt", 3)
 
896
 
 
897
        progress("adding a file")
 
898
 
 
899
        runbzr("add test.txt")
 
900
        self.assertEquals(capture("unknowns"), '')
 
901
        self.assertEquals(capture("status --all"), ("added:\n" "  test.txt\n"))
 
902
 
 
903
        progress("rename newly-added file")
 
904
        runbzr("rename test.txt hello.txt")
 
905
        self.assert_(os.path.exists("hello.txt"))
 
906
        self.assert_(not os.path.exists("test.txt"))
 
907
 
 
908
        self.assertEquals(capture("revno"), '0\n')
 
909
 
 
910
        progress("add first revision")
 
911
        runbzr(['commit', '-m', 'add first revision'])
 
912
 
 
913
        progress("more complex renames")
 
914
        os.mkdir("sub1")
 
915
        runbzr("rename hello.txt sub1", 3)
 
916
        runbzr("rename hello.txt sub1/hello.txt", 3)
 
917
        runbzr("move hello.txt sub1", 3)
 
918
 
 
919
        runbzr("add sub1")
 
920
        runbzr("rename sub1 sub2")
 
921
        runbzr("move hello.txt sub2")
 
922
        self.assertEqual(capture("relpath sub2/hello.txt"),
 
923
                         os.path.join("sub2", "hello.txt\n"))
 
924
 
 
925
        self.assert_(exists("sub2"))
 
926
        self.assert_(exists("sub2/hello.txt"))
 
927
        self.assert_(not exists("sub1"))
 
928
        self.assert_(not exists("hello.txt"))
 
929
 
 
930
        runbzr(['commit', '-m', 'commit with some things moved to subdirs'])
 
931
 
 
932
        mkdir("sub1")
 
933
        runbzr('add sub1')
 
934
        runbzr('move sub2/hello.txt sub1')
 
935
        self.assert_(not exists('sub2/hello.txt'))
 
936
        self.assert_(exists('sub1/hello.txt'))
 
937
        runbzr('move sub2 sub1')
 
938
        self.assert_(not exists('sub2'))
 
939
        self.assert_(exists('sub1/sub2'))
 
940
 
 
941
        runbzr(['commit', '-m', 'rename nested subdirectories'])
 
942
 
 
943
        chdir('sub1/sub2')
 
944
        self.assertEquals(capture('root')[:-1],
 
945
                          os.path.join(self.test_dir, 'branch1'))
 
946
        runbzr('move ../hello.txt .')
 
947
        self.assert_(exists('./hello.txt'))
 
948
        self.assertEquals(capture('relpath hello.txt'),
 
949
                          os.path.join('sub1', 'sub2', 'hello.txt') + '\n')
 
950
        self.assertEquals(capture('relpath ../../sub1/sub2/hello.txt'), os.path.join('sub1', 'sub2', 'hello.txt\n'))
 
951
        runbzr(['commit', '-m', 'move to parent directory'])
 
952
        chdir('..')
 
953
        self.assertEquals(capture('relpath sub2/hello.txt'), os.path.join('sub1', 'sub2', 'hello.txt\n'))
 
954
 
 
955
        runbzr('move sub2/hello.txt .')
 
956
        self.assert_(exists('hello.txt'))
 
957
 
 
958
        f = file('hello.txt', 'wt')
 
959
        f.write('some nice new content\n')
 
960
        f.close()
 
961
 
 
962
        f = file('msg.tmp', 'wt')
 
963
        f.write('this is my new commit\nand it has multiple lines, for fun')
 
964
        f.close()
 
965
 
 
966
        runbzr('commit -F msg.tmp')
 
967
 
 
968
        self.assertEquals(capture('revno'), '5\n')
 
969
        runbzr('export -r 5 export-5.tmp')
 
970
        runbzr('export export.tmp')
 
971
 
 
972
        runbzr('log')
 
973
        runbzr('log -v')
 
974
        runbzr('log -v --forward')
 
975
        runbzr('log -m', retcode=3)
 
976
        log_out = capture('log -m commit')
 
977
        self.assert_("this is my new commit\n  and" in log_out)
 
978
        self.assert_("rename nested" not in log_out)
 
979
        self.assert_('revision-id' not in log_out)
 
980
        self.assert_('revision-id' in capture('log --show-ids -m commit'))
 
981
 
 
982
        log_out = capture('log --line')
 
983
        for line in log_out.splitlines():
 
984
            self.assert_(len(line) <= 79, len(line))
 
985
        self.assert_("this is my new commit and" in log_out)
 
986
 
 
987
 
 
988
        progress("file with spaces in name")
 
989
        mkdir('sub directory')
 
990
        file('sub directory/file with spaces ', 'wt').write('see how this works\n')
 
991
        runbzr('add .')
 
992
        runbzr('diff', retcode=1)
 
993
        runbzr('commit -m add-spaces')
 
994
        runbzr('check')
 
995
 
 
996
        runbzr('log')
 
997
        runbzr('log --forward')
 
998
 
 
999
        runbzr('info')
 
1000
 
 
1001
        if has_symlinks():
 
1002
            progress("symlinks")
 
1003
            mkdir('symlinks')
 
1004
            chdir('symlinks')
 
1005
            runbzr('init')
 
1006
            os.symlink("NOWHERE1", "link1")
 
1007
            runbzr('add link1')
 
1008
            self.assertEquals(self.capture('unknowns'), '')
 
1009
            runbzr(['commit', '-m', '1: added symlink link1'])
 
1010
    
 
1011
            mkdir('d1')
 
1012
            runbzr('add d1')
 
1013
            self.assertEquals(self.capture('unknowns'), '')
 
1014
            os.symlink("NOWHERE2", "d1/link2")
 
1015
            self.assertEquals(self.capture('unknowns'), 'd1/link2\n')
 
1016
            # is d1/link2 found when adding d1
 
1017
            runbzr('add d1')
 
1018
            self.assertEquals(self.capture('unknowns'), '')
 
1019
            os.symlink("NOWHERE3", "d1/link3")
 
1020
            self.assertEquals(self.capture('unknowns'), 'd1/link3\n')
 
1021
            runbzr(['commit', '-m', '2: added dir, symlink'])
 
1022
    
 
1023
            runbzr('rename d1 d2')
 
1024
            runbzr('move d2/link2 .')
 
1025
            runbzr('move link1 d2')
 
1026
            self.assertEquals(os.readlink("./link2"), "NOWHERE2")
 
1027
            self.assertEquals(os.readlink("d2/link1"), "NOWHERE1")
 
1028
            runbzr('add d2/link3')
 
1029
            runbzr('diff', retcode=1)
 
1030
            runbzr(['commit', '-m', '3: rename of dir, move symlinks, add link3'])
 
1031
    
 
1032
            os.unlink("link2")
 
1033
            os.symlink("TARGET 2", "link2")
 
1034
            os.unlink("d2/link1")
 
1035
            os.symlink("TARGET 1", "d2/link1")
 
1036
            runbzr('diff', retcode=1)
 
1037
            self.assertEquals(self.capture("relpath d2/link1"), "d2/link1\n")
 
1038
            runbzr(['commit', '-m', '4: retarget of two links'])
 
1039
    
 
1040
            runbzr('remove d2/link1')
 
1041
            self.assertEquals(self.capture('unknowns'), 'd2/link1\n')
 
1042
            runbzr(['commit', '-m', '5: remove d2/link1'])
 
1043
            # try with the rm alias
 
1044
            runbzr('add d2/link1')
 
1045
            runbzr(['commit', '-m', '6: add d2/link1'])
 
1046
            runbzr('rm d2/link1')
 
1047
            self.assertEquals(self.capture('unknowns'), 'd2/link1\n')
 
1048
            runbzr(['commit', '-m', '7: remove d2/link1'])
 
1049
    
 
1050
            os.mkdir("d1")
 
1051
            runbzr('add d1')
 
1052
            runbzr('rename d2/link3 d1/link3new')
 
1053
            self.assertEquals(self.capture('unknowns'), 'd2/link1\n')
 
1054
            runbzr(['commit', '-m', '8: remove d2/link1, move/rename link3'])
 
1055
            
 
1056
            runbzr(['check'])
 
1057
            
 
1058
            runbzr(['export', '-r', '1', 'exp1.tmp'])
 
1059
            chdir("exp1.tmp")
 
1060
            self.assertEquals(listdir_sorted("."), [ "link1" ])
 
1061
            self.assertEquals(os.readlink("link1"), "NOWHERE1")
 
1062
            chdir("..")
 
1063
            
 
1064
            runbzr(['export', '-r', '2', 'exp2.tmp'])
 
1065
            chdir("exp2.tmp")
 
1066
            self.assertEquals(listdir_sorted("."), [ "d1", "link1" ])
 
1067
            chdir("..")
 
1068
            
 
1069
            runbzr(['export', '-r', '3', 'exp3.tmp'])
 
1070
            chdir("exp3.tmp")
 
1071
            self.assertEquals(listdir_sorted("."), [ "d2", "link2" ])
 
1072
            self.assertEquals(listdir_sorted("d2"), [ "link1", "link3" ])
 
1073
            self.assertEquals(os.readlink("d2/link1"), "NOWHERE1")
 
1074
            self.assertEquals(os.readlink("link2")   , "NOWHERE2")
 
1075
            chdir("..")
 
1076
            
 
1077
            runbzr(['export', '-r', '4', 'exp4.tmp'])
 
1078
            chdir("exp4.tmp")
 
1079
            self.assertEquals(listdir_sorted("."), [ "d2", "link2" ])
 
1080
            self.assertEquals(os.readlink("d2/link1"), "TARGET 1")
 
1081
            self.assertEquals(os.readlink("link2")   , "TARGET 2")
 
1082
            self.assertEquals(listdir_sorted("d2"), [ "link1", "link3" ])
 
1083
            chdir("..")
 
1084
            
 
1085
            runbzr(['export', '-r', '5', 'exp5.tmp'])
 
1086
            chdir("exp5.tmp")
 
1087
            self.assertEquals(listdir_sorted("."), [ "d2", "link2" ])
 
1088
            self.assert_(os.path.islink("link2"))
 
1089
            self.assert_(listdir_sorted("d2")== [ "link3" ])
 
1090
            chdir("..")
 
1091
            
 
1092
            runbzr(['export', '-r', '8', 'exp6.tmp'])
 
1093
            chdir("exp6.tmp")
 
1094
            self.assertEqual(listdir_sorted("."), [ "d1", "d2", "link2"])
 
1095
            self.assertEquals(listdir_sorted("d1"), [ "link3new" ])
 
1096
            self.assertEquals(listdir_sorted("d2"), [])
 
1097
            self.assertEquals(os.readlink("d1/link3new"), "NOWHERE3")
 
1098
            chdir("..")
 
1099
        else:
 
1100
            progress("skipping symlink tests")
 
1101
 
 
1102
 
 
1103
class HttpTests(TestCaseWithWebserver):
 
1104
    """Test bzr ui commands against remote branches."""
 
1105
 
 
1106
    def test_branch(self):
 
1107
        os.mkdir('from')
 
1108
        branch = Branch.initialize('from')
 
1109
        branch.commit('empty commit for nonsense', allow_pointless=True)
 
1110
        url = self.get_remote_url('from')
 
1111
        self.run_bzr('branch', url, 'to')
 
1112
        branch = Branch.open('to')
 
1113
        self.assertEqual(1, len(branch.revision_history()))
 
1114
 
 
1115
    def test_log(self):
 
1116
        self.build_tree(['branch/', 'branch/file'])
 
1117
        branch = Branch.initialize('branch')
 
1118
        branch.add(['file'])
 
1119
        branch.commit('add file', rev_id='A')
 
1120
        url = self.get_remote_url('branch/file')
 
1121
        output = self.capture('log %s' % url)
 
1122
        self.assertEqual(8, len(output.split('\n')))
 
1123
        
 
1124
 
 
1125
 
 
1126