~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

(gz) Backslash escape selftest output when printing to non-unicode consoles
 (Martin [gz])

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006, 2007, 2009 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
15
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
17
17
 
18
 
"""Test "bzr init"""
 
18
"""Test 'bzr init'"""
19
19
 
20
20
import os
21
21
import re
22
22
 
23
23
from bzrlib import (
24
24
    branch as _mod_branch,
 
25
    config as _mod_config,
25
26
    osutils,
26
27
    urlutils,
27
28
    )
28
29
from bzrlib.bzrdir import BzrDirMetaFormat1
29
30
from bzrlib.tests import TestSkipped
30
 
from bzrlib.tests.blackbox import ExternalBase
 
31
from bzrlib.tests import TestCaseWithTransport
31
32
from bzrlib.tests.test_sftp_transport import TestCaseWithSFTPServer
32
33
from bzrlib.workingtree import WorkingTree
33
34
 
34
35
 
35
 
class TestInit(ExternalBase):
 
36
class TestInit(TestCaseWithTransport):
36
37
 
37
38
    def setUp(self):
38
 
        ExternalBase.setUp(self)
 
39
        TestCaseWithTransport.setUp(self)
39
40
        self._default_label = '2a'
40
41
 
41
42
    def test_init_with_format(self):
163
164
        self.run_bzr('init ../new/tree --create-prefix', working_dir='tree')
164
165
        self.failUnlessExists('new/tree/.bzr')
165
166
 
 
167
    def test_init_default_format_option(self):
 
168
        """bzr init should read default format from option default_format"""
 
169
        conf = _mod_config.GlobalConfig.from_string('''
 
170
[DEFAULT]
 
171
default_format = 1.9
 
172
''', save=True)
 
173
        out, err = self.run_bzr_subprocess('init')
 
174
        self.assertContainsRe(out, '1.9')
 
175
 
 
176
    def test_init_no_tree(self):
 
177
        """'bzr init --no-tree' creates a branch with no working tree."""
 
178
        out, err = self.run_bzr('init --no-tree')
 
179
        self.assertStartsWith(out, 'Created a standalone branch')
 
180
 
166
181
 
167
182
class TestSFTPInit(TestCaseWithSFTPServer):
168
183
 
196
211
    def test_init_append_revisions_only(self):
197
212
        self.run_bzr('init --dirstate-tags normal_branch6')
198
213
        branch = _mod_branch.Branch.open('normal_branch6')
199
 
        self.assertEqual(False, branch._get_append_revisions_only())
 
214
        self.assertEqual(None, branch._get_append_revisions_only())
200
215
        self.run_bzr('init --append-revisions-only --dirstate-tags branch6')
201
216
        branch = _mod_branch.Branch.open('branch6')
202
217
        self.assertEqual(True, branch._get_append_revisions_only())
203
218
        self.run_bzr_error(['cannot be set to append-revisions-only'],
204
219
                           'init --append-revisions-only --knit knit')
 
220
 
 
221
    def test_init_without_username(self):
 
222
        """Ensure init works if username is not set.
 
223
        """
 
224
        # bzr makes user specified whoami mandatory for operations
 
225
        # like commit as whoami is recorded. init however is not so final
 
226
        # and uses whoami only in a lock file. Without whoami the login name
 
227
        # is used. This test is to ensure that init passes even when whoami
 
228
        # is not available.
 
229
        osutils.set_or_unset_env('EMAIL', None)
 
230
        osutils.set_or_unset_env('BZR_EMAIL', None)
 
231
        out, err = self.run_bzr(['init', 'foo'])
 
232
        self.assertEqual(err, '')
 
233
        self.assertTrue(os.path.exists('foo'))
 
234