~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: 2012-02-23 19:11:01 UTC
  • mfrom: (6472.1.1 merge-2.5)
  • Revision ID: pqm@pqm.ubuntu.com-20120223191101-x6g60ci59rhkvp3e
(jelmer) Merge bzr/2.5. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2011 Canonical Ltd
 
2
#
 
3
# This program is free software; you can redistribute it and/or modify
 
4
# it under the terms of the GNU General Public License as published by
 
5
# the Free Software Foundation; either version 2 of the License, or
 
6
# (at your option) any later version.
 
7
#
 
8
# This program is distributed in the hope that it will be useful,
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
# GNU General Public License for more details.
 
12
#
 
13
# You should have received a copy of the GNU General Public License
 
14
# along with this program; if not, write to the Free Software
 
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
16
 
 
17
 
 
18
"""Black-box tests for bzr branches."""
 
19
 
 
20
from bzrlib.tests import TestCaseWithTransport
 
21
 
 
22
 
 
23
class TestBranches(TestCaseWithTransport):
 
24
 
 
25
    def test_no_colocated_support(self):
 
26
        # Listing the branches in a control directory without colocated branch
 
27
        # support.
 
28
        self.run_bzr('init a')
 
29
        out, err = self.run_bzr('branches a')
 
30
        self.assertEquals(out, "* (default)\n")
 
31
 
 
32
    def test_no_branch(self):
 
33
        # Listing the branches in a control directory without branches.
 
34
        self.run_bzr('init-repo a')
 
35
        out, err = self.run_bzr('branches a')
 
36
        self.assertEquals(out, "")
 
37
 
 
38
    def test_default_current_dir(self):
 
39
        # "bzr branches" list the branches in the current directory
 
40
        # if no location was specified.
 
41
        self.run_bzr('init-repo a')
 
42
        out, err = self.run_bzr('branches', working_dir='a')
 
43
        self.assertEquals(out, "")
 
44
 
 
45
    def test_recursive_current(self):
 
46
        self.run_bzr('init .')
 
47
        self.assertEquals(".\n", self.run_bzr('branches --recursive')[0])
 
48
 
 
49
    def test_recursive(self):
 
50
        self.run_bzr('init source')
 
51
        self.run_bzr('init source/subsource')
 
52
        self.run_bzr('checkout --lightweight source checkout')
 
53
        self.run_bzr('init checkout/subcheckout')
 
54
        self.run_bzr('init checkout/.bzr/subcheckout')
 
55
        out = self.run_bzr('branches --recursive')[0]
 
56
        lines = out.split('\n')
 
57
        self.assertIs(True, 'source' in lines, lines)
 
58
        self.assertIs(True, 'source/subsource' in lines, lines)
 
59
        self.assertIs(True, 'checkout/subcheckout' in lines, lines)
 
60
        self.assertIs(True, 'checkout' not in lines, lines)
 
61
 
 
62
    def test_indicates_non_branch(self):
 
63
        t = self.make_branch_and_tree('a', format='development-colo')
 
64
        t.bzrdir.create_branch(name='another')
 
65
        t.bzrdir.create_branch(name='colocated')
 
66
        out, err = self.run_bzr('branches a')
 
67
        self.assertEquals(out, "* (default)\n"
 
68
                               "  another\n"
 
69
                               "  colocated\n")
 
70
 
 
71
    def test_indicates_branch(self):
 
72
        t = self.make_repository('a', format='development-colo')
 
73
        t.bzrdir.create_branch(name='another')
 
74
        branch = t.bzrdir.create_branch(name='colocated')
 
75
        t.bzrdir.set_branch_reference(target_branch=branch)
 
76
        out, err = self.run_bzr('branches a')
 
77
        self.assertEquals(out, "  another\n"
 
78
                               "* colocated\n")