1
# Copyright (C) 2006, 2007 Canonical Ltd
1
# Copyright (C) 2006-2010 Canonical Ltd
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
23
23
from bzrlib import (
24
24
branch as _mod_branch,
27
28
from bzrlib.bzrdir import BzrDirMetaFormat1
28
29
from bzrlib.tests import TestSkipped
29
from bzrlib.tests.blackbox import ExternalBase
30
from bzrlib.tests import TestCaseWithTransport
30
31
from bzrlib.tests.test_sftp_transport import TestCaseWithSFTPServer
31
32
from bzrlib.workingtree import WorkingTree
34
class TestInit(ExternalBase):
35
class TestInit(TestCaseWithTransport):
38
TestCaseWithTransport.setUp(self)
39
self._default_label = '2a'
36
41
def test_init_with_format(self):
37
42
# Verify bzr init --format constructs something plausible
50
55
self.assertEqual('', err)
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""",
62
self.assertEqual('', err)
52
64
def test_init_at_repository_root(self):
53
65
# bzr init at the root of a repository should create a branch
54
66
# and working tree even when creation of working trees is disabled.
59
71
repo = newdir.create_repository(shared=True)
60
72
repo.set_make_working_trees(False)
61
73
out, err = self.run_bzr('init repo')
62
self.assertEqual("""Created a repository tree (format: pack-0.92)
74
self.assertEqual("""Created a repository tree (format: %s)
63
75
Using shared repository: %s
64
""" % urlutils.local_path_from_url(
65
repo.bzrdir.root_transport.external_url()), out)
66
self.assertEndsWith(out, "bzrlib.tests.blackbox.test_init.TestInit."
67
"test_init_at_repository_root/work/repo/\n")
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')
68
80
self.assertEqual('', err)
69
81
newdir.open_branch()
70
82
newdir.open_workingtree()
72
84
def test_init_branch(self):
73
85
out, err = self.run_bzr('init')
74
self.assertEqual("""Created a standalone tree (format: pack-0.92)\n""",
86
self.assertEqual("Created a standalone tree (format: %s)\n" % (
87
self._default_label,), out)
76
88
self.assertEqual('', err)
78
90
# Can it handle subdirectories of branches too ?
79
91
out, err = self.run_bzr('init subdir1')
80
self.assertEqual("""Created a standalone tree (format: pack-0.92)\n""",
92
self.assertEqual("Created a standalone tree (format: %s)\n" % (
93
self._default_label,), out)
82
94
self.assertEqual('', err)
83
95
WorkingTree.open('subdir1')
90
102
os.mkdir('subdir2')
91
103
out, err = self.run_bzr('init subdir2')
92
self.assertEqual("""Created a standalone tree (format: pack-0.92)\n""",
104
self.assertEqual("Created a standalone tree (format: %s)\n" % (
105
self._default_label,), out)
94
106
self.assertEqual('', err)
95
107
# init an existing branch.
96
108
out, err = self.run_bzr('init subdir2', retcode=3)
157
169
def test_init(self):
158
170
# init on a remote url should succeed.
159
out, err = self.run_bzr(['init', self.get_url()])
171
out, err = self.run_bzr(['init', '--pack-0.92', self.get_url()])
160
172
self.assertEqual(out,
161
173
"""Created a standalone branch (format: pack-0.92)\n""")
162
174
self.assertEqual('', err)
184
196
def test_init_append_revisions_only(self):
185
197
self.run_bzr('init --dirstate-tags normal_branch6')
186
198
branch = _mod_branch.Branch.open('normal_branch6')
187
self.assertEqual(False, branch._get_append_revisions_only())
199
self.assertEqual(None, branch._get_append_revisions_only())
188
200
self.run_bzr('init --append-revisions-only --dirstate-tags branch6')
189
201
branch = _mod_branch.Branch.open('branch6')
190
202
self.assertEqual(True, branch._get_append_revisions_only())
191
203
self.run_bzr_error(['cannot be set to append-revisions-only'],
192
204
'init --append-revisions-only --knit knit')
206
def test_init_without_username(self):
207
"""Ensure init works if username is not set.
209
# bzr makes user specified whoami mandatory for operations
210
# like commit as whoami is recorded. init however is not so final
211
# and uses whoami only in a lock file. Without whoami the login name
212
# is used. This test is to ensure that init passes even when whoami
214
osutils.set_or_unset_env('EMAIL', None)
215
osutils.set_or_unset_env('BZR_EMAIL', None)
216
out, err = self.run_bzr(['init', 'foo'])
217
self.assertEqual(err, '')
218
self.assertTrue(os.path.exists('foo'))