~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_bzrdir.py

  • Committer: Martin Pool
  • Date: 2009-01-13 03:11:04 UTC
  • mto: This revision was merged to the branch mainline in revision 3937.
  • Revision ID: mbp@sourcefrog.net-20090113031104-03my054s02i9l2pe
Bump version to 1.12 and add news template

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006-2011 Canonical Ltd
 
1
# Copyright (C) 2005, 2006, 2007 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
17
17
"""Tests for the BzrDir facility and any format specific tests.
18
18
 
19
 
For interface contract tests, see tests/per_bzr_dir.
 
19
For interface contract tests, see tests/bzr_dir_implementations.
20
20
"""
21
21
 
22
22
import os
 
23
import os.path
 
24
from StringIO import StringIO
23
25
import subprocess
24
26
import sys
25
27
 
26
28
from bzrlib import (
27
 
    branch,
28
29
    bzrdir,
29
 
    config,
30
 
    controldir,
31
30
    errors,
32
31
    help_topics,
33
 
    lock,
34
32
    repository,
35
 
    revision as _mod_revision,
36
33
    osutils,
37
 
    remote,
38
 
    transport as _mod_transport,
 
34
    symbol_versioning,
39
35
    urlutils,
40
36
    win32utils,
41
 
    workingtree_3,
42
 
    workingtree_4,
 
37
    workingtree,
43
38
    )
44
39
import bzrlib.branch
45
 
from bzrlib.branchfmt.fullhistory import BzrBranchFormat5
46
 
from bzrlib.errors import (
47
 
    NotBranchError,
48
 
    NoColocatedBranchSupport,
49
 
    UnknownFormatError,
50
 
    UnsupportedFormatError,
51
 
    )
 
40
from bzrlib.errors import (NotBranchError,
 
41
                           UnknownFormatError,
 
42
                           UnsupportedFormatError,
 
43
                           )
52
44
from bzrlib.tests import (
53
45
    TestCase,
54
46
    TestCaseWithMemoryTransport,
55
47
    TestCaseWithTransport,
56
48
    TestSkipped,
 
49
    test_sftp_transport
57
50
    )
58
51
from bzrlib.tests import(
59
52
    http_server,
60
53
    http_utils,
61
54
    )
62
55
from bzrlib.tests.test_http import TestWithTransport_pycurl
63
 
from bzrlib.transport import (
64
 
    memory,
65
 
    pathfilter,
66
 
    )
 
56
from bzrlib.transport import get_transport
67
57
from bzrlib.transport.http._urllib import HttpTransport_urllib
 
58
from bzrlib.transport.memory import MemoryServer
68
59
from bzrlib.transport.nosmart import NoSmartTransportDecorator
69
60
from bzrlib.transport.readonly import ReadonlyTransportDecorator
70
 
from bzrlib.repofmt import knitrepo, knitpack_repo
 
61
from bzrlib.repofmt import knitrepo, weaverepo
71
62
 
72
63
 
73
64
class TestDefaultFormat(TestCase):
74
65
 
75
66
    def test_get_set_default_format(self):
76
67
        old_format = bzrdir.BzrDirFormat.get_default_format()
77
 
        # default is BzrDirMetaFormat1
78
 
        self.assertIsInstance(old_format, bzrdir.BzrDirMetaFormat1)
79
 
        controldir.ControlDirFormat._set_default_format(SampleBzrDirFormat())
 
68
        # default is BzrDirFormat6
 
69
        self.failUnless(isinstance(old_format, bzrdir.BzrDirMetaFormat1))
 
70
        bzrdir.BzrDirFormat._set_default_format(SampleBzrDirFormat())
80
71
        # creating a bzr dir should now create an instrumented dir.
81
72
        try:
82
73
            result = bzrdir.BzrDir.create('memory:///')
83
 
            self.assertIsInstance(result, SampleBzrDir)
 
74
            self.failUnless(isinstance(result, SampleBzrDir))
84
75
        finally:
85
 
            controldir.ControlDirFormat._set_default_format(old_format)
 
76
            bzrdir.BzrDirFormat._set_default_format(old_format)
86
77
        self.assertEqual(old_format, bzrdir.BzrDirFormat.get_default_format())
87
78
 
88
79
 
89
 
class DeprecatedBzrDirFormat(bzrdir.BzrDirFormat):
90
 
    """A deprecated bzr dir format."""
91
 
 
92
 
 
93
80
class TestFormatRegistry(TestCase):
94
81
 
95
82
    def make_format_registry(self):
96
 
        my_format_registry = controldir.ControlDirFormatRegistry()
97
 
        my_format_registry.register('deprecated', DeprecatedBzrDirFormat,
98
 
            'Some format.  Slower and unawesome and deprecated.',
99
 
            deprecated=True)
100
 
        my_format_registry.register_lazy('lazy', 'bzrlib.tests.test_bzrdir',
101
 
            'DeprecatedBzrDirFormat', 'Format registered lazily',
102
 
            deprecated=True)
103
 
        bzrdir.register_metadir(my_format_registry, 'knit',
 
83
        my_format_registry = bzrdir.BzrDirFormatRegistry()
 
84
        my_format_registry.register('weave', bzrdir.BzrDirFormat6,
 
85
            'Pre-0.8 format.  Slower and does not support checkouts or shared'
 
86
            ' repositories', deprecated=True)
 
87
        my_format_registry.register_lazy('lazy', 'bzrlib.bzrdir', 
 
88
            'BzrDirFormat6', 'Format registered lazily', deprecated=True)
 
89
        my_format_registry.register_metadir('knit',
104
90
            'bzrlib.repofmt.knitrepo.RepositoryFormatKnit1',
105
91
            'Format using knits',
106
92
            )
107
93
        my_format_registry.set_default('knit')
108
 
        bzrdir.register_metadir(my_format_registry,
 
94
        my_format_registry.register_metadir(
109
95
            'branch6',
110
96
            'bzrlib.repofmt.knitrepo.RepositoryFormatKnit3',
111
97
            'Experimental successor to knit.  Use at your own risk.',
112
98
            branch_format='bzrlib.branch.BzrBranchFormat6',
113
99
            experimental=True)
114
 
        bzrdir.register_metadir(my_format_registry,
 
100
        my_format_registry.register_metadir(
115
101
            'hidden format',
116
102
            'bzrlib.repofmt.knitrepo.RepositoryFormatKnit3',
117
103
            'Experimental successor to knit.  Use at your own risk.',
118
104
            branch_format='bzrlib.branch.BzrBranchFormat6', hidden=True)
119
 
        my_format_registry.register('hiddendeprecated', DeprecatedBzrDirFormat,
120
 
            'Old format.  Slower and does not support things. ', hidden=True)
121
 
        my_format_registry.register_lazy('hiddenlazy', 'bzrlib.tests.test_bzrdir',
122
 
            'DeprecatedBzrDirFormat', 'Format registered lazily',
123
 
            deprecated=True, hidden=True)
 
105
        my_format_registry.register('hiddenweave', bzrdir.BzrDirFormat6,
 
106
            'Pre-0.8 format.  Slower and does not support checkouts or shared'
 
107
            ' repositories', hidden=True)
 
108
        my_format_registry.register_lazy('hiddenlazy', 'bzrlib.bzrdir',
 
109
            'BzrDirFormat6', 'Format registered lazily', deprecated=True,
 
110
            hidden=True)
124
111
        return my_format_registry
125
112
 
126
113
    def test_format_registry(self):
127
114
        my_format_registry = self.make_format_registry()
128
115
        my_bzrdir = my_format_registry.make_bzrdir('lazy')
129
 
        self.assertIsInstance(my_bzrdir, DeprecatedBzrDirFormat)
130
 
        my_bzrdir = my_format_registry.make_bzrdir('deprecated')
131
 
        self.assertIsInstance(my_bzrdir, DeprecatedBzrDirFormat)
 
116
        self.assertIsInstance(my_bzrdir, bzrdir.BzrDirFormat6)
 
117
        my_bzrdir = my_format_registry.make_bzrdir('weave')
 
118
        self.assertIsInstance(my_bzrdir, bzrdir.BzrDirFormat6)
132
119
        my_bzrdir = my_format_registry.make_bzrdir('default')
133
 
        self.assertIsInstance(my_bzrdir.repository_format,
 
120
        self.assertIsInstance(my_bzrdir.repository_format, 
134
121
            knitrepo.RepositoryFormatKnit1)
135
122
        my_bzrdir = my_format_registry.make_bzrdir('knit')
136
 
        self.assertIsInstance(my_bzrdir.repository_format,
 
123
        self.assertIsInstance(my_bzrdir.repository_format, 
137
124
            knitrepo.RepositoryFormatKnit1)
138
125
        my_bzrdir = my_format_registry.make_bzrdir('branch6')
139
126
        self.assertIsInstance(my_bzrdir.get_branch_format(),
143
130
        my_format_registry = self.make_format_registry()
144
131
        self.assertEqual('Format registered lazily',
145
132
                         my_format_registry.get_help('lazy'))
146
 
        self.assertEqual('Format using knits',
 
133
        self.assertEqual('Format using knits', 
147
134
                         my_format_registry.get_help('knit'))
148
 
        self.assertEqual('Format using knits',
 
135
        self.assertEqual('Format using knits', 
149
136
                         my_format_registry.get_help('default'))
150
 
        self.assertEqual('Some format.  Slower and unawesome and deprecated.',
151
 
                         my_format_registry.get_help('deprecated'))
152
 
 
 
137
        self.assertEqual('Pre-0.8 format.  Slower and does not support'
 
138
                         ' checkouts or shared repositories', 
 
139
                         my_format_registry.get_help('weave'))
 
140
        
153
141
    def test_help_topic(self):
154
142
        topics = help_topics.HelpTopicRegistry()
155
143
        registry = self.make_format_registry()
156
 
        topics.register('current-formats', registry.help_topic,
 
144
        topics.register('current-formats', registry.help_topic, 
157
145
                        'Current formats')
158
 
        topics.register('other-formats', registry.help_topic,
 
146
        topics.register('other-formats', registry.help_topic, 
159
147
                        'Other formats')
160
148
        new = topics.get_detail('current-formats')
161
149
        rest = topics.get_detail('other-formats')
162
150
        experimental, deprecated = rest.split('Deprecated formats')
163
 
        self.assertContainsRe(new, 'formats-help')
164
 
        self.assertContainsRe(new,
 
151
        self.assertContainsRe(new, 'bzr help formats')
 
152
        self.assertContainsRe(new, 
165
153
                ':knit:\n    \(native\) \(default\) Format using knits\n')
166
 
        self.assertContainsRe(experimental,
 
154
        self.assertContainsRe(experimental, 
167
155
                ':branch6:\n    \(native\) Experimental successor to knit')
168
 
        self.assertContainsRe(deprecated,
 
156
        self.assertContainsRe(deprecated, 
169
157
                ':lazy:\n    \(native\) Format registered lazily\n')
170
158
        self.assertNotContainsRe(new, 'hidden')
171
159
 
172
160
    def test_set_default_repository(self):
173
 
        default_factory = controldir.format_registry.get('default')
174
 
        old_default = [k for k, v in controldir.format_registry.iteritems()
 
161
        default_factory = bzrdir.format_registry.get('default')
 
162
        old_default = [k for k, v in bzrdir.format_registry.iteritems()
175
163
                       if v == default_factory and k != 'default'][0]
176
 
        controldir.format_registry.set_default_repository('dirstate-with-subtree')
 
164
        bzrdir.format_registry.set_default_repository('dirstate-with-subtree')
177
165
        try:
178
 
            self.assertIs(controldir.format_registry.get('dirstate-with-subtree'),
179
 
                          controldir.format_registry.get('default'))
 
166
            self.assertIs(bzrdir.format_registry.get('dirstate-with-subtree'),
 
167
                          bzrdir.format_registry.get('default'))
180
168
            self.assertIs(
181
 
                repository.format_registry.get_default().__class__,
 
169
                repository.RepositoryFormat.get_default_format().__class__,
182
170
                knitrepo.RepositoryFormatKnit3)
183
171
        finally:
184
 
            controldir.format_registry.set_default_repository(old_default)
 
172
            bzrdir.format_registry.set_default_repository(old_default)
185
173
 
186
174
    def test_aliases(self):
187
 
        a_registry = controldir.ControlDirFormatRegistry()
188
 
        a_registry.register('deprecated', DeprecatedBzrDirFormat,
189
 
            'Old format.  Slower and does not support stuff',
190
 
            deprecated=True)
191
 
        a_registry.register('deprecatedalias', DeprecatedBzrDirFormat,
192
 
            'Old format.  Slower and does not support stuff',
193
 
            deprecated=True, alias=True)
194
 
        self.assertEqual(frozenset(['deprecatedalias']), a_registry.aliases())
 
175
        a_registry = bzrdir.BzrDirFormatRegistry()
 
176
        a_registry.register('weave', bzrdir.BzrDirFormat6,
 
177
            'Pre-0.8 format.  Slower and does not support checkouts or shared'
 
178
            ' repositories', deprecated=True)
 
179
        a_registry.register('weavealias', bzrdir.BzrDirFormat6,
 
180
            'Pre-0.8 format.  Slower and does not support checkouts or shared'
 
181
            ' repositories', deprecated=True, alias=True)
 
182
        self.assertEqual(frozenset(['weavealias']), a_registry.aliases())
195
183
 
196
184
 
197
185
class SampleBranch(bzrlib.branch.Branch):
212
200
    """A sample BzrDir implementation to allow testing static methods."""
213
201
 
214
202
    def create_repository(self, shared=False):
215
 
        """See ControlDir.create_repository."""
 
203
        """See BzrDir.create_repository."""
216
204
        return "A repository"
217
205
 
218
206
    def open_repository(self):
219
 
        """See ControlDir.open_repository."""
 
207
        """See BzrDir.open_repository."""
220
208
        return SampleRepository(self)
221
209
 
222
 
    def create_branch(self, name=None):
223
 
        """See ControlDir.create_branch."""
224
 
        if name is not None:
225
 
            raise NoColocatedBranchSupport(self)
 
210
    def create_branch(self):
 
211
        """See BzrDir.create_branch."""
226
212
        return SampleBranch(self)
227
213
 
228
214
    def create_workingtree(self):
229
 
        """See ControlDir.create_workingtree."""
 
215
        """See BzrDir.create_workingtree."""
230
216
        return "A tree"
231
217
 
232
218
 
233
219
class SampleBzrDirFormat(bzrdir.BzrDirFormat):
234
220
    """A sample format
235
221
 
236
 
    this format is initializable, unsupported to aid in testing the
 
222
    this format is initializable, unsupported to aid in testing the 
237
223
    open and open_downlevel routines.
238
224
    """
239
225
 
253
239
    def open(self, transport, _found=None):
254
240
        return "opened branch."
255
241
 
256
 
    @classmethod
257
 
    def from_string(cls, format_string):
258
 
        return cls()
259
 
 
260
 
 
261
 
class BzrDirFormatTest1(bzrdir.BzrDirMetaFormat1):
262
 
 
263
 
    @staticmethod
264
 
    def get_format_string():
265
 
        return "Test format 1"
266
 
 
267
 
 
268
 
class BzrDirFormatTest2(bzrdir.BzrDirMetaFormat1):
269
 
 
270
 
    @staticmethod
271
 
    def get_format_string():
272
 
        return "Test format 2"
273
 
 
274
242
 
275
243
class TestBzrDirFormat(TestCaseWithTransport):
276
244
    """Tests for the BzrDirFormat facility."""
278
246
    def test_find_format(self):
279
247
        # is the right format object found for a branch?
280
248
        # create a branch with a few known format objects.
281
 
        bzrdir.BzrProber.formats.register(BzrDirFormatTest1.get_format_string(),
282
 
            BzrDirFormatTest1())
283
 
        self.addCleanup(bzrdir.BzrProber.formats.remove,
284
 
            BzrDirFormatTest1.get_format_string())
285
 
        bzrdir.BzrProber.formats.register(BzrDirFormatTest2.get_format_string(),
286
 
            BzrDirFormatTest2())
287
 
        self.addCleanup(bzrdir.BzrProber.formats.remove,
288
 
            BzrDirFormatTest2.get_format_string())
289
 
        t = self.get_transport()
 
249
        # this is not quite the same as 
 
250
        t = get_transport(self.get_url())
290
251
        self.build_tree(["foo/", "bar/"], transport=t)
291
252
        def check_format(format, url):
292
253
            format.initialize(url)
293
 
            t = _mod_transport.get_transport_from_path(url)
 
254
            t = get_transport(url)
294
255
            found_format = bzrdir.BzrDirFormat.find_format(t)
295
 
            self.assertIsInstance(found_format, format.__class__)
296
 
        check_format(BzrDirFormatTest1(), "foo")
297
 
        check_format(BzrDirFormatTest2(), "bar")
298
 
 
 
256
            self.failUnless(isinstance(found_format, format.__class__))
 
257
        check_format(bzrdir.BzrDirFormat5(), "foo")
 
258
        check_format(bzrdir.BzrDirFormat6(), "bar")
 
259
        
299
260
    def test_find_format_nothing_there(self):
300
261
        self.assertRaises(NotBranchError,
301
262
                          bzrdir.BzrDirFormat.find_format,
302
 
                          _mod_transport.get_transport_from_path('.'))
 
263
                          get_transport('.'))
303
264
 
304
265
    def test_find_format_unknown_format(self):
305
 
        t = self.get_transport()
 
266
        t = get_transport(self.get_url())
306
267
        t.mkdir('.bzr')
307
268
        t.put_bytes('.bzr/branch-format', '')
308
269
        self.assertRaises(UnknownFormatError,
309
270
                          bzrdir.BzrDirFormat.find_format,
310
 
                          _mod_transport.get_transport_from_path('.'))
 
271
                          get_transport('.'))
311
272
 
312
273
    def test_register_unregister_format(self):
313
274
        format = SampleBzrDirFormat()
315
276
        # make a bzrdir
316
277
        format.initialize(url)
317
278
        # register a format for it.
318
 
        bzrdir.BzrProber.formats.register(format.get_format_string(), format)
 
279
        bzrdir.BzrDirFormat.register_format(format)
319
280
        # which bzrdir.Open will refuse (not supported)
320
281
        self.assertRaises(UnsupportedFormatError, bzrdir.BzrDir.open, url)
321
282
        # which bzrdir.open_containing will refuse (not supported)
322
283
        self.assertRaises(UnsupportedFormatError, bzrdir.BzrDir.open_containing, url)
323
284
        # but open_downlevel will work
324
 
        t = _mod_transport.get_transport_from_url(url)
 
285
        t = get_transport(url)
325
286
        self.assertEqual(format.open(t), bzrdir.BzrDir.open_unsupported(url))
326
287
        # unregister the format
327
 
        bzrdir.BzrProber.formats.remove(format.get_format_string())
 
288
        bzrdir.BzrDirFormat.unregister_format(format)
328
289
        # now open_downlevel should fail too.
329
290
        self.assertRaises(UnknownFormatError, bzrdir.BzrDir.open_unsupported, url)
330
291
 
337
298
    def test_create_branch_and_repo_under_shared(self):
338
299
        # creating a branch and repo in a shared repo uses the
339
300
        # shared repository
340
 
        format = controldir.format_registry.make_bzrdir('knit')
 
301
        format = bzrdir.format_registry.make_bzrdir('knit')
341
302
        self.make_repository('.', shared=True, format=format)
342
303
        branch = bzrdir.BzrDir.create_branch_and_repo(
343
304
            self.get_url('child'), format=format)
345
306
                          branch.bzrdir.open_repository)
346
307
 
347
308
    def test_create_branch_and_repo_under_shared_force_new(self):
348
 
        # creating a branch and repo in a shared repo can be forced to
 
309
        # creating a branch and repo in a shared repo can be forced to 
349
310
        # make a new repo
350
 
        format = controldir.format_registry.make_bzrdir('knit')
 
311
        format = bzrdir.format_registry.make_bzrdir('knit')
351
312
        self.make_repository('.', shared=True, format=format)
352
313
        branch = bzrdir.BzrDir.create_branch_and_repo(self.get_url('child'),
353
314
                                                      force_new_repo=True,
356
317
 
357
318
    def test_create_standalone_working_tree(self):
358
319
        format = SampleBzrDirFormat()
359
 
        # note this is deliberately readonly, as this failure should
 
320
        # note this is deliberately readonly, as this failure should 
360
321
        # occur before any writes.
361
322
        self.assertRaises(errors.NotLocalUrl,
362
323
                          bzrdir.BzrDir.create_standalone_workingtree,
363
324
                          self.get_readonly_url(), format=format)
364
 
        tree = bzrdir.BzrDir.create_standalone_workingtree('.',
 
325
        tree = bzrdir.BzrDir.create_standalone_workingtree('.', 
365
326
                                                           format=format)
366
327
        self.assertEqual('A tree', tree)
367
328
 
368
329
    def test_create_standalone_working_tree_under_shared_repo(self):
369
330
        # create standalone working tree always makes a repo.
370
 
        format = controldir.format_registry.make_bzrdir('knit')
 
331
        format = bzrdir.format_registry.make_bzrdir('knit')
371
332
        self.make_repository('.', shared=True, format=format)
372
 
        # note this is deliberately readonly, as this failure should
 
333
        # note this is deliberately readonly, as this failure should 
373
334
        # occur before any writes.
374
335
        self.assertRaises(errors.NotLocalUrl,
375
336
                          bzrdir.BzrDir.create_standalone_workingtree,
376
337
                          self.get_readonly_url('child'), format=format)
377
 
        tree = bzrdir.BzrDir.create_standalone_workingtree('child',
 
338
        tree = bzrdir.BzrDir.create_standalone_workingtree('child', 
378
339
            format=format)
379
340
        tree.bzrdir.open_repository()
380
341
 
381
342
    def test_create_branch_convenience(self):
382
343
        # outside a repo the default convenience output is a repo+branch_tree
383
 
        format = controldir.format_registry.make_bzrdir('knit')
 
344
        format = bzrdir.format_registry.make_bzrdir('knit')
384
345
        branch = bzrdir.BzrDir.create_branch_convenience('.', format=format)
385
346
        branch.bzrdir.open_workingtree()
386
347
        branch.bzrdir.open_repository()
387
348
 
388
349
    def test_create_branch_convenience_possible_transports(self):
389
350
        """Check that the optional 'possible_transports' is recognized"""
390
 
        format = controldir.format_registry.make_bzrdir('knit')
 
351
        format = bzrdir.format_registry.make_bzrdir('knit')
391
352
        t = self.get_transport()
392
353
        branch = bzrdir.BzrDir.create_branch_convenience(
393
354
            '.', format=format, possible_transports=[t])
396
357
 
397
358
    def test_create_branch_convenience_root(self):
398
359
        """Creating a branch at the root of a fs should work."""
399
 
        self.vfs_transport_factory = memory.MemoryServer
 
360
        self.vfs_transport_factory = MemoryServer
400
361
        # outside a repo the default convenience output is a repo+branch_tree
401
 
        format = controldir.format_registry.make_bzrdir('knit')
402
 
        branch = bzrdir.BzrDir.create_branch_convenience(self.get_url(),
 
362
        format = bzrdir.format_registry.make_bzrdir('knit')
 
363
        branch = bzrdir.BzrDir.create_branch_convenience(self.get_url(), 
403
364
                                                         format=format)
404
365
        self.assertRaises(errors.NoWorkingTree,
405
366
                          branch.bzrdir.open_workingtree)
408
369
    def test_create_branch_convenience_under_shared_repo(self):
409
370
        # inside a repo the default convenience output is a branch+ follow the
410
371
        # repo tree policy
411
 
        format = controldir.format_registry.make_bzrdir('knit')
 
372
        format = bzrdir.format_registry.make_bzrdir('knit')
412
373
        self.make_repository('.', shared=True, format=format)
413
374
        branch = bzrdir.BzrDir.create_branch_convenience('child',
414
375
            format=format)
415
376
        branch.bzrdir.open_workingtree()
416
377
        self.assertRaises(errors.NoRepositoryPresent,
417
378
                          branch.bzrdir.open_repository)
418
 
 
 
379
            
419
380
    def test_create_branch_convenience_under_shared_repo_force_no_tree(self):
420
381
        # inside a repo the default convenience output is a branch+ follow the
421
382
        # repo tree policy but we can override that
422
 
        format = controldir.format_registry.make_bzrdir('knit')
 
383
        format = bzrdir.format_registry.make_bzrdir('knit')
423
384
        self.make_repository('.', shared=True, format=format)
424
385
        branch = bzrdir.BzrDir.create_branch_convenience('child',
425
386
            force_new_tree=False, format=format)
427
388
                          branch.bzrdir.open_workingtree)
428
389
        self.assertRaises(errors.NoRepositoryPresent,
429
390
                          branch.bzrdir.open_repository)
430
 
 
 
391
            
431
392
    def test_create_branch_convenience_under_shared_repo_no_tree_policy(self):
432
393
        # inside a repo the default convenience output is a branch+ follow the
433
394
        # repo tree policy
434
 
        format = controldir.format_registry.make_bzrdir('knit')
 
395
        format = bzrdir.format_registry.make_bzrdir('knit')
435
396
        repo = self.make_repository('.', shared=True, format=format)
436
397
        repo.set_make_working_trees(False)
437
 
        branch = bzrdir.BzrDir.create_branch_convenience('child',
 
398
        branch = bzrdir.BzrDir.create_branch_convenience('child', 
438
399
                                                         format=format)
439
400
        self.assertRaises(errors.NoWorkingTree,
440
401
                          branch.bzrdir.open_workingtree)
444
405
    def test_create_branch_convenience_under_shared_repo_no_tree_policy_force_tree(self):
445
406
        # inside a repo the default convenience output is a branch+ follow the
446
407
        # repo tree policy but we can override that
447
 
        format = controldir.format_registry.make_bzrdir('knit')
 
408
        format = bzrdir.format_registry.make_bzrdir('knit')
448
409
        repo = self.make_repository('.', shared=True, format=format)
449
410
        repo.set_make_working_trees(False)
450
411
        branch = bzrdir.BzrDir.create_branch_convenience('child',
456
417
    def test_create_branch_convenience_under_shared_repo_force_new_repo(self):
457
418
        # inside a repo the default convenience output is overridable to give
458
419
        # repo+branch+tree
459
 
        format = controldir.format_registry.make_bzrdir('knit')
 
420
        format = bzrdir.format_registry.make_bzrdir('knit')
460
421
        self.make_repository('.', shared=True, format=format)
461
422
        branch = bzrdir.BzrDir.create_branch_convenience('child',
462
423
            force_new_repo=True, format=format)
470
431
        """The default acquisition policy should create a standalone branch."""
471
432
        my_bzrdir = self.make_bzrdir('.')
472
433
        repo_policy = my_bzrdir.determine_repository_policy()
473
 
        repo, is_new = repo_policy.acquire_repository()
 
434
        repo = repo_policy.acquire_repository()
474
435
        self.assertEqual(repo.bzrdir.root_transport.base,
475
436
                         my_bzrdir.root_transport.base)
476
437
        self.assertFalse(repo.is_shared())
477
438
 
 
439
 
478
440
    def test_determine_stacking_policy(self):
479
441
        parent_bzrdir = self.make_bzrdir('.')
480
442
        child_bzrdir = self.make_bzrdir('child')
504
466
        self.assertEqual(child_branch.base,
505
467
                         new_child.open_branch().get_stacked_on_url())
506
468
 
507
 
    def test_default_stacking_with_stackable_branch_unstackable_repo(self):
508
 
        # Make stackable source branch with an unstackable repo format.
509
 
        source_bzrdir = self.make_bzrdir('source')
510
 
        knitpack_repo.RepositoryFormatKnitPack1().initialize(source_bzrdir)
511
 
        source_branch = bzrlib.branch.BzrBranchFormat7().initialize(
512
 
            source_bzrdir)
513
 
        # Make a directory with a default stacking policy
514
 
        parent_bzrdir = self.make_bzrdir('parent')
515
 
        stacked_on = self.make_branch('parent/stacked-on', format='pack-0.92')
516
 
        parent_bzrdir.get_config().set_default_stack_on(stacked_on.base)
517
 
        # Clone source into directory
518
 
        target = source_bzrdir.clone(self.get_url('parent/target'))
519
 
 
520
 
    def test_format_initialize_on_transport_ex_stacked_on(self):
521
 
        # trunk is a stackable format.  Note that its in the same server area
522
 
        # which is what launchpad does, but not sufficient to exercise the
523
 
        # general case.
524
 
        trunk = self.make_branch('trunk', format='1.9')
525
 
        t = self.get_transport('stacked')
526
 
        old_fmt = controldir.format_registry.make_bzrdir('pack-0.92')
527
 
        repo_name = old_fmt.repository_format.network_name()
528
 
        # Should end up with a 1.9 format (stackable)
529
 
        repo, control, require_stacking, repo_policy = \
530
 
            old_fmt.initialize_on_transport_ex(t,
531
 
                    repo_format_name=repo_name, stacked_on='../trunk',
532
 
                    stack_on_pwd=t.base)
533
 
        if repo is not None:
534
 
            # Repositories are open write-locked
535
 
            self.assertTrue(repo.is_write_locked())
536
 
            self.addCleanup(repo.unlock)
537
 
        else:
538
 
            repo = control.open_repository()
539
 
        self.assertIsInstance(control, bzrdir.BzrDir)
540
 
        opened = bzrdir.BzrDir.open(t.base)
541
 
        if not isinstance(old_fmt, remote.RemoteBzrDirFormat):
542
 
            self.assertEqual(control._format.network_name(),
543
 
                old_fmt.network_name())
544
 
            self.assertEqual(control._format.network_name(),
545
 
                opened._format.network_name())
546
 
        self.assertEqual(control.__class__, opened.__class__)
547
 
        self.assertLength(1, repo._fallback_repositories)
548
 
 
549
469
    def test_sprout_obeys_stacking_policy(self):
550
470
        child_branch, new_child_transport = self.prepare_default_stacking()
551
471
        new_child = child_branch.bzrdir.sprout(new_child_transport.base)
637
557
 
638
558
    def setUp(self):
639
559
        super(ChrootedTests, self).setUp()
640
 
        if not self.vfs_transport_factory == memory.MemoryServer:
 
560
        if not self.vfs_transport_factory == MemoryServer:
641
561
            self.transport_readonly_server = http_server.HttpServer
642
562
 
643
563
    def local_branch_path(self, branch):
742
662
        self.assertEqual(relpath, 'baz')
743
663
 
744
664
    def test_open_containing_from_transport(self):
745
 
        self.assertRaises(NotBranchError,
746
 
            bzrdir.BzrDir.open_containing_from_transport,
747
 
            _mod_transport.get_transport_from_url(self.get_readonly_url('')))
748
 
        self.assertRaises(NotBranchError,
749
 
            bzrdir.BzrDir.open_containing_from_transport,
750
 
            _mod_transport.get_transport_from_url(
751
 
                self.get_readonly_url('g/p/q')))
 
665
        self.assertRaises(NotBranchError, bzrdir.BzrDir.open_containing_from_transport,
 
666
                          get_transport(self.get_readonly_url('')))
 
667
        self.assertRaises(NotBranchError, bzrdir.BzrDir.open_containing_from_transport,
 
668
                          get_transport(self.get_readonly_url('g/p/q')))
752
669
        control = bzrdir.BzrDir.create(self.get_url())
753
670
        branch, relpath = bzrdir.BzrDir.open_containing_from_transport(
754
 
            _mod_transport.get_transport_from_url(
755
 
                self.get_readonly_url('')))
 
671
            get_transport(self.get_readonly_url('')))
756
672
        self.assertEqual('', relpath)
757
673
        branch, relpath = bzrdir.BzrDir.open_containing_from_transport(
758
 
            _mod_transport.get_transport_from_url(
759
 
                self.get_readonly_url('g/p/q')))
 
674
            get_transport(self.get_readonly_url('g/p/q')))
760
675
        self.assertEqual('g/p/q', relpath)
761
676
 
762
677
    def test_open_containing_tree_or_branch(self):
806
721
        # transport pointing at bzrdir should give a bzrdir with root transport
807
722
        # set to the given transport
808
723
        control = bzrdir.BzrDir.create(self.get_url())
809
 
        t = self.get_transport()
810
 
        opened_bzrdir = bzrdir.BzrDir.open_from_transport(t)
811
 
        self.assertEqual(t.base, opened_bzrdir.root_transport.base)
 
724
        transport = get_transport(self.get_url())
 
725
        opened_bzrdir = bzrdir.BzrDir.open_from_transport(transport)
 
726
        self.assertEqual(transport.base, opened_bzrdir.root_transport.base)
812
727
        self.assertIsInstance(opened_bzrdir, bzrdir.BzrDir)
813
 
 
 
728
        
814
729
    def test_open_from_transport_no_bzrdir(self):
815
 
        t = self.get_transport()
816
 
        self.assertRaises(NotBranchError, bzrdir.BzrDir.open_from_transport, t)
 
730
        transport = get_transport(self.get_url())
 
731
        self.assertRaises(NotBranchError, bzrdir.BzrDir.open_from_transport,
 
732
                          transport)
817
733
 
818
734
    def test_open_from_transport_bzrdir_in_parent(self):
819
735
        control = bzrdir.BzrDir.create(self.get_url())
820
 
        t = self.get_transport()
821
 
        t.mkdir('subdir')
822
 
        t = t.clone('subdir')
823
 
        self.assertRaises(NotBranchError, bzrdir.BzrDir.open_from_transport, t)
 
736
        transport = get_transport(self.get_url())
 
737
        transport.mkdir('subdir')
 
738
        transport = transport.clone('subdir')
 
739
        self.assertRaises(NotBranchError, bzrdir.BzrDir.open_from_transport,
 
740
                          transport)
824
741
 
825
742
    def test_sprout_recursive(self):
826
 
        tree = self.make_branch_and_tree('tree1',
827
 
                                         format='development-subtree')
 
743
        tree = self.make_branch_and_tree('tree1', format='dirstate-with-subtree')
828
744
        sub_tree = self.make_branch_and_tree('tree1/subtree',
829
 
            format='development-subtree')
830
 
        sub_tree.set_root_id('subtree-root')
 
745
            format='dirstate-with-subtree')
831
746
        tree.add_reference(sub_tree)
832
747
        self.build_tree(['tree1/subtree/file'])
833
748
        sub_tree.add('file')
834
749
        tree.commit('Initial commit')
835
 
        tree2 = tree.bzrdir.sprout('tree2').open_workingtree()
836
 
        tree2.lock_read()
837
 
        self.addCleanup(tree2.unlock)
838
 
        self.assertPathExists('tree2/subtree/file')
839
 
        self.assertEqual('tree-reference', tree2.kind('subtree-root'))
 
750
        tree.bzrdir.sprout('tree2')
 
751
        self.failUnlessExists('tree2/subtree/file')
840
752
 
841
753
    def test_cloning_metadir(self):
842
754
        """Ensure that cloning metadir is suitable"""
845
757
        branch = self.make_branch('branch', format='knit')
846
758
        format = branch.bzrdir.cloning_metadir()
847
759
        self.assertIsInstance(format.workingtree_format,
848
 
            workingtree_4.WorkingTreeFormat6)
 
760
            workingtree.WorkingTreeFormat3)
849
761
 
850
762
    def test_sprout_recursive_treeless(self):
851
763
        tree = self.make_branch_and_tree('tree1',
852
 
            format='development-subtree')
 
764
            format='dirstate-with-subtree')
853
765
        sub_tree = self.make_branch_and_tree('tree1/subtree',
854
 
            format='development-subtree')
 
766
            format='dirstate-with-subtree')
855
767
        tree.add_reference(sub_tree)
856
768
        self.build_tree(['tree1/subtree/file'])
857
769
        sub_tree.add('file')
858
770
        tree.commit('Initial commit')
859
 
        # The following line force the orhaning to reveal bug #634470
860
 
        tree.branch.get_config_stack().set(
861
 
            'bzr.transform.orphan_policy', 'move')
862
771
        tree.bzrdir.destroy_workingtree()
863
 
        # FIXME: subtree/.bzr is left here which allows the test to pass (or
864
 
        # fail :-( ) -- vila 20100909
865
772
        repo = self.make_repository('repo', shared=True,
866
 
            format='development-subtree')
 
773
            format='dirstate-with-subtree')
867
774
        repo.set_make_working_trees(False)
868
 
        # FIXME: we just deleted the workingtree and now we want to use it ????
869
 
        # At a minimum, we should use tree.branch below (but this fails too
870
 
        # currently) or stop calling this test 'treeless'. Specifically, I've
871
 
        # turn the line below into an assertRaises when 'subtree/.bzr' is
872
 
        # orphaned and sprout tries to access the branch there (which is left
873
 
        # by bzrdir.BzrDirMeta1.destroy_workingtree when it ignores the
874
 
        # [DeletingParent('Not deleting', u'subtree', None)] conflict). See bug
875
 
        # #634470.  -- vila 20100909
876
 
        self.assertRaises(errors.NotBranchError,
877
 
                          tree.bzrdir.sprout, 'repo/tree2')
878
 
#        self.assertPathExists('repo/tree2/subtree')
879
 
#        self.assertPathDoesNotExist('repo/tree2/subtree/file')
 
775
        tree.bzrdir.sprout('repo/tree2')
 
776
        self.failUnlessExists('repo/tree2/subtree')
 
777
        self.failIfExists('repo/tree2/subtree/file')
880
778
 
881
779
    def make_foo_bar_baz(self):
882
780
        foo = bzrdir.BzrDir.create_branch_convenience('foo').bzrdir
886
784
 
887
785
    def test_find_bzrdirs(self):
888
786
        foo, bar, baz = self.make_foo_bar_baz()
889
 
        t = self.get_transport()
890
 
        self.assertEqualBzrdirs([baz, foo, bar], bzrdir.BzrDir.find_bzrdirs(t))
891
 
 
892
 
    def make_fake_permission_denied_transport(self, transport, paths):
893
 
        """Create a transport that raises PermissionDenied for some paths."""
894
 
        def filter(path):
895
 
            if path in paths:
896
 
                raise errors.PermissionDenied(path)
897
 
            return path
898
 
        path_filter_server = pathfilter.PathFilteringServer(transport, filter)
899
 
        path_filter_server.start_server()
900
 
        self.addCleanup(path_filter_server.stop_server)
901
 
        path_filter_transport = pathfilter.PathFilteringTransport(
902
 
            path_filter_server, '.')
903
 
        return (path_filter_server, path_filter_transport)
904
 
 
905
 
    def assertBranchUrlsEndWith(self, expect_url_suffix, actual_bzrdirs):
906
 
        """Check that each branch url ends with the given suffix."""
907
 
        for actual_bzrdir in actual_bzrdirs:
908
 
            self.assertEndsWith(actual_bzrdir.user_url, expect_url_suffix)
909
 
 
910
 
    def test_find_bzrdirs_permission_denied(self):
911
 
        foo, bar, baz = self.make_foo_bar_baz()
912
 
        t = self.get_transport()
913
 
        path_filter_server, path_filter_transport = \
914
 
            self.make_fake_permission_denied_transport(t, ['foo'])
915
 
        # local transport
916
 
        self.assertBranchUrlsEndWith('/baz/',
917
 
            bzrdir.BzrDir.find_bzrdirs(path_filter_transport))
918
 
        # smart server
919
 
        smart_transport = self.make_smart_server('.',
920
 
            backing_server=path_filter_server)
921
 
        self.assertBranchUrlsEndWith('/baz/',
922
 
            bzrdir.BzrDir.find_bzrdirs(smart_transport))
 
787
        transport = get_transport(self.get_url())
 
788
        self.assertEqualBzrdirs([baz, foo, bar],
 
789
                                bzrdir.BzrDir.find_bzrdirs(transport))
923
790
 
924
791
    def test_find_bzrdirs_list_current(self):
925
792
        def list_current(transport):
926
793
            return [s for s in transport.list_dir('') if s != 'baz']
927
794
 
928
795
        foo, bar, baz = self.make_foo_bar_baz()
929
 
        t = self.get_transport()
930
 
        self.assertEqualBzrdirs(
931
 
            [foo, bar],
932
 
            bzrdir.BzrDir.find_bzrdirs(t, list_current=list_current))
 
796
        transport = get_transport(self.get_url())
 
797
        self.assertEqualBzrdirs([foo, bar],
 
798
                                bzrdir.BzrDir.find_bzrdirs(transport,
 
799
                                    list_current=list_current))
 
800
 
933
801
 
934
802
    def test_find_bzrdirs_evaluate(self):
935
803
        def evaluate(bzrdir):
936
804
            try:
937
805
                repo = bzrdir.open_repository()
938
 
            except errors.NoRepositoryPresent:
 
806
            except NoRepositoryPresent:
939
807
                return True, bzrdir.root_transport.base
940
808
            else:
941
809
                return False, bzrdir.root_transport.base
942
810
 
943
811
        foo, bar, baz = self.make_foo_bar_baz()
944
 
        t = self.get_transport()
 
812
        transport = get_transport(self.get_url())
945
813
        self.assertEqual([baz.root_transport.base, foo.root_transport.base],
946
 
                         list(bzrdir.BzrDir.find_bzrdirs(t, evaluate=evaluate)))
 
814
                         list(bzrdir.BzrDir.find_bzrdirs(transport,
 
815
                                                         evaluate=evaluate)))
947
816
 
948
817
    def assertEqualBzrdirs(self, first, second):
949
818
        first = list(first)
956
825
        root = self.make_repository('', shared=True)
957
826
        foo, bar, baz = self.make_foo_bar_baz()
958
827
        qux = self.make_bzrdir('foo/qux')
959
 
        t = self.get_transport()
960
 
        branches = bzrdir.BzrDir.find_branches(t)
 
828
        transport = get_transport(self.get_url())
 
829
        branches = bzrdir.BzrDir.find_branches(transport)
961
830
        self.assertEqual(baz.root_transport.base, branches[0].base)
962
831
        self.assertEqual(foo.root_transport.base, branches[1].base)
963
832
        self.assertEqual(bar.root_transport.base, branches[2].base)
964
833
 
965
834
        # ensure this works without a top-level repo
966
 
        branches = bzrdir.BzrDir.find_branches(t.clone('foo'))
 
835
        branches = bzrdir.BzrDir.find_branches(transport.clone('foo'))
967
836
        self.assertEqual(foo.root_transport.base, branches[0].base)
968
837
        self.assertEqual(bar.root_transport.base, branches[1].base)
969
838
 
970
839
 
971
 
class TestMissingRepoBranchesSkipped(TestCaseWithMemoryTransport):
972
 
 
973
 
    def test_find_bzrdirs_missing_repo(self):
974
 
        t = self.get_transport()
975
 
        arepo = self.make_repository('arepo', shared=True)
976
 
        abranch_url = arepo.user_url + '/abranch'
977
 
        abranch = bzrdir.BzrDir.create(abranch_url).create_branch()
978
 
        t.delete_tree('arepo/.bzr')
979
 
        self.assertRaises(errors.NoRepositoryPresent,
980
 
            branch.Branch.open, abranch_url)
981
 
        self.make_branch('baz')
982
 
        for actual_bzrdir in bzrdir.BzrDir.find_branches(t):
983
 
            self.assertEndsWith(actual_bzrdir.user_url, '/baz/')
984
 
 
985
 
 
986
840
class TestMeta1DirFormat(TestCaseWithTransport):
987
841
    """Tests specific to the meta1 dir format."""
988
842
 
992
846
        branch_base = t.clone('branch').base
993
847
        self.assertEqual(branch_base, dir.get_branch_transport(None).base)
994
848
        self.assertEqual(branch_base,
995
 
                         dir.get_branch_transport(BzrBranchFormat5()).base)
 
849
                         dir.get_branch_transport(bzrlib.branch.BzrBranchFormat5()).base)
996
850
        repository_base = t.clone('repository').base
997
851
        self.assertEqual(repository_base, dir.get_repository_transport(None).base)
998
 
        repository_format = repository.format_registry.get_default()
999
852
        self.assertEqual(repository_base,
1000
 
                         dir.get_repository_transport(repository_format).base)
 
853
                         dir.get_repository_transport(weaverepo.RepositoryFormat7()).base)
1001
854
        checkout_base = t.clone('checkout').base
1002
855
        self.assertEqual(checkout_base, dir.get_workingtree_transport(None).base)
1003
856
        self.assertEqual(checkout_base,
1004
 
                         dir.get_workingtree_transport(workingtree_3.WorkingTreeFormat3()).base)
 
857
                         dir.get_workingtree_transport(workingtree.WorkingTreeFormat3()).base)
1005
858
 
1006
859
    def test_meta1dir_uses_lockdir(self):
1007
860
        """Meta1 format uses a LockDir to guard the whole directory, not a file."""
1015
868
        Metadirs should compare equal iff they have the same repo, branch and
1016
869
        tree formats.
1017
870
        """
1018
 
        mydir = controldir.format_registry.make_bzrdir('knit')
 
871
        mydir = bzrdir.format_registry.make_bzrdir('knit')
1019
872
        self.assertEqual(mydir, mydir)
1020
873
        self.assertFalse(mydir != mydir)
1021
 
        otherdir = controldir.format_registry.make_bzrdir('knit')
 
874
        otherdir = bzrdir.format_registry.make_bzrdir('knit')
1022
875
        self.assertEqual(otherdir, mydir)
1023
876
        self.assertFalse(otherdir != mydir)
1024
 
        otherdir2 = controldir.format_registry.make_bzrdir('development-subtree')
 
877
        otherdir2 = bzrdir.format_registry.make_bzrdir('dirstate-with-subtree')
1025
878
        self.assertNotEqual(otherdir2, mydir)
1026
879
        self.assertFalse(otherdir2 == mydir)
1027
880
 
1028
 
    def test_with_features(self):
1029
 
        tree = self.make_branch_and_tree('tree', format='2a')
1030
 
        tree.bzrdir.update_feature_flags({"bar": "required"})
1031
 
        self.assertRaises(errors.MissingFeature, bzrdir.BzrDir.open, 'tree')
1032
 
        bzrdir.BzrDirMetaFormat1.register_feature('bar')
1033
 
        self.addCleanup(bzrdir.BzrDirMetaFormat1.unregister_feature, 'bar')
1034
 
        dir = bzrdir.BzrDir.open('tree')
1035
 
        self.assertEquals("required", dir._format.features.get("bar"))
1036
 
        tree.bzrdir.update_feature_flags({"bar": None, "nonexistant": None})
1037
 
        dir = bzrdir.BzrDir.open('tree')
1038
 
        self.assertEquals({}, dir._format.features)
1039
 
 
1040
881
    def test_needs_conversion_different_working_tree(self):
1041
882
        # meta1dirs need an conversion if any element is not the default.
1042
 
        new_format = controldir.format_registry.make_bzrdir('dirstate')
1043
 
        tree = self.make_branch_and_tree('tree', format='knit')
1044
 
        self.assertTrue(tree.bzrdir.needs_format_conversion(
1045
 
            new_format))
1046
 
 
1047
 
    def test_initialize_on_format_uses_smart_transport(self):
1048
 
        self.setup_smart_server_with_call_log()
1049
 
        new_format = controldir.format_registry.make_bzrdir('dirstate')
1050
 
        transport = self.get_transport('target')
1051
 
        transport.ensure_base()
1052
 
        self.reset_smart_call_log()
1053
 
        instance = new_format.initialize_on_transport(transport)
1054
 
        self.assertIsInstance(instance, remote.RemoteBzrDir)
1055
 
        rpc_count = len(self.hpss_calls)
1056
 
        # This figure represent the amount of work to perform this use case. It
1057
 
        # is entirely ok to reduce this number if a test fails due to rpc_count
1058
 
        # being too low. If rpc_count increases, more network roundtrips have
1059
 
        # become necessary for this use case. Please do not adjust this number
1060
 
        # upwards without agreement from bzr's network support maintainers.
1061
 
        self.assertEqual(2, rpc_count)
 
883
        old_format = bzrdir.BzrDirFormat.get_default_format()
 
884
        # test with 
 
885
        new_default = bzrdir.format_registry.make_bzrdir('dirstate')
 
886
        bzrdir.BzrDirFormat._set_default_format(new_default)
 
887
        try:
 
888
            tree = self.make_branch_and_tree('tree', format='knit')
 
889
            self.assertTrue(tree.bzrdir.needs_format_conversion())
 
890
        finally:
 
891
            bzrdir.BzrDirFormat._set_default_format(old_format)
 
892
 
 
893
 
 
894
class TestFormat5(TestCaseWithTransport):
 
895
    """Tests specific to the version 5 bzrdir format."""
 
896
 
 
897
    def test_same_lockfiles_between_tree_repo_branch(self):
 
898
        # this checks that only a single lockfiles instance is created 
 
899
        # for format 5 objects
 
900
        dir = bzrdir.BzrDirFormat5().initialize(self.get_url())
 
901
        def check_dir_components_use_same_lock(dir):
 
902
            ctrl_1 = dir.open_repository().control_files
 
903
            ctrl_2 = dir.open_branch().control_files
 
904
            ctrl_3 = dir.open_workingtree()._control_files
 
905
            self.assertTrue(ctrl_1 is ctrl_2)
 
906
            self.assertTrue(ctrl_2 is ctrl_3)
 
907
        check_dir_components_use_same_lock(dir)
 
908
        # and if we open it normally.
 
909
        dir = bzrdir.BzrDir.open(self.get_url())
 
910
        check_dir_components_use_same_lock(dir)
 
911
    
 
912
    def test_can_convert(self):
 
913
        # format 5 dirs are convertable
 
914
        dir = bzrdir.BzrDirFormat5().initialize(self.get_url())
 
915
        self.assertTrue(dir.can_convert_format())
 
916
    
 
917
    def test_needs_conversion(self):
 
918
        # format 5 dirs need a conversion if they are not the default.
 
919
        # and they start of not the default.
 
920
        old_format = bzrdir.BzrDirFormat.get_default_format()
 
921
        bzrdir.BzrDirFormat._set_default_format(bzrdir.BzrDirFormat5())
 
922
        try:
 
923
            dir = bzrdir.BzrDirFormat5().initialize(self.get_url())
 
924
            self.assertFalse(dir.needs_format_conversion())
 
925
        finally:
 
926
            bzrdir.BzrDirFormat._set_default_format(old_format)
 
927
        self.assertTrue(dir.needs_format_conversion())
 
928
 
 
929
 
 
930
class TestFormat6(TestCaseWithTransport):
 
931
    """Tests specific to the version 6 bzrdir format."""
 
932
 
 
933
    def test_same_lockfiles_between_tree_repo_branch(self):
 
934
        # this checks that only a single lockfiles instance is created 
 
935
        # for format 6 objects
 
936
        dir = bzrdir.BzrDirFormat6().initialize(self.get_url())
 
937
        def check_dir_components_use_same_lock(dir):
 
938
            ctrl_1 = dir.open_repository().control_files
 
939
            ctrl_2 = dir.open_branch().control_files
 
940
            ctrl_3 = dir.open_workingtree()._control_files
 
941
            self.assertTrue(ctrl_1 is ctrl_2)
 
942
            self.assertTrue(ctrl_2 is ctrl_3)
 
943
        check_dir_components_use_same_lock(dir)
 
944
        # and if we open it normally.
 
945
        dir = bzrdir.BzrDir.open(self.get_url())
 
946
        check_dir_components_use_same_lock(dir)
 
947
    
 
948
    def test_can_convert(self):
 
949
        # format 6 dirs are convertable
 
950
        dir = bzrdir.BzrDirFormat6().initialize(self.get_url())
 
951
        self.assertTrue(dir.can_convert_format())
 
952
    
 
953
    def test_needs_conversion(self):
 
954
        # format 6 dirs need an conversion if they are not the default.
 
955
        old_format = bzrdir.BzrDirFormat.get_default_format()
 
956
        bzrdir.BzrDirFormat._set_default_format(bzrdir.BzrDirMetaFormat1())
 
957
        try:
 
958
            dir = bzrdir.BzrDirFormat6().initialize(self.get_url())
 
959
            self.assertTrue(dir.needs_format_conversion())
 
960
        finally:
 
961
            bzrdir.BzrDirFormat._set_default_format(old_format)
 
962
 
 
963
 
 
964
class NotBzrDir(bzrlib.bzrdir.BzrDir):
 
965
    """A non .bzr based control directory."""
 
966
 
 
967
    def __init__(self, transport, format):
 
968
        self._format = format
 
969
        self.root_transport = transport
 
970
        self.transport = transport.clone('.not')
 
971
 
 
972
 
 
973
class NotBzrDirFormat(bzrlib.bzrdir.BzrDirFormat):
 
974
    """A test class representing any non-.bzr based disk format."""
 
975
 
 
976
    def initialize_on_transport(self, transport):
 
977
        """Initialize a new .not dir in the base directory of a Transport."""
 
978
        transport.mkdir('.not')
 
979
        return self.open(transport)
 
980
 
 
981
    def open(self, transport):
 
982
        """Open this directory."""
 
983
        return NotBzrDir(transport, self)
 
984
 
 
985
    @classmethod
 
986
    def _known_formats(self):
 
987
        return set([NotBzrDirFormat()])
 
988
 
 
989
    @classmethod
 
990
    def probe_transport(self, transport):
 
991
        """Our format is present if the transport ends in '.not/'."""
 
992
        if transport.has('.not'):
 
993
            return NotBzrDirFormat()
 
994
 
 
995
 
 
996
class TestNotBzrDir(TestCaseWithTransport):
 
997
    """Tests for using the bzrdir api with a non .bzr based disk format.
 
998
    
 
999
    If/when one of these is in the core, we can let the implementation tests
 
1000
    verify this works.
 
1001
    """
 
1002
 
 
1003
    def test_create_and_find_format(self):
 
1004
        # create a .notbzr dir 
 
1005
        format = NotBzrDirFormat()
 
1006
        dir = format.initialize(self.get_url())
 
1007
        self.assertIsInstance(dir, NotBzrDir)
 
1008
        # now probe for it.
 
1009
        bzrlib.bzrdir.BzrDirFormat.register_control_format(format)
 
1010
        try:
 
1011
            found = bzrlib.bzrdir.BzrDirFormat.find_format(
 
1012
                get_transport(self.get_url()))
 
1013
            self.assertIsInstance(found, NotBzrDirFormat)
 
1014
        finally:
 
1015
            bzrlib.bzrdir.BzrDirFormat.unregister_control_format(format)
 
1016
 
 
1017
    def test_included_in_known_formats(self):
 
1018
        bzrlib.bzrdir.BzrDirFormat.register_control_format(NotBzrDirFormat)
 
1019
        try:
 
1020
            formats = bzrlib.bzrdir.BzrDirFormat.known_formats()
 
1021
            for format in formats:
 
1022
                if isinstance(format, NotBzrDirFormat):
 
1023
                    return
 
1024
            self.fail("No NotBzrDirFormat in %s" % formats)
 
1025
        finally:
 
1026
            bzrlib.bzrdir.BzrDirFormat.unregister_control_format(NotBzrDirFormat)
1062
1027
 
1063
1028
 
1064
1029
class NonLocalTests(TestCaseWithTransport):
1066
1031
 
1067
1032
    def setUp(self):
1068
1033
        super(NonLocalTests, self).setUp()
1069
 
        self.vfs_transport_factory = memory.MemoryServer
1070
 
 
 
1034
        self.vfs_transport_factory = MemoryServer
 
1035
    
1071
1036
    def test_create_branch_convenience(self):
1072
1037
        # outside a repo the default convenience output is a repo+branch_tree
1073
 
        format = controldir.format_registry.make_bzrdir('knit')
 
1038
        format = bzrdir.format_registry.make_bzrdir('knit')
1074
1039
        branch = bzrdir.BzrDir.create_branch_convenience(
1075
1040
            self.get_url('foo'), format=format)
1076
1041
        self.assertRaises(errors.NoWorkingTree,
1079
1044
 
1080
1045
    def test_create_branch_convenience_force_tree_not_local_fails(self):
1081
1046
        # outside a repo the default convenience output is a repo+branch_tree
1082
 
        format = controldir.format_registry.make_bzrdir('knit')
 
1047
        format = bzrdir.format_registry.make_bzrdir('knit')
1083
1048
        self.assertRaises(errors.NotLocalUrl,
1084
1049
            bzrdir.BzrDir.create_branch_convenience,
1085
1050
            self.get_url('foo'),
1086
1051
            force_new_tree=True,
1087
1052
            format=format)
1088
 
        t = self.get_transport()
 
1053
        t = get_transport(self.get_url('.'))
1089
1054
        self.assertFalse(t.has('foo'))
1090
1055
 
1091
1056
    def test_clone(self):
1092
1057
        # clone into a nonlocal path works
1093
 
        format = controldir.format_registry.make_bzrdir('knit')
 
1058
        format = bzrdir.format_registry.make_bzrdir('knit')
1094
1059
        branch = bzrdir.BzrDir.create_branch_convenience('local',
1095
1060
                                                         format=format)
1096
1061
        branch.bzrdir.open_workingtree()
1107
1072
        my_bzrdir = bzrdir.BzrDir.open(self.get_url('branch-knit2'))
1108
1073
        checkout_format = my_bzrdir.checkout_metadir()
1109
1074
        self.assertIsInstance(checkout_format.workingtree_format,
1110
 
                              workingtree_4.WorkingTreeFormat4)
 
1075
                              workingtree.WorkingTreeFormat3)
1111
1076
 
1112
1077
 
1113
1078
class TestHTTPRedirections(object):
1118
1083
 
1119
1084
    We can't inherit directly from TestCaseWithTwoWebservers or the
1120
1085
    test framework will try to create an instance which cannot
1121
 
    run, its implementation being incomplete.
 
1086
    run, its implementation being incomplete. 
1122
1087
    """
1123
1088
 
1124
1089
    def create_transport_readonly_server(self):
1125
 
        # We don't set the http protocol version, relying on the default
1126
1090
        return http_utils.HTTPServerRedirecting()
1127
1091
 
1128
1092
    def create_transport_secondary_server(self):
1129
 
        # We don't set the http protocol version, relying on the default
1130
1093
        return http_utils.HTTPServerRedirecting()
1131
1094
 
1132
1095
    def setUp(self):
1171
1134
    _transport = HttpTransport_urllib
1172
1135
 
1173
1136
    def _qualified_url(self, host, port):
1174
 
        result = 'http+urllib://%s:%s' % (host, port)
1175
 
        self.permit_url(result)
1176
 
        return result
 
1137
        return 'http+urllib://%s:%s' % (host, port)
1177
1138
 
1178
1139
 
1179
1140
 
1183
1144
    """Tests redirections for pycurl implementation"""
1184
1145
 
1185
1146
    def _qualified_url(self, host, port):
1186
 
        result = 'http+pycurl://%s:%s' % (host, port)
1187
 
        self.permit_url(result)
1188
 
        return result
 
1147
        return 'http+pycurl://%s:%s' % (host, port)
1189
1148
 
1190
1149
 
1191
1150
class TestHTTPRedirections_nosmart(TestHTTPRedirections,
1195
1154
    _transport = NoSmartTransportDecorator
1196
1155
 
1197
1156
    def _qualified_url(self, host, port):
1198
 
        result = 'nosmart+http://%s:%s' % (host, port)
1199
 
        self.permit_url(result)
1200
 
        return result
 
1157
        return 'nosmart+http://%s:%s' % (host, port)
1201
1158
 
1202
1159
 
1203
1160
class TestHTTPRedirections_readonly(TestHTTPRedirections,
1207
1164
    _transport = ReadonlyTransportDecorator
1208
1165
 
1209
1166
    def _qualified_url(self, host, port):
1210
 
        result = 'readonly+http://%s:%s' % (host, port)
1211
 
        self.permit_url(result)
1212
 
        return result
 
1167
        return 'readonly+http://%s:%s' % (host, port)
1213
1168
 
1214
1169
 
1215
1170
class TestDotBzrHidden(TestCaseWithTransport):
1250
1205
 
1251
1206
class _TestBzrDir(bzrdir.BzrDirMeta1):
1252
1207
    """Test BzrDir implementation for TestBzrDirSprout.
1253
 
 
 
1208
    
1254
1209
    When created a _TestBzrDir already has repository and a branch.  The branch
1255
1210
    is a test double as well.
1256
1211
    """
1257
1212
 
1258
1213
    def __init__(self, *args, **kwargs):
1259
1214
        super(_TestBzrDir, self).__init__(*args, **kwargs)
1260
 
        self.test_branch = _TestBranch(self.transport)
 
1215
        self.test_branch = _TestBranch()
1261
1216
        self.test_branch.repository = self.create_repository()
1262
1217
 
1263
 
    def open_branch(self, unsupported=False, possible_transports=None):
 
1218
    def open_branch(self, unsupported=False):
1264
1219
        return self.test_branch
1265
1220
 
1266
1221
    def cloning_metadir(self, require_stacking=False):
1267
1222
        return _TestBzrDirFormat()
1268
1223
 
1269
1224
 
1270
 
class _TestBranchFormat(bzrlib.branch.BranchFormat):
1271
 
    """Test Branch format for TestBzrDirSprout."""
1272
 
 
1273
 
 
1274
1225
class _TestBranch(bzrlib.branch.Branch):
1275
1226
    """Test Branch implementation for TestBzrDirSprout."""
1276
1227
 
1277
 
    def __init__(self, transport, *args, **kwargs):
1278
 
        self._format = _TestBranchFormat()
1279
 
        self._transport = transport
1280
 
        self.base = transport.base
 
1228
    def __init__(self, *args, **kwargs):
1281
1229
        super(_TestBranch, self).__init__(*args, **kwargs)
1282
1230
        self.calls = []
1283
1231
        self._parent = None
1284
1232
 
1285
1233
    def sprout(self, *args, **kwargs):
1286
1234
        self.calls.append('sprout')
1287
 
        return _TestBranch(self._transport)
 
1235
        return _TestBranch()
1288
1236
 
1289
1237
    def copy_content_into(self, destination, revision_id=None):
1290
1238
        self.calls.append('copy_content_into')
1291
1239
 
1292
 
    def last_revision(self):
1293
 
        return _mod_revision.NULL_REVISION
1294
 
 
1295
1240
    def get_parent(self):
1296
1241
        return self._parent
1297
1242
 
1298
 
    def _get_config(self):
1299
 
        return config.TransportConfig(self._transport, 'branch.conf')
1300
 
 
1301
 
    def _get_config_store(self):
1302
 
        return config.BranchStore(self)
1303
 
 
1304
1243
    def set_parent(self, parent):
1305
1244
        self._parent = parent
1306
1245
 
1307
 
    def lock_read(self):
1308
 
        return lock.LogicalLockResult(self.unlock)
1309
 
 
1310
 
    def unlock(self):
1311
 
        return
1312
 
 
1313
1246
 
1314
1247
class TestBzrDirSprout(TestCaseWithMemoryTransport):
1315
1248
 
1319
1252
        Usually, BzrDir.sprout should delegate to the branch's sprout method
1320
1253
        for part of the work.  This allows the source branch to control the
1321
1254
        choice of format for the new branch.
1322
 
 
 
1255
        
1323
1256
        There are exceptions, but this tests avoids them:
1324
1257
          - if there's no branch in the source bzrdir,
1325
1258
          - or if the stacking has been requested and the format needs to be
1346
1279
        parent = grandparent_tree.bzrdir.sprout('parent').open_branch()
1347
1280
        branch_tree = parent.bzrdir.sprout('branch').open_branch()
1348
1281
        self.assertContainsRe(branch_tree.get_parent(), '/parent/$')
1349
 
 
1350
 
 
1351
 
class TestBzrDirHooks(TestCaseWithMemoryTransport):
1352
 
 
1353
 
    def test_pre_open_called(self):
1354
 
        calls = []
1355
 
        bzrdir.BzrDir.hooks.install_named_hook('pre_open', calls.append, None)
1356
 
        transport = self.get_transport('foo')
1357
 
        url = transport.base
1358
 
        self.assertRaises(errors.NotBranchError, bzrdir.BzrDir.open, url)
1359
 
        self.assertEqual([transport.base], [t.base for t in calls])
1360
 
 
1361
 
    def test_pre_open_actual_exceptions_raised(self):
1362
 
        count = [0]
1363
 
        def fail_once(transport):
1364
 
            count[0] += 1
1365
 
            if count[0] == 1:
1366
 
                raise errors.BzrError("fail")
1367
 
        bzrdir.BzrDir.hooks.install_named_hook('pre_open', fail_once, None)
1368
 
        transport = self.get_transport('foo')
1369
 
        url = transport.base
1370
 
        err = self.assertRaises(errors.BzrError, bzrdir.BzrDir.open, url)
1371
 
        self.assertEqual('fail', err._preformatted_string)
1372
 
 
1373
 
    def test_post_repo_init(self):
1374
 
        from bzrlib.controldir import RepoInitHookParams
1375
 
        calls = []
1376
 
        bzrdir.BzrDir.hooks.install_named_hook('post_repo_init',
1377
 
            calls.append, None)
1378
 
        self.make_repository('foo')
1379
 
        self.assertLength(1, calls)
1380
 
        params = calls[0]
1381
 
        self.assertIsInstance(params, RepoInitHookParams)
1382
 
        self.assertTrue(hasattr(params, 'bzrdir'))
1383
 
        self.assertTrue(hasattr(params, 'repository'))
1384
 
 
1385
 
    def test_post_repo_init_hook_repr(self):
1386
 
        param_reprs = []
1387
 
        bzrdir.BzrDir.hooks.install_named_hook('post_repo_init',
1388
 
            lambda params: param_reprs.append(repr(params)), None)
1389
 
        self.make_repository('foo')
1390
 
        self.assertLength(1, param_reprs)
1391
 
        param_repr = param_reprs[0]
1392
 
        self.assertStartsWith(param_repr, '<RepoInitHookParams for ')
1393
 
 
1394
 
 
1395
 
class TestGenerateBackupName(TestCaseWithMemoryTransport):
1396
 
    # FIXME: This may need to be unified with test_osutils.TestBackupNames or
1397
 
    # moved to per_bzrdir or per_transport for better coverage ?
1398
 
    # -- vila 20100909
1399
 
 
1400
 
    def setUp(self):
1401
 
        super(TestGenerateBackupName, self).setUp()
1402
 
        self._transport = self.get_transport()
1403
 
        bzrdir.BzrDir.create(self.get_url(),
1404
 
            possible_transports=[self._transport])
1405
 
        self._bzrdir = bzrdir.BzrDir.open_from_transport(self._transport)
1406
 
 
1407
 
    def test_new(self):
1408
 
        self.assertEqual("a.~1~", self._bzrdir._available_backup_name("a"))
1409
 
 
1410
 
    def test_exiting(self):
1411
 
        self._transport.put_bytes("a.~1~", "some content")
1412
 
        self.assertEqual("a.~2~", self._bzrdir._available_backup_name("a"))
1413
 
 
1414
 
 
1415
 
class TestMeta1DirColoFormat(TestCaseWithTransport):
1416
 
    """Tests specific to the meta1 dir with colocated branches format."""
1417
 
 
1418
 
    def test_supports_colo(self):
1419
 
        format = bzrdir.BzrDirMetaFormat1Colo()
1420
 
        self.assertTrue(format.colocated_branches)
1421
 
 
1422
 
    def test_upgrade_from_2a(self):
1423
 
        tree = self.make_branch_and_tree('.', format='2a')
1424
 
        format = bzrdir.BzrDirMetaFormat1Colo()
1425
 
        self.assertTrue(tree.bzrdir.needs_format_conversion(format))
1426
 
        converter = tree.bzrdir._format.get_converter(format)
1427
 
        result = converter.convert(tree.bzrdir, None)
1428
 
        self.assertIsInstance(result._format, bzrdir.BzrDirMetaFormat1Colo)
1429
 
        self.assertFalse(result.needs_format_conversion(format))
1430
 
 
1431
 
    def test_downgrade_to_2a(self):
1432
 
        tree = self.make_branch_and_tree('.', format='development-colo')
1433
 
        format = bzrdir.BzrDirMetaFormat1()
1434
 
        self.assertTrue(tree.bzrdir.needs_format_conversion(format))
1435
 
        converter = tree.bzrdir._format.get_converter(format)
1436
 
        result = converter.convert(tree.bzrdir, None)
1437
 
        self.assertIsInstance(result._format, bzrdir.BzrDirMetaFormat1)
1438
 
        self.assertFalse(result.needs_format_conversion(format))
1439
 
 
1440
 
    def test_downgrade_to_2a_too_many_branches(self):
1441
 
        tree = self.make_branch_and_tree('.', format='development-colo')
1442
 
        tree.bzrdir.create_branch(name="another-colocated-branch")
1443
 
        converter = tree.bzrdir._format.get_converter(
1444
 
            bzrdir.BzrDirMetaFormat1())
1445
 
        result = converter.convert(tree.bzrdir, bzrdir.BzrDirMetaFormat1())
1446
 
        self.assertIsInstance(result._format, bzrdir.BzrDirMetaFormat1)
1447
 
 
1448
 
    def test_nested(self):
1449
 
        tree = self.make_branch_and_tree('.', format='development-colo')
1450
 
        tree.bzrdir.create_branch(name='foo')
1451
 
        tree.bzrdir.create_branch(name='fool/bla')
1452
 
        self.assertRaises(
1453
 
            errors.ParentBranchExists, tree.bzrdir.create_branch,
1454
 
            name='foo/bar')
1455
 
 
1456
 
    def test_parent(self):
1457
 
        tree = self.make_branch_and_tree('.', format='development-colo')
1458
 
        tree.bzrdir.create_branch(name='fool/bla')
1459
 
        tree.bzrdir.create_branch(name='foo/bar')
1460
 
        self.assertRaises(
1461
 
            errors.AlreadyBranchError, tree.bzrdir.create_branch,
1462
 
            name='foo')
1463
 
 
1464
 
 
1465
 
class SampleBzrFormat(bzrdir.BzrFormat):
1466
 
 
1467
 
    @classmethod
1468
 
    def get_format_string(cls):
1469
 
        return "First line\n"
1470
 
 
1471
 
 
1472
 
class TestBzrFormat(TestCase):
1473
 
    """Tests for BzrFormat."""
1474
 
 
1475
 
    def test_as_string(self):
1476
 
        format = SampleBzrFormat()
1477
 
        format.features = {"foo": "required"}
1478
 
        self.assertEquals(format.as_string(),
1479
 
            "First line\n"
1480
 
            "required foo\n")
1481
 
        format.features["another"] = "optional"
1482
 
        self.assertEquals(format.as_string(),
1483
 
            "First line\n"
1484
 
            "required foo\n"
1485
 
            "optional another\n")
1486
 
 
1487
 
    def test_network_name(self):
1488
 
        # The network string should include the feature info
1489
 
        format = SampleBzrFormat()
1490
 
        format.features = {"foo": "required"}
1491
 
        self.assertEquals(
1492
 
            "First line\nrequired foo\n",
1493
 
            format.network_name())
1494
 
 
1495
 
    def test_from_string_no_features(self):
1496
 
        # No features
1497
 
        format = SampleBzrFormat.from_string(
1498
 
            "First line\n")
1499
 
        self.assertEquals({}, format.features)
1500
 
 
1501
 
    def test_from_string_with_feature(self):
1502
 
        # Proper feature
1503
 
        format = SampleBzrFormat.from_string(
1504
 
            "First line\nrequired foo\n")
1505
 
        self.assertEquals("required", format.features.get("foo"))
1506
 
 
1507
 
    def test_from_string_format_string_mismatch(self):
1508
 
        # The first line has to match the format string
1509
 
        self.assertRaises(AssertionError, SampleBzrFormat.from_string,
1510
 
            "Second line\nrequired foo\n")
1511
 
 
1512
 
    def test_from_string_missing_space(self):
1513
 
        # At least one space is required in the feature lines
1514
 
        self.assertRaises(errors.ParseFormatError, SampleBzrFormat.from_string,
1515
 
            "First line\nfoo\n")
1516
 
 
1517
 
    def test_from_string_with_spaces(self):
1518
 
        # Feature with spaces (in case we add stuff like this in the future)
1519
 
        format = SampleBzrFormat.from_string(
1520
 
            "First line\nrequired foo with spaces\n")
1521
 
        self.assertEquals("required", format.features.get("foo with spaces"))
1522
 
 
1523
 
    def test_eq(self):
1524
 
        format1 = SampleBzrFormat()
1525
 
        format1.features = {"nested-trees": "optional"}
1526
 
        format2 = SampleBzrFormat()
1527
 
        format2.features = {"nested-trees": "optional"}
1528
 
        self.assertEquals(format1, format1)
1529
 
        self.assertEquals(format1, format2)
1530
 
        format3 = SampleBzrFormat()
1531
 
        self.assertNotEquals(format1, format3)
1532
 
 
1533
 
    def test_check_support_status_optional(self):
1534
 
        # Optional, so silently ignore
1535
 
        format = SampleBzrFormat()
1536
 
        format.features = {"nested-trees": "optional"}
1537
 
        format.check_support_status(True)
1538
 
        self.addCleanup(SampleBzrFormat.unregister_feature, "nested-trees")
1539
 
        SampleBzrFormat.register_feature("nested-trees")
1540
 
        format.check_support_status(True)
1541
 
 
1542
 
    def test_check_support_status_required(self):
1543
 
        # Optional, so trigger an exception
1544
 
        format = SampleBzrFormat()
1545
 
        format.features = {"nested-trees": "required"}
1546
 
        self.assertRaises(errors.MissingFeature, format.check_support_status,
1547
 
            True)
1548
 
        self.addCleanup(SampleBzrFormat.unregister_feature, "nested-trees")
1549
 
        SampleBzrFormat.register_feature("nested-trees")
1550
 
        format.check_support_status(True)
1551
 
 
1552
 
    def test_check_support_status_unknown(self):
1553
 
        # treat unknown necessity as required
1554
 
        format = SampleBzrFormat()
1555
 
        format.features = {"nested-trees": "unknown"}
1556
 
        self.assertRaises(errors.MissingFeature, format.check_support_status,
1557
 
            True)
1558
 
        self.addCleanup(SampleBzrFormat.unregister_feature, "nested-trees")
1559
 
        SampleBzrFormat.register_feature("nested-trees")
1560
 
        format.check_support_status(True)
1561
 
 
1562
 
    def test_feature_already_registered(self):
1563
 
        # a feature can only be registered once
1564
 
        self.addCleanup(SampleBzrFormat.unregister_feature, "nested-trees")
1565
 
        SampleBzrFormat.register_feature("nested-trees")
1566
 
        self.assertRaises(errors.FeatureAlreadyRegistered,
1567
 
            SampleBzrFormat.register_feature, "nested-trees")
1568
 
 
1569
 
    def test_feature_with_space(self):
1570
 
        # spaces are not allowed in feature names
1571
 
        self.assertRaises(ValueError, SampleBzrFormat.register_feature,
1572
 
            "nested trees")