44
44
class BranchStatus(TestCaseWithTransport):
46
46
def assertStatus(self, expected_lines, working_tree,
47
revision=None, short=False, pending=True):
47
revision=None, short=False):
48
48
"""Run status in working_tree and look for output.
50
50
:param expected_lines: The lines to look for.
51
51
:param working_tree: The tree to run status in.
53
output_string = self.status_string(working_tree, revision, short,
53
output_string = self.status_string(working_tree, revision, short)
55
54
self.assertEqual(expected_lines, output_string.splitlines(True))
57
def status_string(self, wt, revision=None, short=False, pending=True):
56
def status_string(self, wt, revision=None, short=False):
58
57
# use a real file rather than StringIO because it doesn't handle
59
58
# Unicode very well.
60
59
tof = codecs.getwriter('utf-8')(TemporaryFile())
61
show_tree_status(wt, to_file=tof, revision=revision, short=short,
60
show_tree_status(wt, to_file=tof, revision=revision, short=short)
64
62
return tof.read().decode('utf-8')
97
95
'pending merges:\n',
98
' (ghost) pending@pending-0-0\n',
96
' pending@pending-0-0\n',
101
99
self.assertStatus([
104
'P (ghost) pending@pending-0-0\n',
102
'P pending@pending-0-0\n',
117
wt, short=True, pending=False)
119
106
def test_branch_status_revisions(self):
120
107
"""Tests branch status with revisions"""
428
415
out, err = self.run_bzr('status -r 1..23..123', retcode=3)
429
416
self.assertContainsRe(err, 'one or two revision specifiers')
431
def test_status_no_pending(self):
432
a_tree = self.make_branch_and_tree('a')
433
self.build_tree(['a/a'])
436
b_tree = a_tree.bzrdir.sprout('b').open_workingtree()
437
self.build_tree(['b/b'])
441
self.run_bzr('merge ../b', working_dir='a')
442
out, err = self.run_bzr('status --no-pending', working_dir='a')
443
self.assertEquals(out, "added:\n b\n")
445
def test_pending_specific_files(self):
446
"""With a specific file list, pending merges are not shown."""
447
tree = self.make_branch_and_tree('tree')
448
self.build_tree_contents([('tree/a', 'content of a\n')])
450
r1_id = tree.commit('one')
451
alt = tree.bzrdir.sprout('alt').open_workingtree()
452
self.build_tree_contents([('alt/a', 'content of a\nfrom alt\n')])
453
alt_id = alt.commit('alt')
454
tree.merge_from_branch(alt.branch)
455
output = self.make_utf8_encoded_stringio()
456
show_tree_status(tree, to_file=output)
457
self.assertContainsRe(output.getvalue(), 'pending merges:')
458
out, err = self.run_bzr('status tree/a')
459
self.assertNotContainsRe(out, 'pending merges:')
462
419
class TestStatusEncodings(TestCaseWithTransport):