~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_branches.py

  • Committer: Patch Queue Manager
  • Date: 2015-12-17 18:39:00 UTC
  • mfrom: (6606.1.2 fix-float)
  • Revision ID: pqm@pqm.ubuntu.com-20151217183900-0719du2uv1kwu3lc
(vila) Inline testtools private method to fix an issue in xenial (the
 private implementation has changed in an backward incompatible way).
 (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
"""Black-box tests for bzr branches."""
19
19
 
 
20
from bzrlib.bzrdir import BzrDir
20
21
from bzrlib.tests import TestCaseWithTransport
21
22
 
22
23
 
27
28
        # support.
28
29
        self.run_bzr('init a')
29
30
        out, err = self.run_bzr('branches a')
30
 
        self.assertEquals(out, " (default)\n")
 
31
        self.assertEquals(out, "* (default)\n")
31
32
 
32
33
    def test_no_branch(self):
33
34
        # Listing the branches in a control directory without branches.
58
59
        self.assertIs(True, 'source/subsource' in lines, lines)
59
60
        self.assertIs(True, 'checkout/subcheckout' in lines, lines)
60
61
        self.assertIs(True, 'checkout' not in lines, lines)
 
62
 
 
63
    def test_indicates_non_branch(self):
 
64
        t = self.make_branch_and_tree('a', format='development-colo')
 
65
        t.bzrdir.create_branch(name='another')
 
66
        t.bzrdir.create_branch(name='colocated')
 
67
        out, err = self.run_bzr('branches a')
 
68
        self.assertEquals(out, "* (default)\n"
 
69
                               "  another\n"
 
70
                               "  colocated\n")
 
71
 
 
72
    def test_indicates_branch(self):
 
73
        t = self.make_repository('a', format='development-colo')
 
74
        t.bzrdir.create_branch(name='another')
 
75
        branch = t.bzrdir.create_branch(name='colocated')
 
76
        t.bzrdir.set_branch_reference(target_branch=branch)
 
77
        out, err = self.run_bzr('branches a')
 
78
        self.assertEquals(out, "  another\n"
 
79
                               "* colocated\n")
 
80
 
 
81
    def test_shared_repos(self):
 
82
        self.make_repository('a', shared=True)
 
83
        BzrDir.create_branch_convenience('a/branch1')
 
84
        b = BzrDir.create_branch_convenience('a/branch2')
 
85
        b.create_checkout(lightweight=True, to_location='b')
 
86
        out, err = self.run_bzr('branches b')
 
87
        self.assertEquals(out, "  branch1\n"
 
88
                               "* branch2\n")
 
89
 
 
90
    def test_standalone_branch(self):
 
91
        self.make_branch('a')
 
92
        out, err = self.run_bzr('branches a')
 
93
        self.assertEquals(out, "* (default)\n")