~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

(jameinel) Allow 'bzr serve' to interpret SIGHUP as a graceful shutdown.
 (bug #795025) (John A Meinel)

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)