45
46
class BranchStatus(TestCaseWithTransport):
47
def assertStatus(self, expected_lines, working_tree,
49
super(BranchStatus, self).setUp()
50
# As TestCase.setUp clears all hooks, we install this default
51
# post_status hook handler for the test.
52
status.hooks.install_named_hook('post_status',
53
status._show_shelve_summary,
56
def assertStatus(self, expected_lines, working_tree, specific_files=None,
48
57
revision=None, short=False, pending=True, verbose=False):
49
58
"""Run status in working_tree and look for output.
51
60
:param expected_lines: The lines to look for.
52
61
:param working_tree: The tree to run status in.
54
output_string = self.status_string(working_tree, revision, short,
63
output_string = self.status_string(working_tree, specific_files, revision, short,
56
65
self.assertEqual(expected_lines, output_string.splitlines(True))
58
def status_string(self, wt, revision=None, short=False, pending=True,
67
def status_string(self, wt, specific_files=None, revision=None,
68
short=False, pending=True, verbose=False):
60
69
# use a real file rather than StringIO because it doesn't handle
61
70
# Unicode very well.
62
71
tof = codecs.getwriter('utf-8')(TemporaryFile())
63
show_tree_status(wt, to_file=tof, revision=revision, short=short,
64
show_pending=pending, verbose=verbose)
72
show_tree_status(wt, specific_files=specific_files, to_file=tof,
73
revision=revision, short=short, show_pending=pending,
66
76
return tof.read().decode('utf-8')
202
212
wt = self.make_branch_and_tree('.')
205
self.build_tree(['directory/','directory/hello.c', 'bye.c','test.c','dir2/'])
215
self.build_tree(['directory/','directory/hello.c',
216
'bye.c','test.c','dir2/',
206
218
wt.add('directory')
208
220
wt.commit('testing')
210
224
self.assertStatus([
261
278
self.assertEquals(tof.readlines(), ['+N test.c\n'])
281
show_tree_status(wt, specific_files=['missing.c'], to_file=tof)
283
self.assertEquals(tof.readlines(),
288
show_tree_status(wt, specific_files=['missing.c'], to_file=tof,
291
self.assertEquals(tof.readlines(),
263
294
def test_specific_files_conflicts(self):
264
295
tree = self.make_branch_and_tree('.')
265
296
self.build_tree(['dir2/'])
296
327
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.')
328
with open('FILE_B', 'w') as f: f.write('Modification to file FILE_B.')
329
with open('FILE_C', 'w') as f: f.write('Modification to file FILE_C.')
299
330
unlink('FILE_E') # FILE_E will be versioned but missing
300
open('FILE_Q', 'w').write('FILE_Q is added but not committed.')
331
with open('FILE_Q', 'w') as f: f.write('FILE_Q is added but not committed.')
301
332
wt.add('FILE_Q') # FILE_Q will be added but not committed
302
333
open('UNVERSIONED_BUT_EXISTING', 'w')
448
479
'X NONEXISTENT\n',
450
482
out, err = self.run_bzr('status --short NONEXISTENT '
451
483
'FILE_A FILE_B UNVERSIONED_BUT_EXISTING '
452
484
'FILE_C FILE_D FILE_E FILE_Q', retcode=3)
453
self.assertEqual(expected, out.splitlines(True))
485
actual = out.splitlines(True)
487
self.assertEqual(expected, actual)
454
488
self.assertContainsRe(err,
455
489
r'.*ERROR: Path\(s\) do not exist: '
520
554
out, err = self.run_bzr('status branch1 -rbranch:branch2')
521
555
self.assertEqual('', out)
557
def test_status_with_shelves(self):
558
"""Ensure that _show_shelve_summary handler works.
560
wt = self.make_branch_and_tree('.')
561
self.build_tree(['hello.c'])
563
self.run_bzr(['shelve', '--all', '-m', 'foo'])
564
self.build_tree(['bye.c'])
569
'1 shelf exists. See "bzr shelve --list" for details.\n',
572
self.run_bzr(['shelve', '--all', '-m', 'bar'])
573
self.build_tree(['eggs.c', 'spam.c'])
580
'2 shelves exist. See "bzr shelve --list" for details.\n',
588
specific_files=['spam.c'])
524
591
class CheckoutStatus(BranchStatus):
531
598
def make_branch_and_tree(self, relpath):
532
599
source = self.make_branch(pathjoin('..', relpath))
533
600
checkout = bzrdir.BzrDirMetaFormat1().initialize(relpath)
534
bzrlib.branch.BranchReferenceFormat().initialize(checkout,
535
target_branch=source)
601
checkout.set_branch_reference(source)
536
602
return checkout.create_workingtree()
579
645
self.assertContainsRe(result, "[+]N hello.txt\n")
581
647
self.build_tree(['world.txt'])
582
result = self.run_bzr("status --short -r 0")[0]
648
result = self.run_bzr("status -S -r 0")[0]
583
649
self.assertContainsRe(result, "[+]N hello.txt\n" \
584
650
"[?] world.txt\n")
585
result2 = self.run_bzr("status --short -r 0..")[0]
651
result2 = self.run_bzr("status -S -r 0..")[0]
586
652
self.assertEquals(result2, result)
588
654
def test_status_versioned(self):