41
45
class BranchStatus(TestCaseWithTransport):
43
47
def assertStatus(self, expected_lines, working_tree,
44
revision=None, short=False):
48
revision=None, short=False, pending=True, verbose=False):
45
49
"""Run status in working_tree and look for output.
47
51
:param expected_lines: The lines to look for.
48
52
:param working_tree: The tree to run status in.
50
output_string = self.status_string(working_tree, revision, short)
54
output_string = self.status_string(working_tree, revision, short,
51
56
self.assertEqual(expected_lines, output_string.splitlines(True))
53
def status_string(self, wt, revision=None, short=False):
58
def status_string(self, wt, revision=None, short=False, pending=True,
54
60
# use a real file rather than StringIO because it doesn't handle
55
61
# Unicode very well.
56
62
tof = codecs.getwriter('utf-8')(TemporaryFile())
57
show_tree_status(wt, to_file=tof, revision=revision, short=short)
63
show_tree_status(wt, to_file=tof, revision=revision, short=short,
64
show_pending=pending, verbose=verbose)
59
66
return tof.read().decode('utf-8')
141
167
b_2 = b_2_dir.open_branch()
142
168
wt2 = b_2_dir.open_workingtree()
143
169
wt.commit(u"\N{TIBETAN DIGIT TWO} Empty commit 2")
144
merge(["./branch", -1], [None, None], this_dir = './copy')
145
message = self.status_string(wt2)
170
wt2.merge_from_branch(wt.branch)
171
message = self.status_string(wt2, verbose=True)
146
172
self.assertStartsWith(message, "pending merges:\n")
147
173
self.assertEndsWith(message, "Empty commit 2\n")
148
174
wt2.commit("merged")
149
175
# must be long to make sure we see elipsis at the end
150
176
wt.commit("Empty commit 3 " +
151
177
"blah blah blah blah " * 100)
152
merge(["./branch", -1], [None, None], this_dir = './copy')
153
message = self.status_string(wt2)
178
wt2.merge_from_branch(wt.branch)
179
message = self.status_string(wt2, verbose=True)
154
180
self.assertStartsWith(message, "pending merges:\n")
155
181
self.assert_("Empty commit 3" in message)
156
182
self.assertEndsWith(message, "...\n")
228
254
self.assertEquals(tof.readlines(), ['? dir2/\n'])
257
revs = [RevisionSpec.from_string('0'), RevisionSpec.from_string('1')]
258
show_tree_status(wt, specific_files=['test.c'], to_file=tof,
259
short=True, revision=revs)
261
self.assertEquals(tof.readlines(), ['+N test.c\n'])
263
def test_specific_files_conflicts(self):
264
tree = self.make_branch_and_tree('.')
265
self.build_tree(['dir2/'])
267
tree.commit('added dir2')
268
tree.set_conflicts(conflicts.ConflictList(
269
[conflicts.ContentsConflict('foo')]))
271
show_tree_status(tree, specific_files=['dir2'], to_file=tof)
272
self.assertEqualDiff('', tof.getvalue())
273
tree.set_conflicts(conflicts.ConflictList(
274
[conflicts.ContentsConflict('dir2')]))
276
show_tree_status(tree, specific_files=['dir2'], to_file=tof)
277
self.assertEqualDiff('conflicts:\n Contents conflict in dir2\n',
280
tree.set_conflicts(conflicts.ConflictList(
281
[conflicts.ContentsConflict('dir2/file1')]))
283
show_tree_status(tree, specific_files=['dir2'], to_file=tof)
284
self.assertEqualDiff('conflicts:\n Contents conflict in dir2/file1\n',
287
def _prepare_nonexistent(self):
288
wt = self.make_branch_and_tree('.')
289
self.assertStatus([], wt)
290
self.build_tree(['FILE_A', 'FILE_B', 'FILE_C', 'FILE_D', 'FILE_E', ])
296
wt.commit('Create five empty files.')
297
open('FILE_B', 'w').write('Modification to file FILE_B.')
298
open('FILE_C', 'w').write('Modification to file FILE_C.')
299
unlink('FILE_E') # FILE_E will be versioned but missing
300
open('FILE_Q', 'w').write('FILE_Q is added but not committed.')
301
wt.add('FILE_Q') # FILE_Q will be added but not committed
302
open('UNVERSIONED_BUT_EXISTING', 'w')
230
305
def test_status_nonexistent_file(self):
231
306
# files that don't exist in either the basis tree or working tree
232
307
# should give an error
233
wt = self.make_branch_and_tree('.')
234
out, err = self.run_bzr('status', 'does-not-exist', retcode=3)
235
self.assertContainsRe(err, r'do not exist.*does-not-exist')
308
wt = self._prepare_nonexistent()
318
' UNVERSIONED_BUT_EXISTING\n',
326
'? UNVERSIONED_BUT_EXISTING\n',
330
# Okay, everything's looking good with the existent files.
331
# Let's see what happens when we throw in non-existent files.
333
# bzr st [--short] NONEXISTENT '
338
out, err = self.run_bzr('status NONEXISTENT', retcode=3)
339
self.assertEqual(expected, out.splitlines(True))
340
self.assertContainsRe(err,
341
r'.*ERROR: Path\(s\) do not exist: '
346
out, err = self.run_bzr('status --short NONEXISTENT', retcode=3)
347
self.assertContainsRe(err,
348
r'.*ERROR: Path\(s\) do not exist: '
351
def test_status_nonexistent_file_with_others(self):
352
# bzr st [--short] NONEXISTENT ...others..
353
wt = self._prepare_nonexistent()
363
out, err = self.run_bzr('status NONEXISTENT '
364
'FILE_A FILE_B FILE_C FILE_D FILE_E',
366
self.assertEqual(expected, out.splitlines(True))
367
self.assertContainsRe(err,
368
r'.*ERROR: Path\(s\) do not exist: '
376
out, err = self.run_bzr('status --short NONEXISTENT '
377
'FILE_A FILE_B FILE_C FILE_D FILE_E',
379
self.assertEqual(expected, out.splitlines(True))
380
self.assertContainsRe(err,
381
r'.*ERROR: Path\(s\) do not exist: '
384
def test_status_multiple_nonexistent_files(self):
385
# bzr st [--short] NONEXISTENT ... ANOTHER_NONEXISTENT ...
386
wt = self._prepare_nonexistent()
394
' ANOTHER_NONEXISTENT\n',
397
out, err = self.run_bzr('status NONEXISTENT '
398
'FILE_A FILE_B ANOTHER_NONEXISTENT '
399
'FILE_C FILE_D FILE_E', retcode=3)
400
self.assertEqual(expected, out.splitlines(True))
401
self.assertContainsRe(err,
402
r'.*ERROR: Path\(s\) do not exist: '
403
'ANOTHER_NONEXISTENT NONEXISTENT.*')
408
'X ANOTHER_NONEXISTENT\n',
411
out, err = self.run_bzr('status --short NONEXISTENT '
412
'FILE_A FILE_B ANOTHER_NONEXISTENT '
413
'FILE_C FILE_D FILE_E', retcode=3)
414
self.assertEqual(expected, out.splitlines(True))
415
self.assertContainsRe(err,
416
r'.*ERROR: Path\(s\) do not exist: '
417
'ANOTHER_NONEXISTENT NONEXISTENT.*')
419
def test_status_nonexistent_file_with_unversioned(self):
420
# bzr st [--short] NONEXISTENT A B UNVERSIONED_BUT_EXISTING C D E Q
421
wt = self._prepare_nonexistent()
431
' UNVERSIONED_BUT_EXISTING\n',
435
out, err = self.run_bzr('status NONEXISTENT '
436
'FILE_A FILE_B UNVERSIONED_BUT_EXISTING '
437
'FILE_C FILE_D FILE_E FILE_Q', retcode=3)
438
self.assertEqual(expected, out.splitlines(True))
439
self.assertContainsRe(err,
440
r'.*ERROR: Path\(s\) do not exist: '
444
'? UNVERSIONED_BUT_EXISTING\n',
450
out, err = self.run_bzr('status --short NONEXISTENT '
451
'FILE_A FILE_B UNVERSIONED_BUT_EXISTING '
452
'FILE_C FILE_D FILE_E FILE_Q', retcode=3)
453
self.assertEqual(expected, out.splitlines(True))
454
self.assertContainsRe(err,
455
r'.*ERROR: Path\(s\) do not exist: '
237
458
def test_status_out_of_date(self):
238
459
"""Simulate status of out-of-date tree after remote push"""
269
505
class TestStatus(TestCaseWithTransport):
271
507
def test_status_plain(self):
508
tree = self.make_branch_and_tree('.')
274
510
self.build_tree(['hello.txt'])
275
511
result = self.run_bzr("status")[0]
276
512
self.assertContainsRe(result, "unknown:\n hello.txt\n")
278
self.run_bzr("add", "hello.txt")
514
tree.add("hello.txt")
279
515
result = self.run_bzr("status")[0]
280
516
self.assertContainsRe(result, "added:\n hello.txt\n")
282
self.run_bzr("commit", "-m", "added")
283
result = self.run_bzr("status", "-r", "0..1")[0]
518
tree.commit(message="added")
519
result = self.run_bzr("status -r 0..1")[0]
520
self.assertContainsRe(result, "added:\n hello.txt\n")
522
result = self.run_bzr("status -c 1")[0]
284
523
self.assertContainsRe(result, "added:\n hello.txt\n")
286
525
self.build_tree(['world.txt'])
287
result = self.run_bzr("status", "-r", "0")[0]
526
result = self.run_bzr("status -r 0")[0]
288
527
self.assertContainsRe(result, "added:\n hello.txt\n" \
289
528
"unknown:\n world.txt\n")
290
result2 = self.run_bzr("status", "-r", "0..")[0]
529
result2 = self.run_bzr("status -r 0..")[0]
291
530
self.assertEquals(result2, result)
293
532
def test_status_short(self):
533
tree = self.make_branch_and_tree('.')
296
535
self.build_tree(['hello.txt'])
297
result = self.run_bzr("status","--short")[0]
536
result = self.run_bzr("status --short")[0]
298
537
self.assertContainsRe(result, "[?] hello.txt\n")
300
self.run_bzr("add", "hello.txt")
301
result = self.run_bzr("status","--short")[0]
539
tree.add("hello.txt")
540
result = self.run_bzr("status --short")[0]
302
541
self.assertContainsRe(result, "[+]N hello.txt\n")
304
self.run_bzr("commit", "-m", "added")
305
result = self.run_bzr("status", "--short", "-r", "0..1")[0]
543
tree.commit(message="added")
544
result = self.run_bzr("status --short -r 0..1")[0]
306
545
self.assertContainsRe(result, "[+]N hello.txt\n")
308
547
self.build_tree(['world.txt'])
309
result = self.run_bzr("status", "--short", "-r", "0")[0]
548
result = self.run_bzr("status --short -r 0")[0]
310
549
self.assertContainsRe(result, "[+]N hello.txt\n" \
311
550
"[?] world.txt\n")
312
result2 = self.run_bzr("status", "--short", "-r", "0..")[0]
551
result2 = self.run_bzr("status --short -r 0..")[0]
313
552
self.assertEquals(result2, result)
315
554
def test_status_versioned(self):
555
tree = self.make_branch_and_tree('.')
318
557
self.build_tree(['hello.txt'])
319
result = self.run_bzr("status", "--versioned")[0]
558
result = self.run_bzr("status --versioned")[0]
320
559
self.assertNotContainsRe(result, "unknown:\n hello.txt\n")
322
self.run_bzr("add", "hello.txt")
323
result = self.run_bzr("status", "--versioned")[0]
561
tree.add("hello.txt")
562
result = self.run_bzr("status --versioned")[0]
324
563
self.assertContainsRe(result, "added:\n hello.txt\n")
326
self.run_bzr("commit", "-m", "added")
327
result = self.run_bzr("status", "--versioned", "-r", "0..1")[0]
566
result = self.run_bzr("status --versioned -r 0..1")[0]
328
567
self.assertContainsRe(result, "added:\n hello.txt\n")
330
569
self.build_tree(['world.txt'])
331
result = self.run_bzr("status", "--versioned", "-r", "0")[0]
570
result = self.run_bzr("status --versioned -r 0")[0]
332
571
self.assertContainsRe(result, "added:\n hello.txt\n")
333
572
self.assertNotContainsRe(result, "unknown:\n world.txt\n")
334
result2 = self.run_bzr("status", "--versioned", "-r", "0..")[0]
573
result2 = self.run_bzr("status --versioned -r 0..")[0]
574
self.assertEquals(result2, result)
576
def test_status_SV(self):
577
tree = self.make_branch_and_tree('.')
579
self.build_tree(['hello.txt'])
580
result = self.run_bzr("status -SV")[0]
581
self.assertNotContainsRe(result, "hello.txt")
583
tree.add("hello.txt")
584
result = self.run_bzr("status -SV")[0]
585
self.assertContainsRe(result, "[+]N hello.txt\n")
587
tree.commit(message="added")
588
result = self.run_bzr("status -SV -r 0..1")[0]
589
self.assertContainsRe(result, "[+]N hello.txt\n")
591
self.build_tree(['world.txt'])
592
result = self.run_bzr("status -SV -r 0")[0]
593
self.assertContainsRe(result, "[+]N hello.txt\n")
595
result2 = self.run_bzr("status -SV -r 0..")[0]
335
596
self.assertEquals(result2, result)
337
598
def assertStatusContains(self, pattern):
338
599
"""Run status, and assert it contains the given pattern"""
339
result = self.run_bzr("status", "--short")[0]
600
result = self.run_bzr("status --short")[0]
340
601
self.assertContainsRe(result, pattern)
342
603
def test_kind_change_short(self):
352
613
rmdir('directory')
353
614
self.assertStatusContains('RD file => directory')
616
def test_status_illegal_revision_specifiers(self):
617
out, err = self.run_bzr('status -r 1..23..123', retcode=3)
618
self.assertContainsRe(err, 'one or two revision specifiers')
620
def test_status_no_pending(self):
621
a_tree = self.make_branch_and_tree('a')
622
self.build_tree(['a/a'])
625
b_tree = a_tree.bzrdir.sprout('b').open_workingtree()
626
self.build_tree(['b/b'])
630
self.run_bzr('merge ../b', working_dir='a')
631
out, err = self.run_bzr('status --no-pending', working_dir='a')
632
self.assertEquals(out, "added:\n b\n")
634
def test_pending_specific_files(self):
635
"""With a specific file list, pending merges are not shown."""
636
tree = self.make_branch_and_tree('tree')
637
self.build_tree_contents([('tree/a', 'content of a\n')])
639
r1_id = tree.commit('one')
640
alt = tree.bzrdir.sprout('alt').open_workingtree()
641
self.build_tree_contents([('alt/a', 'content of a\nfrom alt\n')])
642
alt_id = alt.commit('alt')
643
tree.merge_from_branch(alt.branch)
644
output = self.make_utf8_encoded_stringio()
645
show_tree_status(tree, to_file=output)
646
self.assertContainsRe(output.getvalue(), 'pending merge')
647
out, err = self.run_bzr('status tree/a')
648
self.assertNotContainsRe(out, 'pending merge')
356
651
class TestStatusEncodings(TestCaseWithTransport):
359
654
TestCaseWithTransport.setUp(self)
360
self.user_encoding = bzrlib.user_encoding
655
self.user_encoding = osutils._cached_user_encoding
361
656
self.stdout = sys.stdout
363
658
def tearDown(self):
364
bzrlib.user_encoding = self.user_encoding
659
osutils._cached_user_encoding = self.user_encoding
365
660
sys.stdout = self.stdout
366
661
TestCaseWithTransport.tearDown(self)