53
53
status._show_shelve_summary,
56
def assertStatus(self, expected_lines, working_tree,
56
def assertStatus(self, expected_lines, working_tree, specific_files=None,
57
57
revision=None, short=False, pending=True, verbose=False):
58
58
"""Run status in working_tree and look for output.
60
60
:param expected_lines: The lines to look for.
61
61
:param working_tree: The tree to run status in.
63
output_string = self.status_string(working_tree, revision, short,
63
output_string = self.status_string(working_tree, specific_files, revision, short,
65
65
self.assertEqual(expected_lines, output_string.splitlines(True))
67
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):
69
69
# use a real file rather than StringIO because it doesn't handle
70
70
# Unicode very well.
71
71
tof = codecs.getwriter('utf-8')(TemporaryFile())
72
show_tree_status(wt, to_file=tof, revision=revision, short=short,
73
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,
75
76
return tof.read().decode('utf-8')
211
212
wt = self.make_branch_and_tree('.')
214
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/',
215
218
wt.add('directory')
217
220
wt.commit('testing')
219
224
self.assertStatus([
270
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(),
272
294
def test_specific_files_conflicts(self):
273
295
tree = self.make_branch_and_tree('.')
274
296
self.build_tree(['dir2/'])
305
327
wt.commit('Create five empty files.')
306
open('FILE_B', 'w').write('Modification to file FILE_B.')
307
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.')
308
330
unlink('FILE_E') # FILE_E will be versioned but missing
309
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.')
310
332
wt.add('FILE_Q') # FILE_Q will be added but not committed
311
333
open('UNVERSIONED_BUT_EXISTING', 'w')
457
479
'X NONEXISTENT\n',
459
482
out, err = self.run_bzr('status --short NONEXISTENT '
460
483
'FILE_A FILE_B UNVERSIONED_BUT_EXISTING '
461
484
'FILE_C FILE_D FILE_E FILE_Q', retcode=3)
462
self.assertEqual(expected, out.splitlines(True))
485
actual = out.splitlines(True)
487
self.assertEqual(expected, actual)
463
488
self.assertContainsRe(err,
464
489
r'.*ERROR: Path\(s\) do not exist: '
541
566
self.assertStatus([
544
'1 shelves exist. See "bzr shelve --list" for details.\n',
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'])
549
591
class CheckoutStatus(BranchStatus):
604
646
self.assertContainsRe(result, "[+]N hello.txt\n")
606
648
self.build_tree(['world.txt'])
607
result = self.run_bzr("status --short -r 0")[0]
649
result = self.run_bzr("status -S -r 0")[0]
608
650
self.assertContainsRe(result, "[+]N hello.txt\n" \
609
651
"[?] world.txt\n")
610
result2 = self.run_bzr("status --short -r 0..")[0]
652
result2 = self.run_bzr("status -S -r 0..")[0]
611
653
self.assertEquals(result2, result)
613
655
def test_status_versioned(self):