~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-03-11 13:47:06 UTC
  • mfrom: (5051.3.16 use-branch-open)
  • Revision ID: pqm@pqm.ubuntu.com-20100311134706-kaerqhx3lf7xn6rh
(Jelmer) Pass colocated branch names further down the call stack.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006, 2007 Canonical Ltd
 
1
# Copyright (C) 2006-2010 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
12
12
#
13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
 
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
17
17
 
18
18
"""Test "bzr init"""
22
22
 
23
23
from bzrlib import (
24
24
    branch as _mod_branch,
 
25
    osutils,
 
26
    urlutils,
25
27
    )
26
28
from bzrlib.bzrdir import BzrDirMetaFormat1
27
29
from bzrlib.tests import TestSkipped
32
34
 
33
35
class TestInit(ExternalBase):
34
36
 
 
37
    def setUp(self):
 
38
        ExternalBase.setUp(self)
 
39
        self._default_label = '2a'
 
40
 
35
41
    def test_init_with_format(self):
36
42
        # Verify bzr init --format constructs something plausible
37
43
        t = self.get_transport()
44
50
        # --format=weave should be accepted to allow interoperation with
45
51
        # old releases when desired.
46
52
        out, err = self.run_bzr('init --format=weave')
47
 
        self.assertEqual("""Standalone tree (format: weave)
48
 
Location:
49
 
  branch root: .
50
 
""", out)
 
53
        self.assertEqual("""Created a standalone tree (format: weave)\n""",
 
54
            out)
 
55
        self.assertEqual('', err)
 
56
 
 
57
    def test_init_format_2a(self):
 
58
        """Smoke test for constructing a format 2a repoistory."""
 
59
        out, err = self.run_bzr('init --format=2a')
 
60
        self.assertEqual("""Created a standalone tree (format: 2a)\n""",
 
61
            out)
51
62
        self.assertEqual('', err)
52
63
 
53
64
    def test_init_at_repository_root(self):
60
71
        repo = newdir.create_repository(shared=True)
61
72
        repo.set_make_working_trees(False)
62
73
        out, err = self.run_bzr('init repo')
63
 
        self.assertEqual(
64
 
"""Repository tree (format: pack-0.92)
65
 
Location:
66
 
  shared repository: repo
67
 
  repository branch: repo
68
 
""", out)
 
74
        self.assertEqual("""Created a repository tree (format: %s)
 
75
Using shared repository: %s
 
76
""" % (self._default_label, urlutils.local_path_from_url(
 
77
            repo.bzrdir.root_transport.external_url())), out)
 
78
        cwd = osutils.getcwd()
 
79
        self.assertEndsWith(out, cwd + '/repo/\n')
69
80
        self.assertEqual('', err)
70
81
        newdir.open_branch()
71
82
        newdir.open_workingtree()
72
 
        
 
83
 
73
84
    def test_init_branch(self):
74
85
        out, err = self.run_bzr('init')
75
 
        self.assertEqual(
76
 
"""Standalone tree (format: pack-0.92)
77
 
Location:
78
 
  branch root: .
79
 
""", out)
 
86
        self.assertEqual("Created a standalone tree (format: %s)\n" % (
 
87
            self._default_label,), out)
80
88
        self.assertEqual('', err)
81
89
 
82
90
        # Can it handle subdirectories of branches too ?
83
91
        out, err = self.run_bzr('init subdir1')
84
 
        self.assertEqual(
85
 
"""Standalone tree (format: pack-0.92)
86
 
Location:
87
 
  branch root: subdir1
88
 
""", out)
 
92
        self.assertEqual("Created a standalone tree (format: %s)\n" % (
 
93
            self._default_label,), out)
89
94
        self.assertEqual('', err)
90
95
        WorkingTree.open('subdir1')
91
 
        
 
96
 
92
97
        self.run_bzr_error(['Parent directory of subdir2/nothere does not exist'],
93
98
                            'init subdir2/nothere')
94
99
        out, err = self.run_bzr('init subdir2/nothere', retcode=3)
95
100
        self.assertEqual('', out)
96
 
        
 
101
 
97
102
        os.mkdir('subdir2')
98
103
        out, err = self.run_bzr('init subdir2')
99
 
        self.assertEqual("""Standalone tree (format: pack-0.92)
100
 
Location:
101
 
  branch root: subdir2
102
 
""", out)
 
104
        self.assertEqual("Created a standalone tree (format: %s)\n" % (
 
105
            self._default_label,), out)
103
106
        self.assertEqual('', err)
104
107
        # init an existing branch.
105
108
        out, err = self.run_bzr('init subdir2', retcode=3)
142
145
        except UnicodeError:
143
146
            raise TestSkipped("Unable to create Unicode filename")
144
147
        # try to init unicode dir
145
 
        self.run_bzr(['init', u'mu-\xb5'])
 
148
        self.run_bzr(['init', '-q', u'mu-\xb5'])
146
149
 
147
150
    def create_simple_tree(self):
148
151
        tree = self.make_branch_and_tree('tree')
165
168
 
166
169
    def test_init(self):
167
170
        # init on a remote url should succeed.
168
 
        out, err = self.run_bzr(['init', self.get_url()])
169
 
        self.assertStartsWith(out, """Standalone branch (format: pack-0.92)
170
 
Location:
171
 
  branch root: """)
 
171
        out, err = self.run_bzr(['init', '--pack-0.92', self.get_url()])
 
172
        self.assertEqual(out,
 
173
            """Created a standalone branch (format: pack-0.92)\n""")
172
174
        self.assertEqual('', err)
173
 
    
 
175
 
174
176
    def test_init_existing_branch(self):
175
177
        # when there is already a branch present, make mention
176
178
        self.make_branch('.')